Skip to main content

MCP server — exposes QuantGist macro event tools to Claude and AI agents

Project description

QuantGist MCP Server

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.

What it does

The server registers eleven 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
check_safe_to_trade Is it safe to trade a symbol right now? (high-impact event proximity check)
get_economic_calendar Full day calendar grouped by time, formatted as a schedule
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…)

Requirements

  • Python 3.10+
  • A QuantGist API key — get one at quantgist.com (free tier: 100 calls/day)

Installation

Option A — install from the package (recommended)

pip install quantgist-mcp
# or with uv:
uv pip install quantgist-mcp

Option B — install from source (development)

git clone https://github.com/QuantGist-Technologies/QuantGist_MCP
cd QuantGist_MCP
uv sync          # installs all dependencies into a venv
uv run quantgist-mcp   # start the server

Claude Desktop configuration

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):

{
  "mcpServers": {
    "quantgist": {
      "command": "quantgist-mcp",
      "env": {
        "QUANTGIST_API_KEY": "qg_live_YOUR_KEY_HERE"
      }
    }
  }
}

Restart Claude Desktop after saving. The tools will appear in the tool list.

Using uv run instead of a global install

If you prefer not to install globally, point Claude Desktop at uv run:

{
  "mcpServers": {
    "quantgist": {
      "command": "uv",
      "args": ["run", "--directory", "/absolute/path/to/Quangist_MCP", "quantgist-mcp"],
      "env": {
        "QUANTGIST_API_KEY": "qg_live_YOUR_KEY_HERE"
      }
    }
  }
}

Claude Code configuration

Add to .claude/mcp_settings.json in your project (or the global ~/.claude/mcp_settings.json):

{
  "mcpServers": {
    "quantgist": {
      "command": "quantgist-mcp",
      "env": {
        "QUANTGIST_API_KEY": "qg_live_YOUR_KEY_HERE"
      }
    }
  }
}

Tool reference

get_upcoming_events

Returns 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_range

Returns 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")

check_safe_to_trade

Checks if a symbol is safe to trade based on nearby high-impact events.

Parameter Type Default Description
symbol string required Symbol to check (e.g. "XAUUSD")
minutes_before integer (0–120) 10 Flag unsafe N minutes before an event
minutes_after integer (0–120) 5 Flag unsafe N minutes after an event

Returns a JSON object:

{
  "symbol": "XAUUSD",
  "safe": false,
  "reason": "High-impact event within window: US CPI (YoY). Avoid trading XAUUSD until the window passes.",
  "dangerous_events_count": 1,
  "next_event": {
    "id": "abc123",
    "title": "US CPI (YoY)",
    "currency": "USD",
    "impact": "high",
    "release_time_utc": "2025-01-15T13:30:00Z",
    "minutes_from_now": 7.3
  },
  "window": { "minutes_before": 10, "minutes_after": 5 },
  "checked_at_utc": "2025-01-15 13:22 UTC"
}

get_economic_calendar

Returns the day's calendar grouped by release time.

Parameter Type Default Description
date ISO date today (UTC) Date to fetch
impact enum high Impact filter

get_event_detail

Returns full detail for one event.

Parameter Type Required Description
event_id string Yes Event ID from any other tool

get_earnings_upcoming

Returns 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_ticker

Returns earnings history for a single ticker (EPS estimate vs actual, revenue, beat/miss, EDGAR links).

Parameter Type Default Description
ticker string required Stock ticker, e.g. "AAPL"
limit integer (1–50) 10 Number of historical reports to return

get_earnings_summary

Returns beat / miss / in-line counts and overall beat rate for a ticker.

Parameter Type Required Description
ticker string Yes Stock ticker, e.g. "AAPL"

get_earnings_surprises

Returns the largest EPS surprises across the market in the most recent reports.

Parameter Type Default Description
limit integer (1–50) 20 Number of top surprises to return

get_earnings_season_summary

Returns the index-level summary of the current earnings season (total reports, overall beat rate, average EPS surprise, season label). No parameters.

get_markets_overview

Returns end-of-day quotes for major market indices and instruments (S&P 500, Nasdaq, Dow Jones, gold, oil, etc.). No parameters.

Example prompts

These prompts work out of the box once the server is connected:

  • "What high-impact events are in the next 4 hours?"
  • "Is it safe to trade XAUUSD right now?"
  • "Show me today's full economic calendar"
  • "Show me this week's high-impact USD events"
  • "What macro events affect EURUSD this Friday?"
  • "Get me details on event ID abc123"
  • "Check if GBPUSD is safe to trade with a 15-minute buffer before events"
  • "Which companies report earnings soon?"
  • "Show me AAPL's earnings beat rate"
  • "What were the biggest EPS surprises this season?"
  • "Give me a quick market overview"

Environment variables

Variable Required Description
QUANTGIST_API_KEY Yes Your QuantGist API key (qg_live_... or qg_test_...)

Development

uv sync
uv run quantgist-mcp          # run the MCP server
uv run pytest                 # run tests (if present)
uv run ruff check src/        # lint
uv run ruff format src/       # format

API rate limits

The free tier allows 100 API calls/day with up to 365 days of event history. Each tool invocation makes 1–2 API calls. Upgrade at quantgist.com/pricing for higher limits.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

quantgist_mcp-0.1.0.tar.gz (12.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

quantgist_mcp-0.1.0-py3-none-any.whl (14.7 kB view details)

Uploaded Python 3

File details

Details for the file quantgist_mcp-0.1.0.tar.gz.

File metadata

  • Download URL: quantgist_mcp-0.1.0.tar.gz
  • Upload date:
  • Size: 12.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for quantgist_mcp-0.1.0.tar.gz
Algorithm Hash digest
SHA256 9c3525df2af7a243bb42db699219913c34fa98a7dfbc3867d1079ee3cbe7f3c4
MD5 54520169064d3552fc88dfcbcbf855a5
BLAKE2b-256 c49deb346d0a70a284bc560595d19f2d5a5214ccd171082879ce41158a04d035

See more details on using hashes here.

Provenance

The following attestation bundles were made for quantgist_mcp-0.1.0.tar.gz:

Publisher: ci.yml on QuantGist-Technologies/QuantGist_MCP

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quantgist_mcp-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: quantgist_mcp-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for quantgist_mcp-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a90acf8232c12313ac28349ca3c327117567472e5590a50e5f50fac9cf15cece
MD5 0a383a5d205703349c6a63fae31ea94f
BLAKE2b-256 8d286fb24dc47ec18949537e71c2930b1b479a9747ffee55306534781b568552

See more details on using hashes here.

Provenance

The following attestation bundles were made for quantgist_mcp-0.1.0-py3-none-any.whl:

Publisher: ci.yml on QuantGist-Technologies/QuantGist_MCP

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page