Polygon-io MCP Server
Polygon-io MCP Server
README
<a href="https://polygon.io"> <div align="center"> <picture> <source media="(prefers-color-scheme: light)" srcset="assets/polygon_banner_lightmode.png"> <source media="(prefers-color-scheme: dark)" srcset="assets/polygon_banner_darkmode.png"> <img alt="Polygon.io logo" src="assets/polygon_banner_lightmode.png" height="100"> </picture> </div> </a> <br>
[!IMPORTANT]
:test_tube: This project is experimental and could be subject to breaking changes.
Polygon.io MCP Server
A Model Context Protocol (MCP) server that provides access to Polygon.io financial market data API through an LLM-friendly interface.
Overview
This server exposes all Polygon.io API endpoints as MCP tools, providing access to comprehensive financial market data including:
- Stock, options, forex, and crypto aggregates and bars
- Real-time and historical trades and quotes
- Market snapshots
- Ticker details and reference data
- Dividends and splits data
- Financial fundamentals
- Market status and holidays
Installation
Prerequisites
- Python 3.10+
- A Polygon.io API key <br> [![Button]][Link]
- Astral UV
- For existing installs, check that you have a version that supports the
uvxcommand.
- For existing installs, check that you have a version that supports the
Claude Code
First, install Claude Code
npm install -g @anthropic-ai/claude-code
Use the following command to add the Polygon MCP server to your local environment.
This assumes uvx is in your $PATH; if not, then you need to provide the full
path to uvx.
# Claude CLI
claude mcp add polygon -e POLYGON_API_KEY=your_api_key_here -- uvx --from git+https://github.com/polygon-io/mcp_polygon@v0.1.0 mcp_polygon
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.
- Use the following example as reference to add Polygon's MCP server.
Make sure you complete the various fields.
- Path find your path to
uvx, runwhich uvxin your terminal. - Replace
<your_api_key_here>with your actual Polygon.io API key. - Replace
<your_home_directory>with your home directory path, e.g.,/home/username(Mac/Linux) orC:\Users\username(Windows).
- Path find your path to
<details> <summary>claude_desktop_config.json</summary>
{
"mcpServers": {
"polygon": {
"command": "<path_to_your_uvx_install>/uvx",
"args": [
"--from",
"git+https://github.com/polygon-io/mcp_polygon@v0.1.0",
"mcp_polygon"
],
"env": {
"POLYGON_API_KEY": "<your_api_key_here>",
"HOME": "<your_home_directory>"
}
}
}
}
</details>
Usage Examples
Once integrated, you can prompt Claude to access Polygon.io 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
Available Tools
This MCP server implements all Polygon.io API endpoints as tools, including:
get_aggs- Stock aggregates (OHLC) data for a specific tickerlist_trades- Historical trade dataget_last_trade- Latest trade for a symbollist_ticker_news- Recent news articles for tickersget_snapshot_ticker- Current market snapshot for a tickerget_market_status- Current market status and trading hourslist_stock_financials- Fundamental financial data- And many more...
Each tool follows the Polygon.io SDK parameter structure while converting responses to standard JSON that LLMs can easily process.
Development
Running Locally
Check to ensure you have the Prerequisites installed.
# Sync dependencies
uv sync
# Run the server
POLYGON_API_KEY=your_api_key_here uv run mcp_polygon
<details> <summary>Local Dev Config for claude_desktop_config.json</summary>
"mcpServers": {
"polygon": {
"command": "/your/path/.cargo/bin/uv",
"args": [
"run",
"--with",
"/your/path/mcp_polygon",
"mcp_polygon"
],
"env": {
"POLYGON_API_KEY": "your_api_key_here",
"HOME": "/Users/danny"
}
}
}
</details>
Debugging
For debugging and testing, we recommend using the MCP Inspector:
npx @modelcontextprotocol/inspector uv --directory /path/to/mcp_polygon run mcp_polygon
This will launch a browser interface where you can interact with your MCP server directly and see input/output for each tool.
Links
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.
<!-----------------------------------------------------------------------------> [Link]: https://polygon.io/?utm_campaign=mcp&utm_medium=referral&utm_source=github 'Polygon.io Home Page' <!---------------------------------[ Buttons ]---------------------------------> [Button]: https://img.shields.io/badge/Get_One_For_Free-5F5CFF?style=for-the-badge&logoColor=white
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.