moneycontrol-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@moneycontrol-mcpget quote for Reliance Industries"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Moneycontrol MCP Server
An MCP server that exposes Moneycontrol market data as tools an AI agent can call: symbol search, live equity quotes, fundamentals & ratios, index levels, FII/DII institutional activity (cash market + F&O), market news, and technical pivot levels.
Moneycontrol has no official public API. This server talks to the same public endpoints the Moneycontrol website and app use (
priceapi.moneycontrol.com, the autosuggest service, the FII/DII page's embedded data, and RSS feeds). It is intended for personal/informational use; respect Moneycontrol's terms of service and avoid hammering the endpoints. All data is read-only.
Tools
Tool | What it does |
| Search a stock or index by name → resolve its |
| Live equity quote: price, change, OHLC, 52-week range, volume, market cap. |
| Valuation ratios (P/E standalone & consolidated, industry P/E, P/B), book value, cash EPS, face value, dividend yield, sector, and 1w–5y returns. |
| Current level/movement for an index (Nifty 50, Sensex, Nifty Bank, sectoral indices, …). |
| FII & DII net activity in ₹ crore — cash market headline plus F&O segments, by day. |
| Current news headlines for a topic/stock ( |
| Pivot points and support/resistance levels (daily/weekly/monthly). |
| Historical OHLCV bars for an NSE stock — daily/weekly/monthly or intraday (1m–1h). |
Every tool accepts response_format: "markdown" (default, human-readable) or "json"
(structured, for programmatic use).
Related MCP server: psx-mcp
Install
Requires Python 3.10+. Uses uv (or plain pip).
uv venv --python 3.11
uv pip install -e .Run
# stdio transport (for local MCP clients)
uv run moneycontrol-mcp
# or
uv run python -m moneycontrol_mcpUse with Claude Code / Claude Desktop
Add to your MCP client config (e.g. claude_desktop_config.json), using absolute paths:
{
"mcpServers": {
"moneycontrol": {
"command": "uv",
"args": ["--directory", "/ABSOLUTE/PATH/TO/Money control mcp", "run", "moneycontrol-mcp"]
}
}
}In Claude Code:
claude mcp add moneycontrol -- uv --directory "/ABSOLUTE/PATH/TO/Money control mcp" run moneycontrol-mcpQuick test
uv run python scripts/smoke_test.pyThis calls every tool against the live endpoints and prints the results.
Example agent flow
moneycontrol_search(query="HDFC Bank")→sc_id: "HDF01"moneycontrol_get_quote(symbol="HDF01")→ live pricemoneycontrol_get_fundamentals(symbol="HDF01")→ P/E, P/B, dividend yieldmoneycontrol_fii_dii(days=5, segment="cash")→ were foreigners buying this week?
(The quote/fundamentals/technicals tools also accept a plain company name and will
auto-resolve it via search, but passing the sc_id is faster and unambiguous.)
Notes & limitations
Cash market FII/DII figures (
fiiCM/diiCM) are the headline numbers; F&O segments are also exposed viasegment="fno"or"all".Index codes for the most common indices are built in; any other index name is resolved at runtime via Moneycontrol search.
Historical data (
moneycontrol_get_history) is for NSE equities via the techCharts feed; index history and BSE-only scrips are not currently supported.Commodity/forex quotes are not included: Moneycontrol's public price feed requires contract/expiry-specific codes for those and is not reliably accessible.
Top gainers/losers, options chain, and corporate actions are not included: Moneycontrol does not expose clean public JSON endpoints for these. If you need them, the NSE-backed tools in sibling MCP servers (e.g.
finstack'snse_top_movers/nse_options_chain/nse_corporate_actions, ordhan) cover that ground.Data reflects whatever Moneycontrol publishes (often delayed during market hours; provisional FII/DII data updates after market close).
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pramodhapple504-arch/moneycontrol-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server