Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
MCP server for Massive.com market data
This repo is an MCP server that exposes Massive.com’s financial data API to agents through a small set of composable tools. Instead of one tool per endpoint, it lets the agent search endpoints, call any REST endpoint, and query stored results with SQLite. It also adds built-in market and options functions like returns, moving averages, and Black-Scholes greeks.
Builders who want their agent to fetch market data, inspect financial endpoints, and run analysis without leaving the chat.
You can ask your agent for stock, crypto, options, and fundamentals data, then query and transform the results in one place.
What it does
Search API endpoints and functions
`search_endpoints` finds Massive.com endpoints and built-in functions from natural-language queries, with brief or full docs on demand.
Call any Massive.com endpoint
`call_api` hits REST endpoints directly, supports pagination, and can store results as a table or apply post-processing functions.
Query stored data with SQL
`query_data` runs SQL against the in-memory SQLite store, including table inspection and cleanup commands.
Built-in financial functions
Option pricing, greeks, returns, and technical indicators can be applied to API results or query output.
Automatic endpoint indexing
The server loads the Massive.com endpoint index from `llms.txt` at startup so the tool list stays in sync with the API.
How to get it
- 1First, install Claude Code
npm install -g @anthropic-ai/claude-code
- 2Install the MCP server, then register it with Claude Code
# Install the server (one-time — downloads dependencies ahead of time) uv tool install "mcp_massive @ git+https://github.com/massive-com/mcp_massive@v0.10.0" # Register with Claude Code claude mcp add massive -e MASSIVE_API_KEY=your_api_key_here -- mcp_massive
- 3To upgrade to a new version later
uv tool upgrade mcp_massive
- 4Install the server
uv tool install "mcp_massive @ git+https://github.com/massive-com/mcp_massive@v0.10.0"
- 5Find the installed binary path
# Mac/Linux which mcp_massive # Windows where mcp_massive
- 6Once integrated, you can prompt Claude to access Massive.com data
Get the latest price for AAPL stock Show me yesterday's trading volume for MSFT What were the biggest stock market gainers today? Get me the latest crypto market data for BTC-USD Calculate the 20-day SMA for AAPL closing prices over the last 3 months Compute Black-Scholes delta for these option contracts
README

