latest_nav
Pack: mfapi-india · Endpoint: https://gateway.pipeworx.io/mfapi-india/mcp
Fast single-value lookup of a mutual-fund scheme’s latest NAV (net asset value) from MFAPI. Returns the most recent NAV, its date, and basic scheme metadata. Use search_schemes to find a scheme_code first (e.g. 118550). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
scheme_code | number | yes | AMFI scheme code, e.g. 118550. Get one from search_schemes. |
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":"latest_nav","arguments":{"scheme_code":118550}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('latest_nav', {
"scheme_code": 118550
});
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.