# Toolstem SEC EDGAR Signal Intelligence

> Toolstem SEC EDGAR Signal Intelligence is a paid API for AI agents from mcp.toolstem.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Retrieves SEC EDGAR filings, insider transactions, and scores 8-K event severity for publicly traded companies

## Facts

- Endpoint: POST https://mcp.toolstem.com/mcp/sec
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mcp-toolstem-com-84043574
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sYSqAaozNRvIw7KbyVHJq

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability mcp-toolstem-com-84043574 -d '<json body>'
```

Example prompt: Pull the latest SEC filings for Tesla (TSLA), flag any recent insider transactions, and give me a severity score for their most recent 8-K filing.

## When to prefer this

Use this endpoint when you need structured SEC regulatory data including filing history, insider transaction intelligence, and quantified 8-K event severity scoring — especially when you want signal-scored analysis rather than raw document retrieval.

## Known failure modes

- Unknown ticker or CIK returns empty results or error
- SEC EDGAR rate limiting causing delayed responses
- Malformed filing type parameter returns validation error
- No filings found in specified date range
- Payment failure due to insufficient USDC balance

## How this service works

Toolstem SEC EDGAR Signal Intelligence MCP — filings, insider transactions, 8-K severity scoring. Per-tool tiered pricing ($0.005–$0.50).

## Output

Returns structured data including SEC filings (10-K, 10-Q, 8-K, Form 4, etc.), insider transaction records, and a severity score for 8-K material events for the queried company.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "jsonrpc": {
       "type": "string",
       "description": "JSON-RPC protocol version, must be \"2.0\"."
      },
      "id": {
       "type": "number",
       "description": "Client-chosen request id echoed in the response."
      },
      "method": {
       "type": "string",
       "description": "MCP method — typically \"tools/call\", or \"initialize\"/\"tools/list\" for discovery."
      },
      "params": {
       "type": "object",
       "description": "MCP method params. For tools/call: { name, arguments }."
      }
     },
     "required": [
      "jsonrpc",
      "method",
      "id"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mcp-toolstem-com-84043574/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp.toolstem.com](https://www.zero.xyz/host/mcp.toolstem.com/llms.txt)
