1. Call the demo tool
Use sec_demo_latest_filings without a key to confirm the remote MCP endpoint and response shape.
MCP tool-call quickstart
A short setup path for MCP clients that have discovered the SEC
Filing MCP Server and need one public tools/call
request before choosing REST or hosted MCP production access.
curl -sS https://api.data-apis.com/mcp \
-H "Content-Type: application/json" \
--data '{"jsonrpc":"2.0","id":"demo-latest-filings","method":"tools/call","params":{"name":"sec_demo_latest_filings","arguments":{"limit":3}}}'
These checks are public and intentionally small. They let a buyer verify the remote MCP endpoint before sending production credentials.
Use sec_demo_latest_filings without a key to confirm the remote MCP endpoint and response shape.
Use sec_subscription_info to return pricing, REST checkout, hosted MCP access, and client-config links.
Send x-api-key or Authorization: Bearer only when calling production SEC filing tools.
The demo call returns a limited public sample and subscription handoff links. It does not require an API key.
{
"jsonrpc": "2.0",
"id": "demo-latest-filings",
"method": "tools/call",
"params": {
"name": "sec_demo_latest_filings",
"arguments": {
"limit": 3
}
}
}
The subscription-info call returns RapidAPI REST checkout, hosted MCP access, pricing, docs, and client configuration links.
curl -sS https://api.data-apis.com/mcp \
-H "Content-Type: application/json" \
--data '{"jsonrpc":"2.0","id":"subscription-info","method":"tools/call","params":{"name":"sec_subscription_info","arguments":{}}}'
After public setup succeeds, choose the access path that matches the client. REST usage goes through RapidAPI. Hosted MCP production tools use the remote MCP URL with buyer-controlled API-key headers.
REST checkoutSubscribe on RapidAPI for REST quotas and generated snippetsHosted MCP accessRequest hosted MCP access for production tool calls through https://api.data-apis.com/mcpClient configDownload Streamable HTTP configFull workflowDownload ordered JSON-RPC evaluation workflow