Quiver MCP connects live financial and alternative data to your AI workflows through the Model Context Protocol. Works with Claude, Cursor, ChatGPT, and any MCP client.
Sign up for a Quiver API key. Choose from Hobbyist, Trader, or Commercial plans based on your data needs.
# Sign up at api.quiverquant.com/pricing/ # Copy your API key API_KEY=your-api-key-here
Add the Quiver MCP server URL to your AI client configuration. Works with Claude Code/Desktop, Cursor, VS Code, and any MCP-compatible client.
{
"mcpServers": {
"QuiverQuant MCP": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.quiverquant.com/",
"--header",
"Authorization:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Start querying market data in natural language. Your AI agent will automatically call the right MCP tools to fetch real-time market data.
User: "Are TSLA insiders buying or selling?"
AI Agent → get_insider_trading(ticker="TSLA")
Response Example:
[
{
"ticker": "TSLA",
"date": "2026-05-13",
"file_date": "2026-05-15",
"owner": "Taneja Vaibhav",
"transaction_type": "M",
"acquired_disposed": "A",
"shares": 2000.0,
"price": 18.22,
"shares_owned_after": 21106.5,
"officer_title": "Chief Financial Officer",
},
...
]
The recent TSLA insider activity is skewed toward selling. Here's the summary:
...
Get the catalog of every MCP tool and endpoint with descriptions and required tier.
search_datasets
query_quiver_api
Access data on politicians in Congress, including their trades, portfolios, net worth, legislation, and more.
get_congress_trades
get_congress_politicians
get_congress_portfolio_analysts
get_congress_legislation
Track government contracts, lobbying spend, and patent data for a given company.
get_gov_contracts
get_lobbying
get_patents
Get insider trading and institutional holdings data for companies via Form 4 and 13F filings.
get_insider_trading
get_institutional_holdings
Access company fundamentals and ownership data, including insider sentiment, 13F summaries, and top shareholders.
get_ticker_overview
get_ticker_ownership
Track off-exchange short volume and dark-pool intensity (DPI) by ticker.
get_dark_pool
Get comprehensive company insights by combining multiple datasets in a single call, and compare different companies side by side.
get_political_exposure
get_ticker_full_picture
compare_tickers