Connect in 60 seconds

One streamable-HTTP endpoint. Add it anywhere that speaks MCP — all 76 tools show up instantly.

Your connector URL: https://your-space.hf.space/mcp
1

Claude Desktop — custom connector (easiest)

Settings → ConnectorsAdd custom connector → paste the URL:

https://your-space.hf.space/mcp
2

Claude Code (CLI)

One command adds it as an HTTP server:

claude mcp add --transport http personal-finance https://your-space.hf.space/mcp
3

Cursor / VS Code / any IDE

Add to your mcp.json (or the IDE’s MCP settings):

{
  "mcpServers": {
    "personal-finance": {
      "url": "https://your-space.hf.space/mcp",
      "transport": "http"
    }
  }
}
4

Claude Desktop via config file (stdio bridge)

If you prefer the config file, bridge the remote server with mcp-remote. Edit claude_desktop_config.json:

{
  "mcpServers": {
    "personal-finance": {
      "command": "npx",
      "args": ["mcp-remote", "https://your-space.hf.space/mcp"]
    }
  }
}
5

Run it locally (stdio, fully offline)

Clone the repo and point Claude Desktop at the local process:

pip install -e .
# claude_desktop_config.json
{
  "mcpServers": {
    "personal-finance": {
      "command": "python",
      "args": ["-m", "src"]
    }
  }
}
6

Other IDEs & MCP clients

Cursor / Windsurf / Zed — add an HTTP MCP server in mcp.json (or the app’s MCP settings):

{
  "mcpServers": {
    "personal-finance": { "url": "https://your-space.hf.space/mcp", "transport": "http" }
  }
}

Continue (~/.continue/config.yaml):

mcpServers:
  - name: personal-finance
    transport: streamable-http
    url: https://your-space.hf.space/mcp

Cline (VS Code) — MCP Servers panel → Add remote server → paste https://your-space.hf.space/mcp. If a client only supports stdio, bridge it with npx mcp-remote https://your-space.hf.space/mcp.

Try these prompts

I'm 32, earn ₹1.2L/month, spend ₹70k, have a ₹25k home-loan EMI. Build me a financial plan.

How much SIP do I need to reach ₹2 crore in 18 years at 12%?

Price a 1-year ATM call on a ₹100 stock with 20% volatility.

Compare PPF vs a 7% FD for ₹1.5L/year over 15 years.