CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
little-grebe-inc avatar

Drillr — The financial MCP for AI agents

little-grebe-inc/drillr-mcp-server
5authHTTPregistry active
Summary

A financial research toolkit that pipes 90+ SQL tables, SEC filing search, and live market signals into your AI agent. You get standardized statements back to the 1980s, paragraph-cited 10-K/10-Q searches, earnings transcripts with structured summaries, and a cross-asset signal feed covering equities, macro, and alt-data for the AI value chain. Every MCP tool maps 1:1 to a REST endpoint, same key and billing. Runs over Streamable HTTP with Bearer auth. Use it when you need your agent to fact-check financial claims, compare margin dynamics across peers, or track insider moves without leaving the prompt loop. Ships with fiscal period helpers and schema inspection so the model can navigate tables autonomously.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

🌐 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.

License MCP Tools REST API Docs Issues

Browser sign-in. No API key to copy. 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

  1. Sign up at drillr.ai
  2. Add https://gateway.drillr.ai/mcp/data to an OAuth-capable MCP client
  3. Sign in and approve the named client in your browser. No secret is displayed or copied.

Claude Code

claude mcp add --scope user --transport http drillr \
  https://gateway.drillr.ai/mcp/data
claude mcp login drillr

Codex CLI

codex mcp add drillr --url https://gateway.drillr.ai/mcp/data

Codex starts browser sign-in during setup. For an existing entry, run codex mcp login drillr.

Claude Desktop / OAuth-capable hosts

{
  "mcpServers": {
    "drillr": {
      "type": "http",
      "url": "https://gateway.drillr.ai/mcp/data"
    }
  }
}

Restart the host after saving, then approve Drillr in the browser when prompted.

Cursor / VS Code

One click writes the server entry; your editor then signs you in through the browser.

Install in Cursor Install in VS Code

API-key fallback

Use this only for REST or an MCP host that does not support browser OAuth. Create an external key at drillr.ai/developer/keys, store it as a secret, and add:

"headers": { "Authorization": "Bearer <YOUR_DRILLR_API_KEY>" }
Hermes Agent fallback
mcp_servers:
  drillr:
    url: 'https://gateway.drillr.ai/mcp/data'
    headers: { Authorization: 'Bearer <YOUR_DRILLR_API_KEY>' }
Other hosts

Any MCP-compatible host uses the same Streamable HTTP endpoint. Omit headers and use browser OAuth whenever the host supports it; otherwise use the API-key fallback above. Never configure OAuth and a static bearer header on the same server entry.

Smithery fallback

npx -y @smithery/cli install drillr/drillr --client claude

Smithery offers the API key as an optional field. Leave it empty on an OAuth-capable client and sign in through the browser instead.

Listing: https://smithery.ai/servers/drillr/drillr

Claude Code plugin fallback

This repo doubles as its own single-plugin marketplace. From Claude Code:

/plugin marketplace add Little-Grebe-Inc/drillr-mcp-server
/plugin install drillr

The plugin installs the server without a key. Restart Claude Code, run /mcp, pick drillr, and choose Authenticate.

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:

  1. Your host routes the question to the drillr MCP server
  2. The agent picks the right tools — typically sec_report_search (10-Q content) and run_sql (financial_statements for margins)
  3. You get back a markdown answer with sources cited, typically in 8-15 seconds
  4. 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:

ToolPurpose
run_sqlStandardized financial data over 90+ tables — statements, ratios, earnings, insider, ownership, prices, alt-data
sec_report_searchParagraph-level semantic search across company filings in the US, Japan, Hong Kong, and China A-shares
sec_report_listList a ticker's indexed filings by filing type
company_searchFour-market qualitative discovery by business model, supply chain, peers, or theme
news_searchSemantic search over news, market events, and attributed claims, grouped into storylines
ticker_lookupResolve a company name, brand, or ticker substring to ticker history
list_tablesDiscover available alt-data SQL tables by category
get_table_schemaInspect columns and types for any SQL table
fiscal_utilityFiscal-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, and price_volume_history cover all four core markets; financial history reaches back to the 1980s
  • Company 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.

Discord WeChat
Drillr Discord QR Drillr WeChat group QR
Devs building agentic research products — office hours, debugging help, early access. Chinese-speaking dev community — fastest product feedback.

License

MIT — see LICENSE.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Categories
Data & Analytics
Registryactive
TransportHTTP
AuthRequired
UpdatedJun 4, 2026
View on GitHub

Related Data & Analytics MCP Servers

View all →
leandrogavidia avatar
Leandrogavidia Vechain Mcp Server

ai.smithery/leandrogavidia-vechain-mcp-server

Search VeChain documentation, query on-chain data, and fetch fee suggestions with direct links to…
5
aryan-jhaveri avatar
Statistics Canada MCP Server

aryan-jhaveri/mcp-statcan

Access Statistics Canada data via the Web Data Services API
5
pangolinfo avatar
Amazon Mcp

com.pangolinfo/amazon-mcp

Amazon data MCP: products, rankings, reviews, niches, WIPO & PACER IP, AI search & trends.
5
cyanheads avatar
Secedgar Mcp Server

cyanheads/secedgar-mcp-server

Query SEC EDGAR filings, XBRL financials, and company data through MCP. STDIO & Streamable HTTP.
5
mansurjisan avatar
NOAA CO-OPS MCP Server

io.github.mansurjisan/coops-mcp

NOAA CO-OPS tides, water levels, currents, and meteorological data
5
mansurjisan avatar
ERDDAP MCP Server

io.github.mansurjisan/erddap-mcp

Access ocean data from 80+ ERDDAP servers worldwide
5