built by the makers of Gamut
Client setup

Use your favorite client.

Updated August 8, 2026

Remote-MCP-capable clients can all use the same endpoint: https://mcp.dialmcp.com/mcp. Add it, complete the OAuth sign-in, and verify your phone number.

Claude Code

claude mcp add --transport http dialmcp https://mcp.dialmcp.com/mcp
# Add --scope user to enable it in every project

Codex

Add this to ~/.codex/config.toml:

[mcp_servers.dialmcp]
url = "https://mcp.dialmcp.com/mcp"

Claude.ai or Claude Desktop

Open Settings → Connectors → Add custom connector, then paste https://mcp.dialmcp.com/mcp. Complete the browser sign-in when prompted.

Cursor

Add a remote server in Cursor's MCP settings with this URL:

{
  "mcpServers": {
    "dialmcp": {
      "url": "https://mcp.dialmcp.com/mcp"
    }
  }
}

VS Code

In the MCP configuration, use the HTTP server shape:

{
  "servers": {
    "dialmcp": {
      "type": "http",
      "url": "https://mcp.dialmcp.com/mcp"
    }
  }
}

Gamut

Open Settings → Connectors → Add MCP server, paste the endpoint, choose HTTP / OAuth, and complete SMS verification.

Clients without remote MCP support

Use the stdio bridge:

{
  "mcpServers": {
    "dialmcp": {
      "command": "npx",
      "args": ["-y", "dialmcp-connector"]
    }
  }
}

These examples mirror the open-source connector examples. After setup, review the tool reference before asking an agent to place a call.