get_nav_history

Pack: mfapi-india · Endpoint: https://gateway.pipeworx.io/mfapi-india/mcp

Get a mutual-fund scheme’s NAV (net asset value) history from MFAPI — fund house, category, ISIN, latest NAV, and the most-recent NAV points (newest first). Use search_schemes to find a scheme_code first (e.g. 118550). Keyless.

Parameters

NameTypeRequiredDescription
scheme_codenumberyesAMFI scheme code, e.g. 118550. Get one from search_schemes.
limitnumbernoNumber of most-recent NAV points to return (default 30, max 120).

Example call

Arguments

{
  "scheme_code": 118550
}

curl

curl -X POST https://gateway.pipeworx.io/mfapi-india/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_nav_history","arguments":{"scheme_code":118550}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_nav_history', {
  "scheme_code": 118550
});

More examples

{
  "scheme_code": 118550,
  "limit": 60
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "mfapi-india": {
      "url": "https://gateway.pipeworx.io/mfapi-india/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 9, 2026