nikolausm/mcp-server-bondora
If you are the rightful owner of mcp-server-bondora and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Bondora MCP Server is designed to interface with the Bondora P2P Lending Platform API, providing a structured way to manage and automate interactions with the platform.
get_account_balance
Retrieve account balance
get_investments
Display investments
get_auctions
List available auctions
make_bid
Place a bid
get_bids
Show own bids
get_secondary_market
Search secondary market
buy_secondary_market
Purchase on secondary market
sell_secondary_market
Sell on secondary market
cancel_secondary_market
Cancel sale on secondary market
get_event_log
Display event log
Bondora MCP Server
Model Context Protocol server fĂźr die Bondora P2P Lending Platform API.
Installation
npm install
npm run build
Konfiguration
1. Bondora API Zugangsdaten
- Logge dich bei Bondora ein
- Gehe zu API Applications
- Erstelle eine neue Anwendung
- Notiere Client ID und Client Secret
- FĂźhre den OAuth Flow durch fĂźr Access Token
2. Umgebungsvariablen
Setze folgende Umgebungsvariablen:
export BONDORA_CLIENT_ID=deine_client_id
export BONDORA_CLIENT_SECRET=dein_client_secret
export BONDORA_ACCESS_TOKEN=dein_access_token
export BONDORA_REFRESH_TOKEN=dein_refresh_token # Optional
3. Claude Desktop Integration
Bearbeite ~/Library/Application Support/Claude/claude_desktop_config.json
:
{
"mcpServers": {
"bondora": {
"command": "node",
"args": ["/Users/michaelnikolaus/bondora-mcp-server/dist/index.js"],
"env": {
"BONDORA_CLIENT_ID": "deine_client_id",
"BONDORA_CLIENT_SECRET": "dein_client_secret",
"BONDORA_ACCESS_TOKEN": "dein_access_token"
}
}
}
}
VerfĂźgbare Tools
get_account_balance
- Kontostand abrufenget_investments
- Investments anzeigenget_auctions
- VerfĂźgbare Auktionenmake_bid
- Gebot abgebenget_bids
- Eigene Gebote anzeigenget_secondary_market
- Sekundärmarkt durchsuchenbuy_secondary_market
- Kauf auf Sekundärmarktsell_secondary_market
- Verkauf auf Sekundärmarktcancel_secondary_market
- Verkauf stornierenget_event_log
- Event-Log anzeigen
Verwendung
Nach der Installation und Konfiguration kannst du in Claude fragen wie:
- "Zeige mir meinen Bondora Kontostand"
- "Welche Investments habe ich?"
- "Gibt es interessante Auktionen?"
- "Kaufe Loan XYZ auf dem Sekundärmarkt"
Sicherheit
- Teile niemals deine API-Zugangsdaten
- Access Token läuft ab - implementiere Token-Refresh bei Bedarf
- Beachte Bondoras API Rate Limits
Support
Bei Problemen prĂźfe:
- Bondora API Dokumentation
- Server-Logs in der Konsole
- Umgebungsvariablen korrekt gesetzt?