drillr-mcp-server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@drillr-mcp-serverGet the latest earnings report for AAPL"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
π English Β· δΈζ
Drillr Β· The Financial Research Data Backend for Agents
The financial MCP for AI agents. Scan markets. Build conviction. Track every signal. Cite every claim.
One API key. Nine tools for agent research: standardized financial data, company discovery, semantic news and event search, paragraph-cited company filings, and alt-data.
β If drillr helps your agent, star us β that's how we know to keep building this in the open.
Quick Start
Sign up at drillr.ai
Get an
external-scope API key (formatdrl_xxxxxxxx_xxx..., 45 chars) at drillr.ai/developer/keys β you'll paste this into the config belowDrop into your host's mcp.json β one endpoint exposes all the tools below.
Option A: Manual mcp.json (any MCP host β recommended)
Claude Code / Claude Agent SDK / Cursor / VS Code
{
"mcpServers": {
"drillr": {
"type": "http",
"url": "https://gateway.drillr.ai/mcp/data",
"headers": { "Authorization": "Bearer <YOUR_DRILLR_API_KEY>" }
}
}
}β οΈ Replace
<YOUR_DRILLR_API_KEY>(including the angle brackets) with thedrl_*key you got in step 2. Power users on Claude Code / Cursor / VS Code can use${DRILLR_API_KEY}instead andexport DRILLR_API_KEY=drl_...in the shell launching the host.
For Cursor, paste the block into ~/.cursor/mcp.json. For VS Code (GitHub Copilot Chat), run MCP: Add Server from the Command Palette and paste the block. Or use one-click install:
After install, replace ${DRILLR_API_KEY} in the generated config with your real drl_* key.
Hermes Agent
mcp_servers:
drillr:
url: 'https://gateway.drillr.ai/mcp/data'
headers: { Authorization: 'Bearer <YOUR_DRILLR_API_KEY>' }Other hosts
Any MCP-compatible host (OpenClaw, ChatGPT MCP, etc.) β same Streamable HTTP transport. A Bearer API key is the recommended setup. Clients with MCP OAuth support can instead omit the headers block and complete the browser sign-in flow.
Option B: Smithery one-line
npx -y @smithery/cli install drillr/drillr --client claudeSmithery prompts for your drl_* API key on first install and writes it into your client's mcp.json automatically.
Listing: https://smithery.ai/servers/drillr/drillr
Option C: Claude Code plugin
This repo doubles as its own single-plugin marketplace. From Claude Code:
/plugin marketplace add Little-Grebe-Inc/drillr-mcp-server
/plugin install drillrThen set DRILLR_API_KEY in your environment (or paste it into the generated config) and you're done.
Related MCP server: Equibles
Hello World
Once configured, ask your agent something like:
"Pull NVDA's last 10-Q gross margin and compare it to AMD's same quarter β flag any divergence in segment mix."
What happens under the hood:
Your host routes the question to the
drillrMCP serverThe agent picks the right tools β typically
sec_report_search(10-Q content) andrun_sql(financial_statements for margins)You get back a markdown answer with sources cited, typically in 8-15 seconds
Check your remaining credit balance at drillr.ai/developer/keys; REST clients additionally get an inline
{ "data": ..., "_credits": ... }envelope on every 2xx (see REST API βΊ Response Envelope) β MCP responses follow standard JSON-RPC and do not carry per-call credit info inline
One Toolkit, 9 Tools
drillr exposes a single MCP endpoint with 9 tools β an all-in-one toolkit for most financial research workflows:
Tool | Purpose |
| Standardized financial data over 90+ tables β statements, ratios, earnings, insider, ownership, prices, alt-data |
| Paragraph-level semantic search across company filings in the US, Japan, Hong Kong, and China A-shares |
| List a ticker's indexed filings by filing type |
| Four-market qualitative discovery by business model, supply chain, peers, or theme |
| Semantic search over news, market events, and attributed claims, grouped into storylines |
| Resolve a company name, brand, or ticker substring to ticker history |
| Discover available alt-data SQL tables by category |
| Inspect columns and types for any SQL table |
| Fiscal-period helpers (FY/FQ resolution across companies with non-calendar years) |
Full tool reference: docs/tools.md.
What's Covered
Core equity coverage: US, Japan, Hong Kong, and China A-shares. Ticker formats:
AAPL,6758.T,00700.HK,600519.SH/300750.SZ.Ontology-based Company Search: Search over the universe of equities with business model descriptions, supply chain positions, growth vector or thematic fit.
Fundamentals:
financial_statements,company_snapshot, andprice_volume_historycover all four core markets; financial history reaches back to the 1980sCompany filings: SEC EDGAR, Japan EDINET, HKEX, and China A-share reports with paragraph-level semantic search
Earnings: call transcripts with AI-structured summaries and estimate-vs-actuals history; this specialized dataset covers US + Japan
Markets: equities, ETFs, indices, forex, crypto, commodities
Specialized US datasets: analyst ratings, ownership, executives, 8-K events, and extended-hours quotes
News + events: continuously updating four-market and cross-asset search with story grouping and attributed claims
AI value chain alt-data: energy & power, data centers, semiconductors, compute pricing, AI models / companies / benchmarks, LLM token pricing, macro & trade, prediction markets, critical minerals
Full data dictionary: docs/tools.md.
REST API
Every MCP tool has a 1:1 REST endpoint. Same drl_* key, same data, same billing. See docs/rest-api.md.
curl -X POST https://gateway.drillr.ai/api/v1/data/run_sql \
-H "Authorization: Bearer $DRILLR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"sql":"SELECT ticker, close FROM price_volume_history WHERE ticker='\''AAPL'\'' AND time_frame='\''daily'\'' ORDER BY period_end DESC LIMIT 5"}'Out of Scope
We're upfront about edges so your agent doesn't waste research loops:
Private / unlisted companies (we cover public-listed only)
On-chain crypto metrics β we have CEX prices (BTCUSD / ETHUSD / SOLUSD etc.), not TVL / holders / wallets
Options chains, real-time order book, intraday tick data
Retail brokerage actions (placing orders, managing positions)
drillr does not produce its own price forecasts β we surface analyst consensus
Community
Building something with drillr, hit a rough edge, or want early-access drops? Come say hi β scan to join, or click the heading link.
License
MIT β see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Little-Grebe-Inc/drillr-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server