Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.getmaito.com/llms.txt

Use this file to discover all available pages before exploring further.

MCP Client Setup

This guide shows how to connect remote MCP clients to Maito.

Endpoint

https://mcp.getmaito.com/mcp
Auth is handled through OAuth 2.1 via Clerk. Clients that support remote MCP servers should discover the OAuth metadata and open the browser consent flow.

Generic JSON-RPC Client Checklist

  1. Add the remote MCP URL.
  2. Let the MCP client detect OAuth support.
  3. Complete the browser authorization flow.
  4. After authorization, the client can call initialize, tools/list, and tools/call.

Claude Code

claude mcp add maito --transport http https://mcp.getmaito.com/mcp

Codex

codex mcp add maito --url https://mcp.getmaito.com/mcp

VS Code / Copilot

Use the MCP server configuration format supported by your installed VS Code version. The remote entry should point to:
{
  "servers": {
    "maito": {
      "type": "http",
      "url": "https://mcp.getmaito.com/mcp"
    }
  }
}

Cursor

Go to Cursor settings, open MCP settings, add a new remote MCP server, and use:
https://mcp.getmaito.com/mcp

Claude Desktop

Use Claude Desktop’s MCP server integration UI and add the remote URL:
https://mcp.getmaito.com/mcp

ChatGPT Connectors

Add a custom connector if your workspace supports remote MCP connectors and use:
https://mcp.getmaito.com/mcp

Scope

For now, Maito supports remote MCP over Streamable HTTP only.