quiver-quant-mcp
Enables querying alternative financial data including congressional trades, insider transactions, government contracts, and WallStreetBets activity through the Quiver Quantitative API.
README
Quiver Quantitative MCP
A Model Context Protocol (MCP) server for the Quiver Quantitative alternative-data API, built on FastMCP.
It exposes 16 tools covering congressional trading, SEC Form 4 insider transactions, government contracts, lobbying, r/WallStreetBets activity, off-exchange (dark-pool) short volume, and 13F institutional changes.
⚠️ Not investment advice. Datasets are provided for research and transparency only.
Authentication
Quiver uses a token header: Authorization: Token <YOUR_TOKEN>.
Some live feeds are currently open (work with no token); most datasets require a key:
| Tool | Dataset | Token |
|---|---|---|
congress_trading_recent |
Live congressional trades (all members) | — |
congress_trading_by_ticker |
Congressional trades for one ticker | — |
insider_trading_recent |
Live SEC Form 4 firehose (all tickers) | — |
insider_trading_by_ticker |
Form 4 for one ticker | ✅ |
gov_contracts_recent / _by_ticker |
US government contract awards | ✅ |
lobbying_recent / _by_ticker |
Corporate lobbying disclosures | ✅ |
wallstreetbets_recent / _by_ticker |
r/WallStreetBets mention activity | ✅ |
offexchange_recent / _by_ticker |
Off-exchange / dark-pool short volume | ✅ |
sec13f_changes_recent |
Changes in 13F institutional holdings | ✅ |
house_trading_recent |
US House trades | ✅ |
senate_trading_recent |
US Senate trades | ✅ |
quiver_status |
Reports token status + which datasets are open | — |
Token-gated tools return a clear "set QUIVER_API_TOKEN" message when no key is configured, so the open datasets remain usable immediately. Get a key at https://www.quiverquant.com/.
Setup
cd quiver-quant-mcp
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .env # then edit .env and paste your token
🍏 Apple Silicon note: install with the virtual-env's own
pip(as above), not a Rosetta/x86_64uv, or native wheels (e.g.pydantic-core) can fail to load with an "incompatible architecture" error.
Set your token in .env:
QUIVER_API_TOKEN=your_token_here
It also runs dependency-free via uv thanks to inline
PEP 723 metadata:
uv run quiver_quant_mcp.py
Claude Desktop configuration
Add to claude_desktop_config.json, using absolute paths. The server reads the token
from its own .env, so the env block can stay empty:
{
"mcpServers": {
"quiver-quant": {
"command": "/absolute/path/to/quiver-quant-mcp/.venv/bin/python",
"args": ["/absolute/path/to/quiver-quant-mcp/quiver_quant_mcp.py"],
"env": {}
}
}
}
Restart Claude Desktop.
Usage examples
- "What congressional trades came in today?" →
congress_trading_recent - "Show me every congressional trade in NVDA." →
congress_trading_by_ticker - "Any recent insider buying at TSLA?" →
insider_trading_by_ticker(needs token) - "Which companies just won government contracts?" →
gov_contracts_recent(needs token) - "What's trending on WallStreetBets?" →
wallstreetbets_recent(needs token) - "Is my token set up?" →
quiver_status
Testing
python test_quiver.py
Offline tests cover the result-trimming helper, auth-header construction (with/without a
token), the token-hint messaging, quiver_status, and tool registration. No network needed.
The open endpoints (congress_trading_recent, congress_trading_by_ticker,
insider_trading_recent) can be smoke-tested live with no token.
Notes
limit(1–1000, default 100) trims results client-side; each tool also reportstotal.insider_trading_recentis a large firehose — preferinsider_trading_by_ticker(token) or a smalllimitfor targeted work.- A few Quiver datasets exposed elsewhere (per-ticker 13F, Wikipedia views, "off the radar" spikes) are intentionally omitted because their API paths could not be confirmed; only verified endpoints are wired up.
- Please respect Quiver Quantitative's API terms and rate limits.
Credits
Data: Quiver Quantitative. This is an independent Python/FastMCP client and is not affiliated with or endorsed by Quiver Quantitative.
License
MIT — see LICENSE if included. Quiver data remains subject to Quiver's terms of use.
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.