You're viewing a demo of BeeKeeper. Data shown is fictional.
Start Free Trial

MCP Server
The Model Context Protocol (MCP) allows AI assistants like Claude to securely access your BeeKeeper data. The server is read-only — AI agents can view accounts and journal entries but cannot modify any data.
Create an API Key
  1. Visit accounts.futurefund.com/users/api_keys to create an API key.
  2. Generate a new API key and copy it — you will not be able to see it again.
  3. Store the key securely. You will use it as a Bearer token for authentication.

Claude Desktop

Add the following to your claude_desktop_config.json, replacing your-api-key with the key you created:

{
  "mcpServers": {
    "beekeeper": {
      "url": "https://beekeeper.futurefund.com/mcp/messages",
      "headers": {
        "Authorization": "Bearer your-api-key"
      }
    }
  }
}

Claude Code

Run the following command, replacing your-api-key with the key you created:

claude mcp add beekeeper --transport http https://beekeeper.futurefund.com/mcp/messages \
  --header "Authorization: Bearer your-api-key"

ChatGPT

Add BeeKeeper as a custom connector in ChatGPT (requires a Pro, Business, or Enterprise plan):

  1. Open ChatGPT and go to Settings → Connectors.
  2. Click "Add custom connector" and choose MCP as the connector type.
  3. Set the MCP server URL to https://beekeeper.futurefund.com/mcp/messages and authentication to Bearer token.
  4. Paste your API key as the Bearer token and save the connector.

GitHub Copilot

Add the following to your VS Code .vscode/mcp.json (or user-level mcp.json), replacing your-api-key with the key you created:

{
  "servers": {
    "beekeeper": {
      "type": "http",
      "url": "https://beekeeper.futurefund.com/mcp/messages",
      "headers": {
        "Authorization": "Bearer your-api-key"
      }
    }
  }
}

Permissions

The MCP server is read-only. Your API key grants access only to organizations you belong to. AI agents can list organizations, view accounts, and read journal entries.

Confirmation

Are you sure?