Model Context Protocol (MCP)
Access Registercheck’s company data through AI agents with our Model Context Protocol implementation.
Overview
Registercheck provides a Model Context Protocol (MCP) server that automatically converts our entire API into AI-accessible tools. This enables AI agents like Claude Desktop to seamlessly interact with German company registry data through natural language.
Our MCP server auto-generates 23 tools from our OpenAPI specification, providing access to company search, detailed information, shareholder data, financial reports, and more.
AI Plugin Discovery
AI agents can automatically discover our MCP server through the standard manifest:
Response:
Authentication
All MCP tools require Bearer token authentication, same as our regular API:
Available Tools
Tool Discovery
List all available MCP tools:
Response includes 23 auto-generated tools:
- Company search and details
- Person search and details
- Shareholder information
- Investment data
- Contact information
- Financial reports
- Company history
- List management
Tool Execution
Execute any tool through the universal invoke endpoint:
Usage Examples
Company Search
AI Request: “Find technology companies in Munich”
MCP Tool Call:
Response:
Company Details
AI Request: “Get detailed information about this company including management and financials”
MCP Tool Call:
Response:
Investment Analysis
AI Request: “Show me all companies that Siemens has invested in”
MCP Tool Call:
Error Handling
Authentication Errors
Tool Not Found
API Errors
Use Cases
Business Intelligence
- Competitive Analysis: Find and analyze competitors in specific markets
- Market Research: Identify trends and opportunities by sector/region
- Due Diligence: Comprehensive company background checks
Investment Research
- Portfolio Analysis: Track investment relationships and ownership structures
- Deal Sourcing: Identify potential investment targets
- Risk Assessment: Analyze company financials and management
Sales & Marketing
- Lead Generation: Find prospects based on specific criteria
- Account Research: Deep dive into potential customers
- Market Segmentation: Understand market structure and players
Compliance & Legal
- KYC/AML: Know Your Customer due diligence
- Regulatory Compliance: Track corporate structure changes
- Legal Research: Understand business relationships and ownership
Rate Limits
MCP tools inherit the same rate limits as our standard API:
- Free tier: 100 requests/day
- Professional: 10,000 requests/day
- Enterprise: Custom limits
Best Practices
Efficient Tool Usage
- Use specific search criteria to reduce API calls
- Combine multiple tools for comprehensive analysis
- Cache results when possible for repeated queries
- Handle errors gracefully with retry logic
Authentication
- Secure token storage in environment variables
- Token rotation for long-running applications
- Error handling for expired tokens
Data Processing
- Structured analysis of returned company data
- Cross-reference multiple data points
- Temporal analysis using historical data
Technical Details
Architecture
Response Format
All MCP tools return a standardized response:
Tool Naming Convention
Tools follow the pattern: {operation}_{resource}_{method}
Examples:
search_companies_search_companies_get
get_company_details_companies__company_id__get
get_company_shareholders_companies__company_id__shareholders_get
MCP tools require valid API authentication. Ensure your Bearer tokens are kept secure and rotated regularly.