by voxlink-org
Get real-time market data, technical indicators like relative strength index, and yahoo stocks finance insights for smar
Provides comprehensive financial analysis by retrieving real-time market data, financial statements, earnings history, options analysis, and market sentiment indicators from sources like Yahoo Finance and FRED.
Finance Tools is a community-built MCP server published by voxlink-org that provides AI assistants with tools and capabilities via the Model Context Protocol. Get real-time market data, technical indicators like relative strength index, and yahoo stocks finance insights for smar It is categorized under finance, analytics data. This server exposes 17 tools that AI clients can invoke during conversations and coding sessions.
You can install Finance Tools in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport. This server supports remote connections over HTTP, so no local installation is required.
MIT
Finance Tools is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Strong directory entry: Finance Tools surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Finance Tools has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Strong directory entry: Finance Tools surfaces stars and publisher context so we could sanity-check maintenance before adopting.
We wired Finance Tools into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
I recommend Finance Tools for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Finance Tools reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
I recommend Finance Tools for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Finance Tools is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Finance Tools is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
I recommend Finance Tools for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
showing 1-10 of 55
The finance-tools-mcp is a Model Context Protocol (MCP) server designed to provide comprehensive financial insights and analysis capabilities to Large Language Models (LLMs). Modified from investor-agent, it integrates with various data sources and analytical libraries to offer a suite of tools for detailed financial research and analysis.
<a href="https://glama.ai/mcp/servers/@VoxLink-org/finance-tools-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@VoxLink-org/finance-tools-mcp/badge" alt="Finance Tools MCP server" /> </a>First, install uv if you haven't already:
curl -LsSf https://astral.sh/uv/install.sh | sh
Ensure uv is in your system's PATH. You might need to restart your terminal or add ~/.cargo/bin to your PATH.
Then, you can run the finance-tools-mcp MCP server using uvx (which executes a package without explicitly installing it into your environment):
uvx finance-tools-mcp
To run the server with a FRED API key (for enhanced macroeconomic data access), set it as an environment variable:
FRED_API_KEY=YOUR_API_KEY uvx finance-tools-mcp
You can also run the server using Server-Sent Events (SSE) transport, which might be preferred by some MCP clients:
uvx finance-tools-mcp --transport sse
Or with both the FRED API key and SSE transport:
FRED_API_KEY=YOUR_API_KEY uvx finance-tools-mcp --transport sse
To integrate finance-tools-mcp with an MCP client (for example, Claude Desktop), add the following configuration to your claude_desktop_config.json:
{
"mcpServers": {
"investor": {
"command": "path/to/uvx/command/uvx",
"args": ["finance-tools-mcp"],
}
}
}
You can leverage the MCP inspector to debug the server:
npx @modelcontextprotocol/inspector uvx finance-tools-mcp
or
npx @modelcontextprotocol/inspector uv --directory ./ run finance-tools-mcp
For log monitoring, check the following directories:
~/Library/Logs/Claude/mcp*.log%APPDATA%\Claude\logs\mcp*.logFor local development and testing:
{
"mcpServers": {
"investor": {
"command": "path/to/uv/command/uv",
"args": ["--directory", "path/to/finance-tools-mcp", "run", "finance-tools-mcp"],
}
}
}
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.