findata
MCP server from xBlueCode/findata-mcp-server
claude mcp add --transport stdio xbluecode-findata-mcp-server npx -y findata-mcp-server \ --env ALPHA_VANTAGE_API_KEY="PUT_YOUR_API_KEY_HERE"
How to use
This MCP server, findata, exposes access to the Alpha Vantage API so you can retrieve stock quotes and historical data to use as context for LLMs. It provides tools like getStockQuote to fetch the current quote for a given symbol and getHistoricalData to retrieve historical prices for daily, weekly, or monthly intervals. To use it, connect your MCP client (for example Claude Desktop) to the alphaVantage MCP server configuration and supply your Alpha Vantage API key. When invoked via your MCP client, the server will forward requests to Alpha Vantage and return structured data that can be consumed by the LLM.
How to install
Prerequisites: Node.js and npm installed on your system.
- Install the MCP server package via npm:
npm install findata-mcp-server
- If you prefer the Smithery install flow (recommended for Claude integration), install via Smithery:
npx -y @smithery/cli install findata-mcp-server --client claude
- Configure your MCP client to point at the server (example below) and provide your Alpha Vantage API key:
{
"mcpServers": {
"alphaVantage": {
"command": "npx",
"args": ["-y", "findata-mcp-server"],
"env": {
"ALPHA_VANTAGE_API_KEY": "PUT_YOUR_API_KEY_HERE"
}
}
}
}
- Start or initialize the server as appropriate for your deployment environment and verify the connection from your MCP client.
Additional notes
Notes & tips:
- You must provide a valid Alpha Vantage API key via the ALPHA_VANTAGE_API_KEY environment variable.
- Rate limits apply according to Alpha Vantage's terms; plan requests accordingly to avoid throttling.
- Supported tools include getStockQuote (current quote) and getHistoricalData (daily/weekly/monthly intervals) with optional output size controls.
- If using Smithery for installation, you can leverage the findata-mcp-server integration specifically for Claude clients.
- Ensure the MCP client configuration matches the server name (alphaVantage) and the command/args format shown in the example.
Related MCP Servers
zen
Selfhosted notes app. Single golang binary, notes stored as markdown within SQLite, full-text search, very low resource usage
MCP -Deepseek_R1
A Model Context Protocol (MCP) server implementation connecting Claude Desktop with DeepSeek's language models (R1/V3)
mcp-fhir
A Model Context Protocol implementation for FHIR
mcp
Inkdrop Model Context Protocol Server
mcp-appium-gestures
This is a Model Context Protocol (MCP) server providing resources and tools for Appium mobile gestures using Actions API..
dubco -npm
The (Unofficial) dubco-mcp-server enables AI assistants to manage Dub.co short links via the Model Context Protocol. It provides three MCP tools: create_link for generating new short URLs, update_link for modifying existing links, and delete_link for removing short links.