search_schemes
Pack: mfapi-india · Endpoint: https://gateway.pipeworx.io/mfapi-india/mcp
Find Indian mutual-fund scheme codes by fund name. Fetches the full MFAPI scheme list (~16,000 schemes) and filters client-side by case-insensitive token match (every word in the query must appear in the scheme name, any order — so “SBI Bluechip” matches “SBI Blue Chip Fund”). This is the way to obtain a scheme_code for get_nav_history and latest_nav. Note: this call downloads the full list (~1-2MB). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Fund-name fragment, e.g. “SBI Bluechip”, “Parag Parikh”, “index fund”. Matched case-insensitively against scheme names. |
limit | number | no | Max schemes to return (default 15, max 30). |
Example call
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":"search_schemes","arguments":{}}}'
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.