FinvizMCP
An MCP server that exposes Finviz stock screening, fundamentals, news, and market data as tools for MCP clients like Claude Code and Claude Desktop.
README
FinvizMCP
A Model Context Protocol (MCP) server that exposes Finviz stock screening, fundamentals, news, and market data as tools for MCP clients such as Claude Code and Claude Desktop.
Detached fork of
tradermonty/finviz-mcp-server, maintained here for personal use.
Features
~40 tools across:
- Screeners — uptrend, volume surge, trend reversion, dividend growth, ETF, technical analysis, earnings (pre-market / after-hours / upcoming), and a fully custom screener.
- Fundamentals — single or batch stock fundamentals (70+ fields).
- News — market, sector, and stock-specific news.
- Market analysis — sector, industry, country, and capitalization performance; market overview; relative volume.
- SEC / EDGAR — company filings, facts, concepts, and insider transactions.
Requirements
- Python 3.11+
- A Finviz Elite subscription + API key (required for full functionality)
Setup
git clone https://github.com/Psichico/FinvizMCP.git
cd FinvizMCP
python -m venv venv
venv\Scripts\activate # Windows
# source venv/bin/activate # macOS / Linux
pip install -e .
Create a .env file in the project root (it is gitignored — never commit your key):
FINVIZ_API_KEY=your_finviz_elite_api_key_here
LOG_LEVEL=INFO
RATE_LIMIT_REQUESTS_PER_MINUTE=100
Running
finviz-mcp-server # stdio MCP server
The process starts and waits for an MCP client to connect over stdio (no output is expected on its own).
Connecting to Claude Code
Add an .mcp.json at your client's project root:
{
"mcpServers": {
"finviz": {
"command": "C:\\path\\to\\FinvizMCP\\venv\\Scripts\\finviz-mcp-server.exe",
"args": [],
"cwd": "C:\\path\\to\\FinvizMCP",
"env": {
"LOG_LEVEL": "INFO",
"RATE_LIMIT_REQUESTS_PER_MINUTE": "100"
}
}
}
}
The FINVIZ_API_KEY is read from .env (via cwd), so it stays out of the committed config. Restart the client and approve the finviz server when prompted.
License
See LICENSE.
Credits
Built on tradermonty/finviz-mcp-server.
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.