Macro events, earnings & market data from QuantGist for Claude and other AI agents.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by QuantGist.
get_upcoming_eventsReturns events in the next N hours.
get_events_rangeReturns events in a date range.
get_economic_calendarReturns the day's macro calendar grouped by release time. This tool calls
get_event_detailReturns full detail for one event.
get_earnings_upcomingReturns the next upcoming earnings reports across all tickers, ordered by report date.
get_earnings_for_tickerReturns earnings history for a single ticker (EPS estimate vs actual, revenue, beat/miss, EDGAR links).
Exposes QuantGist macro-economic event data as Model Context Protocol (MCP) tools so Claude and other AI agents can query calendars, check event proximity, and assess trade safety β all within a conversation.
The server registers 22 tools that any MCP-compatible client (Claude Desktop, Claude Code, custom agents) can call:
Macro economic events
| Tool | Description |
|---|---|
get_upcoming_events | Events scheduled in the next N hours, filtered by impact |
get_events_range | Events in a date range with optional country/symbol/impact filters |
get_economic_calendar | Full day macro calendar from /calendar, grouped by time, with coverage/warnings metadata |
get_event_detail | Full details for one event by ID (actual, forecast, previous, symbols) |
Earnings
| Tool | Description |
|---|---|
get_earnings_upcoming | Next upcoming earnings reports across all tickers, with EPS/revenue estimates |
get_earnings_for_ticker | Earnings history for one ticker (estimate vs actual, beat/miss, EDGAR links) |
get_earnings_summary | Beat / miss / in-line counts and overall beat rate for a ticker |
get_earnings_surprises | Largest EPS surprises across the market in the latest reports |
get_earnings_season_summary | Index-level summary of the current earnings season |
Markets
| Tool | Description |
|---|---|
get_markets_overview | End-of-day quotes for major indices and instruments (S&P 500, Nasdaq, gold, oilβ¦) |
Discovery & help (read-only, no API key required)
| Tool | Description |
|---|---|
get_pricing | Plans, prices, and feature gates (free β enterprise) + the Bot Usage Add-On |
get_limits | Per-plan caps: request quotas, history window, data delay, WS, watchlists, rate limiting |
recommend_endpoint | Map a natural-language use case to the best REST endpoint + MCP tool |
get_status | Check API reachability and link the public status page |
estimate_usage_cost | Estimate which plan fits a request volume + overage / Bot Usage Add-On notes |
Account (webhooks, API keys, billing)
| Tool | Description |
|---|---|
get_subscription | Current plan, status, and billing period (read-only) |
list_webhooks | Registered webhook endpoints (read-only; Pro plan) |
create_webhook | Register an HTTPS webhook endpoint β confirm-gated; signing secret shown once |
delete_webhook | Permanently delete a webhook endpoint β confirm-gated, destructive |
test_webhook | Send a signed synthetic test delivery to verify your consumer |
create_api_key | Create a (optionally scoped) API key β confirm-gated; key shown once |
create_checkout_session | Create a Stripe Checkout session for a plan upgrade β confirm-gated; never charges |
Mutating tools follow an explicit human-in-the-loop pattern:
confirm: true required. Called without it, a mutating tool makes no API call and
returns a preview of exactly what would happen, so the agent can get the user's approval first.create_checkout_session never charges anything β it returns a
Stripe-hosted checkout URL that a human must open in a browser and complete. No card data ever
passes through the tool or QuantGist's API. The plan upgrades automatically after payment.The MCP server is hosted over HTTP at https://api.quantgist.com/mcp β no install, no
Python. Any client that supports the streamable-HTTP transport can connect by sending your
QuantGist key in an X-API-Key header (multi-tenant: billed to your own quota).
Claude Code, in one command:
Any streamable-HTTP MCP client:
Connectors that only accept a URL (e.g. ChatGPT): if you can't set a custom header, put the
key in the URL instead β https://api.quantgist.com/mcp?apiKey=qg_live_YOUR_KEY (also accepts
Authorization: Bearer <key>). The header is preferred where possible, since a key in the URL can
be recorded in proxy/server logs.
Prefer to run it yourself? Install locally (below) or self-host the HTTP server β see DEPLOY.md.
Locate your Claude Desktop config file:
| Platform | Path |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
| Linux | ~/.config/Claude/claude_desktop_config.json |
Add the quantgist server block (see claude_desktop_config_example.json):
Restart Claude Desktop after saving. The tools will appear in the tool list.
uv run instead of a global installIf you prefer not to install globally, point Claude Desktop at uv run:
Add to .claude/mcp_settings.json in your project (or the global ~/.claude/mcp_settings.json):
Besides the stdio transport above, the server can run as a hosted HTTP service via the
quantgist-mcp-http entry point (GET /health, MCP at /mcp). It accepts a per-request
X-API-Key header (multi-tenant) or a server-side QUANTGIST_API_KEY env var.
See DEPLOY.md for Docker, Docker Compose, and Coolify deployment.
get_upcoming_eventsReturns events in the next N hours.
| Parameter | Type | Default | Description |
|---|---|---|---|
hours | integer (1β168) | 24 | Look-ahead window in hours |
impact | high | medium | low | all | high | Impact filter |
get_events_rangeReturns events in a date range.
| Parameter | Type | Required | Description |
|---|---|---|---|
from_date | ISO string | Yes | Start date/datetime |
to_date | ISO string | Yes | End date/datetime |
country | string | No | 2-letter country code (e.g. "US") |
impact | enum | No | high | medium | low | all |
symbol | string | No | Trading symbol (e.g. "XAUUSD") |
get_economic_calendarReturns the day's macro calendar grouped by release time. This tool calls
GET /v1/calendar?envelope=true, not the broad /events feed, so general
financial-news headlines are not mixed into scheduled macro releases.
The structured output preserves the backend envelope:
events / count / returned_counttotal_countcoveragewarningstruncatedschema_versionIf the backend response is partial, stale, truncated by the MCP safety cap, or
missing the required calendar envelope, the tool surfaces that in warnings and
does not fall back to /events.
| Parameter | Type | Default | Description |
|---|---|---|---|
date | ISO date | today (UTC) | Date to fetch |
impact | enum | high | Impact filter |
get_event_detailReturns full detail for one event.
| Parameter | Type | Required | Description |
|---|---|---|---|
event_id | string | Yes | Event ID from any other tool |
get_earnings_upcomingReturns the next upcoming earnings reports across all tickers, ordered by report date.
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer (1β100) | 20 | Number of upcoming reports to return |
get_earnings_for_tickerReturns earnings history for a single ticker (EPS estimate vs actual, revenue, beat/miss, EDGAR links).
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/quantgist)<a href="https://allmcps.com/mcp/quantgist"><img src="https://allmcps.com/api/badge/quantgist?style=directory" alt="QuantGist on AllMCPs" /></a>