kubera-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@kubera-mcpshow my net worth"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
kubera-mcp
MCP server for Kubera — lets LLMs (Claude, Gemini, etc.) read and update your portfolio data.
Tools
Tool | Description |
| List all portfolios |
| Fetch assets, debts, and net worth for a portfolio |
| Update the value of a manual asset or debt |
Requirements
Docker (recommended) or Node.js 18+
Kubera API Key & Secret — get from Kubera → Settings → API
Setup
Docker (recommended)
docker build -t kubera-mcp .Local Node
npm install && npm run buildConfiguration
Copy .env.example to .env and fill in your credentials:
KUBERA_API_KEY=your_api_key
KUBERA_API_SECRET=your_api_secretMCP Client Config
Docker
{
"mcpServers": {
"kubera": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "KUBERA_API_KEY", "-e", "KUBERA_API_SECRET", "kubera-mcp"],
"env": {
"KUBERA_API_KEY": "your_api_key",
"KUBERA_API_SECRET": "your_api_secret"
}
}
}
}Local Node
{
"mcpServers": {
"kubera": {
"command": "node",
"args": ["/absolute/path/to/kubera-mcp/dist/index.js"],
"env": {
"KUBERA_API_KEY": "your_api_key",
"KUBERA_API_SECRET": "your_api_secret"
}
}
}
}Related MCP Connectors
Open-source MCP server for Zerodha Kite Connect. Portfolio, market data, backtesting, alerts.
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
MCP server for OpenMM — exposes market data, account, trading, and strategy tools to AI agents
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2