[!IMPORTANT] :test_tube: This project is experimental and could be subject to breaking changes.
Massive.com MCP Server
A Model Context Protocol (MCP) server that provides access to the full Massive.com financial data API through an LLM-friendly interface.
Rather than exposing one tool per endpoint, this server gives the LLM three composable tools — search, call, and query — that cover the entire Massive.com API surface. Data can be stored in an in-memory SQLite database, and enriched with built-in financial functions.
Tools
| Tool | Description |
|---|---|
search_endpoints | Search for API endpoints and built-in functions by natural language query. Returns titles, path patterns, and descriptions. Set detail to "more" for query parameter docs, or "verbose" for full documentation. Use max_results to limit results. |
call_api | Call any Massive.com REST API endpoint. Supports storing results as an in-memory database table (store_as) and applying post-processing functions (apply). Paginated responses include a next-page hint. |
query_data | Run SQL against stored SQLite DB. Supports SHOW TABLES, DESCRIBE <table>, DROP TABLE <table>, CTEs, window functions, and more. Results can also be post-processed with apply. |
Built-in Functions
Functions can be applied to API results or query output via the apply parameter on call_api and query_data. Use search_endpoints with scope="functions" to discover them.
| Category | Functions |
|---|---|
| Greeks | bs_price, bs_delta, bs_gamma, bs_theta, bs_vega, bs_rho — Black-Scholes option pricing and greeks |
| Returns | simple_return, log_return, cumulative_return, sharpe_ratio, sortino_ratio |
| Technical | sma (simple moving average), ema (exponential moving average) |
Data Coverage
The server dynamically indexes all Massive.com API endpoints at startup from llms.txt, so it automatically stays in sync with the API. Coverage includes:
- Stock, options, forex, crypto, and futures aggregates
- Real-time and historical trades and quotes
- Market snapshots, gainers/losers
- Ticker details and reference data
- Dividends, splits, IPOs
- Financial fundamentals
- Analyst ratings and news (Benzinga)
- Treasury yields, inflation data
- Market status and holidays
Installation
Prerequisites
- Python 3.12+
- A Massive.com API key
- Astral UV (v0.4.0+)
Claude Code
First, install Claude Code
npm install -g @anthropic-ai/claude-code
Install the MCP server, then register it with Claude Code:
# Install the server (one-time — downloads dependencies ahead of time)
uv tool install "mcp_massive @ git+https://github.com/massive-com/mcp_massive@v0.10.0"
# Register with Claude Code
claude mcp add massive -e MASSIVE_API_KEY=your_api_key_here -- mcp_massive
To upgrade to a new version later:
uv tool upgrade mcp_massive
[!NOTE] Upgrading from
uvxoruv run --with? Previous versions recommendeduvx --from ... mcp_massiveoruv run --with. These commands download dependencies on every cold start, which can cause the server to exceed Claude's 30-second connection timeout. Switch touv tool installas shown above — it downloads dependencies once and starts instantly after that.
This command will install the MCP server in your current project.
If you want to install it globally, you can run the command with -s <scope> flag.
See claude mcp add --help for more options.
To start Claude Code, run claude in your terminal.
- If this is your first time using, follow the setup prompts to authenticate
You can also run claude mcp add-from-claude-desktop if the MCP server is installed already for Claude Desktop.
Claude Desktop
- Follow the Claude Desktop MCP installation instructions to complete the initial installation and find your configuration file.
- Install the server:
uv tool install "mcp_massive @ git+https://github.com/massive-com/mcp_massive@v0.10.0"
- Find the installed binary path:
# Mac/Linux
which mcp_massive
# Windows
where mcp_massive
- Add the server to your Claude Desktop config. Replace
<path_to_mcp_massive>with the output from the previous step, and fill in the remaining fields.
claude_desktop_config.json
{
"mcpServers": {
"massive": {
"command": "<path_to_mcp_massive>",
"env": {
"MASSIVE_API_KEY": "<your_api_key_here>",
"HOME": "<your_home_directory>"
}
}
}
}
Configuration
Environment Variables
| Variable | Required | Default | Description |
|---|---|---|---|
MASSIVE_API_KEY | Yes | — | Your Massive.com API key |
POLYGON_API_KEY | No | — | Deprecated alias for MASSIVE_API_KEY |
MCP_TRANSPORT | No | stdio | Transport protocol: stdio, sse, or streamable-http |
MASSIVE_API_BASE_URL | No | https://api.massive.com | Base URL for API requests |
MASSIVE_LLMS_TXT_URL | No | https://massive.com/docs/rest/llms.txt | URL for the endpoint index |
MASSIVE_MAX_TABLES | No | 50 | Maximum number of in-memory tables |
MASSIVE_MAX_ROWS | No | 50000 | Maximum rows per stored tables |
Transport
By default, STDIO transport is used. The transport can be set via the --transport CLI argument or the MCP_TRANSPORT environment variable (CLI argument takes precedence).
# CLI argument
MASSIVE_API_KEY=<your_api_key_here> uv run mcp_massive --transport streamable-http
# Environment variable
MCP_TRANSPORT=streamable-http MASSIVE_API_KEY=<your_api_key_here> uv run mcp_massive
Usage Examples
Once integrated, you can prompt Claude to access Massive.com data:
Get the latest price for AAPL stock
Show me yesterday's trading volume for MSFT
What were the biggest stock market gainers today?
Get me the latest crypto market data for BTC-USD
Calculate the 20-day SMA for AAPL closing prices over the last 3 months
Compute Black-Scholes delta for these option contracts
Development
Running Locally
Check to ensure you have the Prerequisites installed.
# Sync dependencies
uv sync
# Run the server
MASSIVE_API_KEY=your_api_key_here uv run mcp_massive
Local Dev Config for claude_desktop_config.json
Install from your local checkout, then reference the binary directly:
uv tool install --force /path/to/mcp_massive
{
"mcpServers": {
"massive": {
"command": "mcp_massive",
"env": {
"MASSIVE_API_KEY": "your_api_key_here"
}
}
}
}
Debugging
For debugging and testing, we recommend using the MCP Inspector:
npx @modelcontextprotocol/inspector uv --directory /path/to/mcp_massive run mcp_massive
This will launch a browser interface where you can interact with your MCP server directly and see input/output for each tool.
Select the STDIO transport type in the browser UI with the command uv and run mcp_massive as the arguments.
Code Linting
This project uses just for common development tasks. To lint your code before submitting a PR:
just lint
This will run ruff format and ruff check --fix to automatically format your code and fix linting issues.
Links
Privacy Policy
This MCP server interacts with Massive.com's API to fetch market data. All data requests are subject to Massive.com's privacy policy and terms of service.
- Massive.com Privacy Policy: https://massive.com/legal/privacy
- Data Handling: This server does not store or cache any user data. All requests are proxied directly to Massive.com's API.
- API Key: Your Massive.com API key is used only for authenticating requests to their API.
- User-Agent: API requests include a User-Agent string containing the MCP server version (e.g.,
MCP-Massive/0.x.y). No personally identifiable information is included.
Contributing
If you found a bug or have an idea for a new feature, please first discuss it with us by submitting a new issue. We will respond to issues within at most 3 weeks. We're also open to volunteers if you want to submit a PR for any open issues but please discuss it with us beforehand. PRs that aren't linked to an existing issue or discussed with us ahead of time will generally be declined.
Files in the repo
- .github
- assets
- src
- tests
- .gitignore
- .mcpbignore
- .python-version
- docker-compose.yml
- Dockerfile
- entrypoint.py
- glama.json
- justfile
- LICENSE
- manifest.json
- pyproject.toml
- README.md
- uv.lock
Discussion (0)
Ask about usage, or say what you built with itSign in to join the discussion.
No comments yet. Be the first to say what this is good for.
More connectors
High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.

Universal provider proxy for OpenAI Codex & Claude Code — use any LLM (Claude, Gemini, Grok, DeepSeek, Ollama…) with Codex CLI, App, SDK, and Claude Code
Git-native persistent memory for AI coding agents. Implements Google OKF v0.2 with sub-300µs in-memory BM25 search, embedded MCP server, and progressive disclosure. Slashes token bloat by 80% with zero external databases or dependencies. Built in pure Go.
Stop your AI from making things up — it proposes, deterministic tools decide, every claim checked against ground truth with evidence. Grounded facts and context survive resets. Reverse engineering is the proving ground. MCP server + CLI.
20 MB lightweight cross-platform database client for 90+ databases, including MySQL, PostgreSQL, SQLite, Redis, MongoDB, DuckDB, SQL Server, and Dameng. Built-in AI, MCP Server, CLI, desktop and Docker. | 轻量级跨平台数据库管理工具,支持 MySQL、PostgreSQL、SQLite、Redis、MongoDB、达梦等 90+ 数据库,提供桌面端、Docker、CLI、内置 AI 助手和 MCP Server。