.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/massive-com/mcp_massive
home/mcp-servers/massive-com/mcp_massive
massive-com avatar

mcp_massive

bymassive-com· 1 MCP server

Stars

373

Forks

106

Category

Finance & Trading

View on GitHub

TL;DR

> [!IMPORTANT] > :test_tube: This project is experimental and could be subject to breaking changes.

How to install mcp_massive?

massive-com/mcp_massive
$git clone https://github.com/massive-com/mcp_massive

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mcp_massive by running `git clone https://github.com/massive-com/mcp_massive`, then use it for the current task and follow its documentation at https://github.com/massive-com/mcp_massive.

Files · 1

View on GitHub
README.md
1<a href="https://massive.com">
2 <div align="center">
3 <picture>
4 <source media="(prefers-color-scheme: light)" srcset="assets/logo-massive-lightmode.png">
5 <source media="(prefers-color-scheme: dark)" srcset="assets/logo-massive-darkmode.png">
6 <img alt="Massive.com logo" src="assets/logo-massive-lightmode.png" height="100">
7 </picture>
8 </div>
9</a>
10<br>
11 
12> [!IMPORTANT]
13> :test_tube: This project is experimental and could be subject to breaking changes.
14 
15# Massive.com MCP Server
16 
17 [![GitHub release](https://img.shields.io/github/v/release/massive-com/mcp_massive)](https://github.com/massive-com/mcp_massive/releases)
18 
19A [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server that provides access to the full [Massive.com](https://massive.com?utm_campaign=mcp&utm_medium=referral&utm_source=github) financial data API through an LLM-friendly interface.
20 
21Rather 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.
22 
23## Tools
24 
25| Tool | Description |
26|---|---|
27| `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. |
28| `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. |
29| `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`. |
30 
31### Built-in Functions
32 
33Functions 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.
34 
35| Category | Functions |
36|---|---|
37| **Greeks** | `bs_price`, `bs_delta`, `bs_gamma`, `bs_theta`, `bs_vega`, `bs_rho` — Black-Scholes option pricing and greeks |
38| **Returns** | `simple_return`, `log_return`, `cumulative_return`, `sharpe_ratio`, `sortino_ratio` |
39| **Technical** | `sma` (simple moving average), `ema` (exponential moving average) |
40 
41### Data Coverage
42 
43The server dynamically indexes all Massive.com API endpoints at startup from [`llms.txt`](https://massive.com/docs/rest/llms.txt), so it automatically stays in sync with the API. Coverage includes:
44 
45- Stock, options, forex, crypto, and futures aggregates
46- Real-time and historical trades and quotes
47- Market snapshots, gainers/losers
48- Ticker details and reference data
49- Dividends, splits, IPOs
50- Financial fundamentals
51- Analyst ratings and news (Benzinga)
52- Treasury yields, inflation data
53- Market status and holidays
54 
55## Installation
56 
57### Prerequisites
58 
59- Python 3.12+
60- A Massive.com API key <br> [![Button]][Link]
61- [Astral UV](https://docs.astral.sh/uv/getting-started/installation/) (v0.4.0+)
62 
63### Claude Code
64First, install [Claude Code](https://docs.anthropic.com/en/docs/agents-and-tools/claude-code/overview)
65 
66```bash
67npm install -g @anthropic-ai/claude-code
68```
69 
70Install the MCP server, then register it with Claude Code:
71 
72```bash
73# Install the server (one-time — downloads dependencies ahead of time)
74uv tool install "mcp_massive @ git+https://github.com/massive-com/mcp_massive@v0.10.0"
75 
76# Register with Claude Code
77claude mcp add massive -e MASSIVE_API_KEY=your_api_key_here -- mcp_massive
78```
79 
80To upgrade to a new version later:
81 
82```bash
83uv tool upgrade mcp_massive
84```
85 
86> [!NOTE]
87> **Upgrading from `uvx` or `uv run --with`?** Previous versions recommended `uvx --from ... mcp_massive` or `uv run --with`. These commands download dependencies on every cold start, which can c

Preview

massive-com/mcp_massivemassive-com/mcp_massive
Repomassive-com/mcp_massive
TypeMCP Servers
CategoryFinance & Trading
UpdatedJun 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPcryptocurrencyfintech

Related

6 picks
Type
  1. jerbouma avatarfinancetoolkit200+ transparent financial metrics calculated from raw statements, not third-party endpoints.MCP ServersJul 202661k5.2k
  2. financial-datasets avatarmcp-serverAn MCP server for interacting with the Financial Datasets stock market API.MCP ServersJun 202556k2.2k
  3. quantconnect avatarmcp-serverPython MCP server for local interactions with the QuantConnect API.MCP ServersMay 202656k78
  4. alpacahq avataralpaca-mcp-serverAlpaca Trading API integration for Model Context Protocol (MCP). V2 generates 60+ tools directly from Alpaca's OpenAPI specs using FastMCP.MCP ServersJul 202643k891
  5. getnable avatarfinopsmcpSee where your cloud and AI bills go, and spend less. Local-first, in your terminal or editor.MCP ServersJul 202616k14
  6. xeroapi avatarxero-mcp-serverMCP server implementation for Xero integrationMCP ServersJun 202614k342