An MCP server that provides tools to get the latest market data from the most trusted data sources.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"marketdatamcpserver": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MarketDataMcpServer is a Model Context Protocol (MCP) server that provides comprehensive market data for stocks, ETFs, cryptocurrencies, and economic indicators. It leverages multiple data providers like Alpha Vantage and CoinGecko to offer high-quality financial information to AI models.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in data / finance
Query and manage PostgreSQL databases directly from AI assistants
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Manage Supabase projects — databases, auth, storage, and edge functions
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
MCP Security Weekly
Get CVE alerts and security updates for MarketDataMcpServer and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MarketDataMcpServer is a Model Context Protocol (MCP) server that provides comprehensive market data for stocks, ETFs, cryptocurrencies, and economic indicators. It leverages multiple data providers like Alpha Vantage and CoinGecko to offer high-quality financial information to AI models.
The server is configured via environment variables. Create a .env file in the root directory:
# API Keys
ALPHA_VANTAGE_API_KEY=your_alpha_vantage_key
COIN_GECKO_API_KEY=your_coin_gecko_key
# Cache TTL (in seconds)
CACHE_TTL=3600
ALPHA_VANTAGE_CACHE_TTL=3600
COIN_GECKO_CACHE_TTL=3600
POLYMARKET_CACHE_TTL=300
Note: Polymarket's Gamma API is open and does not require an API key.
make install
Start the MCP server on port 8080:
make run_mcp_server
Build the binary:
make build_mcp_server
| Tool | Description |
|---|---|
stockSearch | Search for stock tickers based on keywords. |
etfSearch | Search for ETFs based on keywords. |
getETF | Get detailed information and holdings for a specific ETF. |
getSuperInvestors | List tracked institutional super investors. |
getSuperInvestorPortfolio | Get the portfolio holdings of a specific super investor. |
getMarketNews | Get the latest global market news. |
getSectors | Get a list of market sectors and their performance. |
getSectorStocks | Get the top stocks for a specific sector. |
getStockOverview | Get a comprehensive overview of a company (valuation, growth, etc.). |
getStockFinancials | Get financial statements (Income Statement, Balance Sheet, Cash Flow). |
getEconomicIndicatorTimeSeries | Get historical data for economic indicators (e.g., GDP, Inflation). |
getCommodityTimeSeries | Get historical data for commodities (e.g., Crude Oil, Natural Gas). |
searchCryptocurrencies | Search for cryptocurrencies on CoinGecko. |
getCryptocurrencyDataById | Get detailed real-time data for a specific cryptocurrency. |
getCryptocurrencyNews | Get the latest news related to cryptocurrencies. |
calculateInvestmentFutureValue | Calculate the future value of an investment based on initial amount, annual return, and years. |
getEarningsCallTranscript | Get the earnings call transcript of the stock with the given symbol, year, and quarter. |
getInsiderTransactions | Get the insider transactions of the stock with the given symbol and year. |
getCompanyKpiMetrics | Get the KPI metrics(revenue breakdown, revenue by geography etc) of the stock with the given symbol. |
getInvestingIdeas | Get all investing ideas/themes (e.g. AI, Clean Energy, etc.) |
getInvestingIdeaStocks | Returns the stocks(company name) for the given investing idea/theme id |
getCurrencyExchangeRate | Get the exchange rate between two currencies (USD, EUR, GBP, JPY, CHF, CAD, AUD, AED). |
| `getP |