MCP Server
DeveloperGive your AI agent direct access to real-time 8-K filing intelligence via the Model Context Protocol. Works with Claude, GPT, and any MCP-compatible client.
Overview
https://api.8kintel.com/mcpAuthorization: Bearer YOUR_API_KEYClaude Desktop Configuration
Add this to your Claude Desktop claude_desktop_config.json:
{
"mcpServers": {
"8kintel": {
"url": "https://api.8kintel.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Available Tools
search_filingsSearch SEC 8-K filings by ticker symbol, category, and date range. Returns paginated filing summaries with AI analysis.
| Parameter | Type | Description |
|---|---|---|
| ticker | string | Stock ticker symbol (e.g., AAPL, TSLA) |
| category | string | Earnings, M&A, Leadership, Cyber, Financial, Governance, Other |
| limit | integer | Max results (default 10, max 50) |
| offset | integer | Pagination offset (default 0) |
get_filing_summaryGet the full AI-generated summary for a specific 8-K filing, including sentiment, key signals, and exhibit analysis.
| Parameter | Type | Description |
|---|---|---|
| filing_id | string | UUID of the filing required |
search_companiesSearch for companies by name or ticker symbol using trigram fuzzy matching.
| Parameter | Type | Description |
|---|---|---|
| query | string | Search query required |
| limit | integer | Max results (default 10, max 25) |
get_earnings_calendarGet upcoming earnings dates for SEC-filing companies within a date range.
| Parameter | Type | Description |
|---|---|---|
| days | integer | Days ahead to look (default 7, max 30) |
| limit | integer | Max results (default 20, max 100) |
| offset | integer | Pagination offset (default 0) |
watch_tickerAdd a stock ticker to the authenticated user's watchlist to receive real-time 8-K filing alerts.
| Parameter | Type | Description |
|---|---|---|
| ticker | string | Ticker to watch (e.g. AAPL) required |
Example: Using with Claude
Once configured, Claude can use 8K Intel tools directly in conversation:
User
"What are the latest 8-K filings for Tesla?"
Claude
Using tool: search_filings({ticker: "TSLA"})
Here are Tesla's recent 8-K filings: The most recent filing from March 12 reports Q4 deliveries of 495,570 vehicles, beating analyst estimates by 3%. Sentiment is bullish with guidance maintained for FY2026...
JSON-RPC Protocol
The MCP server uses standard JSON-RPC 2.0. All requests are HTTP POST to the endpoint. Here's the raw request flow:
POST /mcp HTTP/1.1
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{
"jsonrpc": "2.0",
"id": 1,
"method": "initialize",
"params": {}
}
// Response:
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"protocolVersion": "2024-11-05",
"serverInfo": { "name": "8kintel", "version": "1.0.0" },
"capabilities": { "tools": {} }
}
}{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/list",
"params": {}
}{
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "search_filings",
"arguments": { "ticker": "AAPL", "limit": 5 }
}
}