AI-native access to financial data: SEC filings, earnings, peer comparisons, and screening for 5,500+ US companies.
Free tier: 500 credits/day, no signup required. OAuth creates your account automatically.
Add this server to your MCP client. Auth is handled automatically — no manual setup needed.
Add to .mcp.json in your project root:
{
"mcpServers": {
"metricduck": {
"type": "http",
"url": "https://mcp.metricduck.com/mcp"
}
}
}
Or via CLI: claude mcp add --transport http -s project metricduck https://mcp.metricduck.com/mcp
Add to claude_desktop_config.json:
{
"mcpServers": {
"metricduck": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.metricduck.com/mcp"]
}
}
}
Add https://mcp.metricduck.com/mcp as a remote MCP server in your MCP settings.
Use an API key instead of OAuth. Get your key at metricduck.com/dashboard/api-keys:
{
"mcpServers": {
"metricduck": {
"type": "http",
"url": "https://mcp.metricduck.com/mcp",
"headers": {
"Authorization": "Bearer fda_your_api_key_here"
}
}
}
}
Note: MCP clients handle authentication and transport automatically. Do not manually call this endpoint with curl or raw HTTP — MCP uses Streamable HTTP, not simple JSON-RPC POST.