Daloopa MCP Server for Claude
Access high-quality fundamental financial data from SEC filings and investor presentations
Author
Daloopa
Added
2025-09-18
Setup time
2 minutes
Difficulty
beginner
Quick use
Install command
1 linesclaude mcp list && claude mcp status daloopaClaude config
.claude/settings.json
6 lines{
"daloopa": {
"url": "https://mcp.daloopa.com/server/mcp",
"transport": "http"
}
}Source asset
json
6 lines{
"daloopa": {
"url": "https://mcp.daloopa.com/server/mcp",
"transport": "http"
}
}Section
Content
Expand
Section
Content
Access comprehensive financial data and SEC filing information through Daloopa's curated database.
Section
Features
Expand
Section
Features
- Access SEC filing data and documents
- Retrieve financial statements and metrics
- Query investor presentations
- Analyze historical financial data
- Compare company metrics across periods
- Advanced Daloopa data extraction and automation with intelligent document parsing, spreadsheet analysis, and workflow automation
- Batch operations support for efficient bulk data extraction, processing, and transformation with automatic rate limit handling and retry logic
- Real-time data synchronization capabilities with webhook integration support for monitoring extraction jobs and triggering automated workflows
Section
Use Cases
Expand
Section
Use Cases
- Analyze quarterly earnings data
- Compare financial metrics across companies
- Build financial models with accurate data
- Track KPI trends over time
- Research investment opportunities
- Build automated data extraction workflows that sync external systems with Daloopa for real-time document processing and data transformation
Section
Installation
Expand
Section
Installation
Claude Code
- claude mcp add --transport http daloopa https://mcp.daloopa.com/server/mcp
- Verify installation: claude mcp list
- Test connection: claude mcp status daloopa
Claude CodeDetails
- claude mcp add --transport http daloopa https://mcp.daloopa.com/server/mcp
- Verify installation: claude mcp list
- Test connection: claude mcp status daloopa
Claude DesktopDetails
- Open Claude Desktop configuration file
- Add the Daloopa server configuration with HTTP transport
- Restart Claude Desktop
- Authenticate with your Daloopa account
Section
Requirements
Expand
Section
Requirements
- Daloopa account with active subscription
- Daloopa API key (obtained from Daloopa sales team - contact sales@daloopa.com)
- Internet connection for accessing Daloopa MCP server (https://mcp.daloopa.com/server/mcp)
- Claude Desktop 0.7.0+ or Claude Code with MCP support
- Understanding of SEC filings, financial statements, and financial metrics
- Knowledge of ticker symbols and company identifiers (e.g., AAPL, MSFT)
- Understanding of financial data formats (quarterly/annual periods, e.g., Q1 2024)
- HTTP transport support (remote MCP server, not local stdio)
- Awareness of subscription tier limitations (coverage universe, data availability dates)
- Understanding of pagination for large datasets and payload optimization
Section
Examples
Expand
Section
Examples
Get Apple's latest 10-K filing data
Common usage pattern for this MCP server
Get Apple's latest 10-K filing dataDetails
Common usage pattern for this MCP server
Ask Claude: "Get Apple's latest 10-K filing data"
Compare revenue growth across tech companiesDetails
Common usage pattern for this MCP server
Ask Claude: "Compare revenue growth across tech companies"
Extract key metrics from investor presentationDetails
Common usage pattern for this MCP server
Ask Claude: "Extract key metrics from investor presentation"
Show historical EBITDA marginsDetails
Common usage pattern for this MCP server
Ask Claude: "Show historical EBITDA margins"
Extract Data from DocumentDetails
Extract structured data from a document using Daloopa extraction templates
// Extract data from document using Daloopa
const result = await daloopa.extract({
document_url: "https://example.com/document.pdf",
extraction_template: "invoice",
fields: ["invoice_number", "date", "amount", "vendor"]
});
Section
Security
Expand
Section
Security
- OAuth authentication for access
- Respect data licensing agreements
- Monitor API usage limits
- Cache frequently accessed data
- Daloopa API keys and access tokens must be securely stored and never exposed in client-side code or public repositories - use environment variables and secure credential management
- Daloopa document URLs and extraction templates may expose data sources and extraction patterns - ensure Daloopa resource identifiers are kept private and not shared in public configurations
- Rate limiting and API quota management are critical for Daloopa MCP servers - implement proper rate limit handling, retry logic, and quota monitoring to prevent service disruption
- Daloopa webhook configurations and payloads may contain sensitive document data and extraction results - ensure webhook endpoints are properly secured with authentication and HTTPS encryption
- Daloopa extraction results may contain sensitive business data - ensure extraction results are properly secured and access-controlled according to data privacy requirements
Section
Troubleshooting
Expand
Section
Troubleshooting
Authentication error: API key invalid or missing
Add Authorization header with your API key to all requests. Contact Daloopa sales team to obtain or regenerate API key. Verify key is copied correctly without extra spaces or line breaks.
Authentication error: API key invalid or missingDetails
Add Authorization header with your API key to all requests. Contact Daloopa sales team to obtain or regenerate API key. Verify key is copied correctly without extra spaces or line breaks.
Company data not found or unavailableDetails
Verify ticker symbol is correct and company is in Daloopa coverage universe. Check your subscription tier includes access to requested company data. Contact Daloopa support for coverage questions.
Financial metrics missing for specific periodsDetails
Confirm company has filed SEC documents for requested period. Check data availability dates for your subscription tier. Verify quarter/year format matches API requirements (e.g., Q1 2024).
API requests timing out or running slowlyDetails
Reduce payload size by limiting fields returned in response. Implement pagination for large datasets. Check network connectivity and consider caching frequently accessed data locally.
Daloopa MCP server authentication errors with API keysDetails
Verify API key is valid and not expired. Check API key permissions match required operations. Ensure API key format is correct (Bearer token in Authorization header). Regenerate API key from Daloopa dashboard if needed.
Daloopa extraction job failures or timeoutsDetails
Check document format is supported (PDF, Excel, Word, etc.). Verify document is accessible and not password-protected. Ensure network connectivity is stable. For large documents, use chunked processing with resumable extraction support.
Daloopa MCP server rate limiting or throttling errorsDetails
Implement exponential backoff retry logic with jitter. Use Daloopa API rate limit headers to monitor usage. Reduce concurrent extraction requests. Cache frequently accessed extraction templates. Request rate limit increases from Daloopa support if needed.
Daloopa MCP server connection timeouts or network errorsDetails
Check network connectivity and firewall settings. Verify Daloopa API endpoints are accessible. Increase request timeout values. Implement connection pooling and retry mechanisms with exponential backoff.
0% complete