MarketPing

Indian stocks: NSE/BSE filings read by AI with price reactions, fundamentals, IPOs and FPI flows.

AI & MLJavaScriptv1.0.1

MarketPing MCP server

smithery badge

Indian stock-market research for AI assistants: NSE/BSE corporate filings read by AI with the measured price reaction after each one, fundamentals for 5,000+ companies, page-cited reads of annual reports and earnings calls, a 108-metric screener, the IPO pipeline, FPI flows, the results calendar and the daily market briefing.

  • Endpoint: https://mcp.marketping.in/mcp — remote, Streamable HTTP, JSON-RPC 2.0, MCP protocol 2025-06-18
  • Auth: none for 20 of the 24 tools. No API key, no sign-up. Four account tools use OAuth 2.1.
  • Writes: exactly one tool (watchlist_add), annotated readOnlyHint: false. Everything else is read-only.
  • Advice: none. MarketPing publishes what companies filed and what the stock did next — no buy/sell calls, no price targets, no ratings, no grey-market premium.
  • Product page: https://marketping.in/mcp · Operator: MarketPing, India · Contact: support@marketping.in

This repository is the server's public contract: the exact tool catalogue the server returns from tools/list (tools.json), a registry manifest (server.json), and a small open-source stdio bridge for clients that cannot speak Streamable HTTP directly. The server itself runs on MarketPing's infrastructure; its handlers are thin read-only wrappers over the same code paths that serve marketping.in.

Connect

Claude (claude.ai / Claude Desktop) — Settings › Connectors › Add custom connector

https://mcp.marketping.in/mcp

ChatGPT (Developer mode / Apps) — add MCP server: same URL.

Cursor / VS Code / Windsurf (mcp.json):

{
  "mcpServers": {
    "marketping": { "url": "https://mcp.marketping.in/mcp" }
  }
}

Clients that only speak stdio — bridge to the same endpoint with mcp-remote:

{
  "mcpServers": {
    "marketping": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.marketping.in/mcp"]
    }
  }
}

That runs the published mcp-remote bridge against the endpoint above and nothing else. It stores no credentials of its own; mcp-remote keeps OAuth tokens in its standard location (~/.mcp-auth) only if you link an account.

bin/marketping-mcp.js in this repo does the same thing as a named wrapper. It is not published to npm, so npx -y @marketping/mcp will not resolve — run it from a clone, or just use the mcp-remote form above.

The 24 tools

Exact schemas and annotations: tools.json (the live tools/list response, captured 19 Sep 2026). Every description ends with the no-advice line — that is part of the contract the consuming model reads.

ToolWhat it returnsAuth
searchCompanies, filings, IPOs and documents matching a query (ChatGPT search contract)none
fetchThe full content of one search result by idnone
resolve_companyA listed company by name/ticker/partial match, with candidatesnone
company_snapshotLatest fundamentals and valuation for one companynone
recent_alertsRecent NSE/BSE filings with AI subject, category, importance, sentimentnone
alert_reactionThe measured move after ONE filing: 5 min … 3 monthsnone
search_filingsFull-text search across every document page MarketPing holdsnone
list_documentsThe documents held for a company, newest firstnone
doc_contentsA document's table of contents with page rangesnone
read_pagesThe text of a page range (max 12 pages) — the only quotable sourcenone
audit_reportAuditor opinions, key audit matters, CARO exceptions per fiscal yearnone
screener_fieldsThe 108 metrics available to run_screenernone
run_screenerFilter the 5,000+ company universe on fundamentalsnone
ipo_pipelineOpen / upcoming / closed / listed IPOs with issue data and subscriptionnone
fpi_flowsFPI/FII flows as NSDL publishes themnone
results_calendarWho reports results on which datesnone
daily_briefingThe latest trading day's briefing: score, indices, sectors, flows, moversnone
list_stacksMarketPing's curated stacks (public daily-rebuilt company lists)none
run_stackThe members of one stack as of today's snapshotnone
stack_changesWhat entered/left a stack since a datenone
list_modelsThe valuation models saved to the linked accountlinked account
run_modelRecompute one saved model with overrideslinked account
watchlist_listThe companies the linked account followslinked account
watchlist_addWrite. Add a company to the linked account's watchlistlinked account

Data handling

  • A tool call sends only the tool's arguments (a company name, a query, a date range) to mcp.marketping.in over HTTPS. Nothing else leaves the client; the bridge adds no telemetry.
  • Anonymous calls are metered by caller class: a direct end-user IP gets its own daily budget (200 tool calls per IST day, the same as the Free plan); hosted assistants (claude.ai, ChatGPT) call from vendor egress ranges and share a bounded pool. Quota exhaustion is a normal tool result with a message, never an auth error.
  • Linking a MarketPing account (OAuth 2.1; discovery at https://mcp.marketping.in/.well-known/oauth-authorization-server and /.well-known/oauth-protected-resource) unlocks the four account tools and the account's plan budget (Investor 1,000 / Trader 2,000 calls per day). Tokens are issued by MarketPing's own authorization server and can be revoked from the account's settings.
  • Every result carries a marketping.in URL so the assistant can cite the page. Document text comes only from read_pages, page-anchored, so quotes are checkable.
  • No tool fetches arbitrary URLs, runs code, or reads anything outside MarketPing's database.

Verify it yourself

curl -s -X POST https://mcp.marketping.in/mcp \
  -H "Content-Type: application/json" -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"curl","version":"1"}}}'

curl -s -X POST https://mcp.marketping.in/mcp \
  -H "Content-Type: application/json" -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}'

The second response is tools.json.

About MarketPing

MarketPing is an Indian stock-market research platform built around one idea: every NSE and BSE corporate filing, read by AI the moment it is published, delivered to WhatsApp within a minute, and followed by the measured price reaction — what the stock actually did 5 minutes to 3 months later. 500,000+ filings decoded, 1.9 million reactions measured, 5,000+ companies. It publishes no buy/sell calls, no price targets and no ratings.

What the same data looks like on the site (every MCP result links back to one of these):

License

The bridge and the files in this repository are MIT-licensed (see LICENSE). The MarketPing service and its data are proprietary; use of the endpoint is subject to https://marketping.in/terms.

Setup from the maintainer

This listing does not have a supported local package template. Use the maintainer’s documentation for its hosted endpoint, authentication, and client-specific setup. No install command has been inferred.

Learn More