by wshobson
MaverickMCP - Personal Stock Analysis MCP Server
# Add to your Claude Code skills
git clone https://github.com/wshobson/maverick-mcpLast scanned: 5/14/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-14T06:46:26.488Z",
"semgrepRan": false,
"npmAuditRan": true,
"pipAuditRan": true
}maverick-mcp is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by wshobson. MaverickMCP - Personal Stock Analysis MCP Server. It has 651 GitHub stars.
Yes. maverick-mcp passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/wshobson/maverick-mcp" and add it to your Claude Code skills directory (see the Installation section above).
maverick-mcp is primarily written in Python. It is open-source under wshobson on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh maverick-mcp against similar tools.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
MaverickMCP is a personal-use FastMCP server that provides financial data analysis, technical indicators, stock screening, and portfolio tracking tools to any MCP client -- Claude Desktop, Claude Code, Cursor, VS Code, Codex CLI, Antigravity CLI, OpenCode, and others. Built for individual traders and investors, it runs entirely on your own machine with no authentication or billing complexity.
Core tools need no API key: market data comes from yfinance. Two optional
extras add more: [backtesting] (VectorBT-powered strategy backtesting) and
[research] (LangGraph-based deep research, bring-your-own LLM key).
Self-hosting MaverickMCP means Python, uv, and MCP client config (Redis and a research LLM key are optional). If you just want the analysis, Capital Companion is the hosted product built on the same engine: AI technical analysis, trade-plan review sheets with outcome tracking, and price alerts. 25 free analyses, no credit card.
Self-hosting instructions continue below.
Key Benefits:
make dev gets the server running; no database
migrations, no seed scripts, no API key required for core tools.uv for fast dependency management.pip install/uv sync extras.yfinance, no API key required).[backtesting] extra): VectorBT engine, 12 rule-based
strategy templates plus 8 ML strategy classes, optimization, walk-forward
analysis, and Monte Carlo simulation.[research] extra): LangGraph-based deep research over
companies, sectors, and market sentiment, backed by Exa web search and a
bring-your-own LLM.# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
# Alternative: via pip
pip install uv
Note: v1.0.0 is not yet published to PyPI (registry rollout is in progress). Until it is, use Option 3 (from source). Options 1 and 2 are the intended usage once the package is published.
# Runs the published maverick-mcp-server package via uvx, invoking its
# maverick-mcp console script
uvx --from maverick-mcp-server maverick-mcp --transport stdio
pip install "maverick-mcp-server[backtesting,research]"
maverick-mcp --transport stdio
Drop [backtesting,research] for a smaller, core-only install (37 tools,
no backtesting/research tools registered).
# Clone the repository
git clone https://github.com/wshobson/maverick-mcp.git
cd maverick-mcp
# Install dependencies and create virtual environment in one command
uv sync --extra dev
# Or, for the full tool surface:
uv sync --extra dev --extra backtesting --extra research
# Copy environment template
cp .env.example .env
# Configure DATABASE_URL / LLM_PROVIDER / EXA_API_KEY as needed (all optional)
make dev # Streamable HTTP on http://localhost:8003/mcp
make dev-stdio # STDIO on this terminal
Clients configured for STDIO launch the server themselves -- you do not need
make dev running for those.
MaverickMCP is a standard MCP server with no client-specific behavior. Any client that speaks the Model Context Protocol can use it: Claude Desktop, Claude Code, GitHub Copilot, Codex CLI, Cursor, OpenCode, Antigravity CLI, and others.
Setup is one decision -- which transport -- followed by pasting the right config shape for your client.
| STDIO | Streamable HTTP | |
|---|---|---|
| Who starts the server | Your client, as a subprocess | You, via make dev |
| Endpoint | n/a | http://localhost:8003/mcp |
| Best for | A single local client | Several clients sharing one server, or remote access |
| Config shape | command + args |
url |
STDIO is the default and the simplest path for one local client. Use Streamable HTTP when several clients should share a single server process.
[!IMPORTANT] The HTTP endpoint has no trailing slash:
http://localhost:8003/mcp./mcp/returns a307redirect, and clients that do not follow redirects onPOSTwill fail to register tools.
| Client | STDIO | HTTP | Config location |
|---|---|---|---|
| Claude Desktop | Yes (incl. .mcpb) |
Via mcp-remote |
claude_desktop_config.json |
| Claude Code | Yes | Yes | claude mcp add |
| VS Code (Copilot) | Yes | Yes | .vscode/mcp.json |
| GitHub Copilot CLI | Yes | Yes | ~/.copilot/mcp-config.json |
| Codex CLI | Yes | Yes | ~/.codex/config.toml |
| Cursor | Yes | Yes | ~/.cursor/mcp.json |
| OpenCode | Yes | Yes | ~/.config/opencode/opencode.json |
| Antigravity CLI | Yes | Yes | ~/.gemini/config/mcp_config.json |
| Zed, LM Studio, Goose, Cline, Continue | Yes | Varies | Client-specific |
Clients not listed still work -- give them the STDIO command or the HTTP endpoint in whatever shape their config expects.
Full reference:
docs/runbooks/mcp-clients.mdcovers every client below in more depth, plus the.mcpbbundle, LAN binding, and per-client troubleshooting. The sections below are the common cases.
claude_desktop_config.json launches local STDIO servers only. Using the
published package via uvx (no checkout needed):
{
"mcpServers": {
"maverick-mcp": {
"command": "uvx",
"args": [
"--from",
"maverick-mcp-server",
"maverick-mcp",
"--transport",
"stdio"
]
}
}
}
Running from a local source checkout instead:
{
"mcpServers": {
"maverick-mcp": {
"command": "uv",
"args": [
"run",
"python",
"-m",
"maverick.server",
"--transport",
"stdio"
],
"cwd": "/path/to/maverick-mcp"
}
}
}
Config File Location:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAlways fully quit and restart Claude Desktop after making configuration changes.
[!WARNING] Do not paste
http://localhost:8003/mcpinto Claude Desktop's "custom connector" dialog. Custom connectors are brokered from Anthropic's cloud rather than from your machine, so they cannot reach your localhost. For Claude Desktop, local means STDIO or a.mcpbbundle (make bundle).
Claude Desktop's config file cannot express an HTTP server directly. To use the
HTTP transport there, bridge it with mcp-remote
(config). It is
the main client that still needs that bridge -- every client below speaks
Streamable HTTP natively, so do not wrap them in mcp-remote.
[!WARNING] Windows Claude Desktop Users Claude Desktop on Windows currently has a bug where it ignores the
"cwd"configuration parameter, which can cause the server to crash with aModuleNotFoundErrorwhen running viauv.To bypass this, wrap the command in
cmd.exeto force the directory change:"maverick-mcp": { "command": "cmd.exe", "args": [ "/c", "cd /d C:\\Path\\To\\maverick-mcp && uv run python -m maverick.server --transport stdio" ] }
# Streamable HTTP, against a running `make dev`
claude mcp add --transport http maverick-mcp http://localhost:8003/mcp
# STDIO. The `--` separator is required: without it, `claude mcp a