Back to Browse

Fi Plan MCP Server

Developer ToolsLow Risk10.0MCP RegistryRemote
Free

Server data from the Official MCP Registry

Financial simulator for Indian salaries: loans, taxes, SIPs and 50-year FIRE plans.

About

Financial simulator for Indian salaries: loans, taxes, SIPs and 50-year FIRE plans.

Remote endpoints: streamable-http: https://www.fi-plan.in/mcp

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

4 tools verified · Open access · No issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "io-github-ompurwar-fi-plan": {
      "url": "https://www.fi-plan.in/mcp"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Fi-Plan MCP Server

Fi-Plan is a month-by-month financial simulator for Indian salaries — income, taxes, EMIs, SIPs, and up to 50 years of net worth.

This repository is the public descriptor for the hosted Fi-Plan MCP server. The server itself is not open source; the endpoint below is publicly reachable and speaks MCP over Streamable HTTP (JSON-RPC 2.0).

Endpoint

https://www.fi-plan.in/mcp

Tools

Anonymous tools (no account required, IP rate limited):

ToolWhat it does
loan_amortizationReal monthly amortization schedule, with optional prepayments
loan_refinanceRefinance analysis: old loan vs new loan, break-even
asset_projectionProjects asset / portfolio growth over a horizon
simulate_planRuns a full year-by-year projection from a plan_json payload

Authenticated tools (your plans, cashflows, loans, assets, net worth) are available with an API token or OAuth. Create a token at https://www.fi-plan.in/profile.

Client configuration

The exact format differs per client. Use the one for yours.

Claude Code (CLI — recommended):

claude mcp add --transport http fi-plan https://www.fi-plan.in/mcp

Claude Desktop / Claude apps — add as a custom connector:

Settings → Connectors → Add custom connector → URL https://www.fi-plan.in/mcp

Cursor (.cursor/mcp.json):

{
  "mcpServers": {
    "fi-plan": {
      "url": "https://www.fi-plan.in/mcp"
    }
  }
}

VS Code (.vscode/mcp.json) — note the servers key and the required type:

{
  "servers": {
    "fi-plan": {
      "type": "http",
      "url": "https://www.fi-plan.in/mcp"
    }
  }
}

Any client using the .mcp.json / mcpServers shape (e.g. Claude Code project scope) — a url entry must include "type": "http", or the client treats it as a stdio server and skips it:

{
  "mcpServers": {
    "fi-plan": {
      "type": "http",
      "url": "https://www.fi-plan.in/mcp"
    }
  }
}

Authenticated (optional)

For account tools, pass a token in a header. Works only in clients that support custom headers (Cursor, VS Code, Claude Code); the Claude Desktop/apps connector UI does not take custom headers.

Claude Code:

claude mcp add --transport http fi-plan https://www.fi-plan.in/mcp \
  --header "Authorization: Bearer fp_your_token_here"

Cursor / VS Code / .mcp.json:

{
  "mcpServers": {
    "fi-plan": {
      "type": "http",
      "url": "https://www.fi-plan.in/mcp",
      "headers": { "Authorization": "Bearer fp_your_token_here" }
    }
  }
}

Discovery

License

The contents of this repository (documentation) are MIT licensed. The Fi-Plan application and MCP server are proprietary — see https://www.fi-plan.in for terms.

Reviews

No reviews yet

Be the first to review this server!