mcp-server-bondora

nikolausm/mcp-server-bondora

3.2

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.

Tools
  1. get_account_balance

    Retrieve account balance

  2. get_investments

    Display investments

  3. get_auctions

    List available auctions

  4. make_bid

    Place a bid

  5. get_bids

    Show own bids

  6. get_secondary_market

    Search secondary market

  7. buy_secondary_market

    Purchase on secondary market

  8. sell_secondary_market

    Sell on secondary market

  9. cancel_secondary_market

    Cancel sale on secondary market

  10. 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

  1. Logge dich bei Bondora ein
  2. Gehe zu API Applications
  3. Erstelle eine neue Anwendung
  4. Notiere Client ID und Client Secret
  5. 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 abrufen
  • get_investments - Investments anzeigen
  • get_auctions - VerfĂźgbare Auktionen
  • make_bid - Gebot abgeben
  • get_bids - Eigene Gebote anzeigen
  • get_secondary_market - Sekundärmarkt durchsuchen
  • buy_secondary_market - Kauf auf Sekundärmarkt
  • sell_secondary_market - Verkauf auf Sekundärmarkt
  • cancel_secondary_market - Verkauf stornieren
  • get_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: