For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Contact SalesGet Support
HomeGuidesAPI reference
HomeGuidesAPI reference
  • Get started
    • Quickstart—Verify a Business
    • Quickstart—Register an entity for payroll taxes
    • Learn how Middesk works
    • Security
    • Changelog
  • Build with Middesk
    • Get your API keys
    • Understand API changes
    • Status codes and errors reference
    • Implement webhooks
    • Secure webhooks
    • Use GraphQL
    • Connect MCP
  • Verify a business (KYB)
    • Verify TIN
    • Verify name and address
    • Verify Secretary of State status
    • Verify owners and officers
    • Screen for sanctions and watchlists
    • Search for adverse media
    • Search for Politically Exposed Persons
    • Implement KYC
    • Discover connections
    • Evaluate online presence
    • Assess credit risk
    • Accelerate onboarding
    • Monitor business activity
    • Manage business entities
    • Work with agents
LogoLogo
Contact SalesGet Support
On this page
  • Install the MCP server for Claude
  • Install the MCP server for other MCP-compatible tools
  • Configure with an API key
Build with Middesk

Connect to Middesk's MCP server

Was this page helpful?
Previous

Verify a business (KYB)

Address your risk and compliance needs by verifying business information, screening for sanctions, performing Know Your Customer (KYC) checks, and more.

Next
Built with

The Model Context Protocol (MCP) server enables compatible AI models and agents to securely access Middesk data. The server supports both Server-Sent Events (SSE) and Streamable HTTP transports with OAuth 2.1 authentication.

Middesk provides two transport endpoints:

  • SSE, https://mcp.middesk.com/sse
  • HTTP, https://mcp.middesk.com/mcp

Install the MCP server for Claude

Installation steps vary on the version of Claude.

Claude Team or Enterprise (Claude.ai)
Claude Desktop (Free or Pro)
  1. Navigate to Settings > Integrations.
  2. Click Add more.
  3. Enter Middesk as the integration name.
  4. Enter the URL: https://mcp.middesk.com/sse
  5. Enable the tools in new chats.

Install the MCP server for other MCP-compatible tools

The mcp-remote module provides backwards compatibility with clients that do not natively support remote MCP. This enables a wider range of AI tools and agents to connect to Middesk data.

$npx -y mcp-remote https://mcp.middesk.com/sse

Configure with an API key

For clients that support Streamable HTTP, you can configure the MCP server directly with an API key instead of using OAuth:

1{
2 "mcpServers": {
3 "middesk": {
4 "url": "https://mcp.middesk.com/mcp",
5 "headers": {
6 "Authorization": "Bearer mk_live_your_api_key"
7 }
8 }
9 }
10}

Replace mk_live_your_api_key with your Middesk API key. See Get and use your API keys to obtain your key.

Get a demo
Contact your account manager or contact sales to inquire about access.