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"

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?