Connect to Middesk's MCP server

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.

  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.