Simply.com MCP Server

Integrate Simply.com directly into your AI-assistant via Model Context Protocol (MCP).

What is MCP?

Model Context Protocol (MCP) is an open standard that enables AI assistants like Claude, ChatGPT, and others to use external tools directly.

With Simply.com MCP Server your AI assistant can work directly with your Simply.com account and products.

Endpoints

Simply.com exposes two MCP interfaces on mcp.simply.com:

URL Authentication To
https://mcp.simply.com/public None Public, read‑only lookups (domain check, TLD list). Anyone can call these.
https://mcp.simply.com/v2 OAuth 2.1 Account and product operations on behalf of the authenticated user (products, DNS, MySQL etc.).

Transport: streamable-http

Access to the authenticated tools requires an OAuth 2.1 access token issued on behalf of a Simply.com user. The token provides access to the Simply.com user as well as the accounts and products that the user has access to.

Tools

/public
  • check-domain-availability
  • list-supported-tlds
/v2
  • Domains
    • check-domain-availability
    • list-supported-tlds
  • Products
    • list-products
    • list-product-servers
  • DNS
    • list-dns-records
    • add-dns-record
    • update-dns-record
    • delete-dns-record
  • Registrar
    • list-registry-nameservers
    • set-registry-nameservers
    • list-registry-dnssec-keys
    • add-registry-dnssec-key
    • remove-registry-dnssec
  • Hosting
    • get-deploy-info
  • Databases
    • list-mysql-databases
  • Mail
    • list-mail-accounts

The tools' parameters and responses are self‑describing via MCP. The AI client retrieves the schema itself upon connection.

Setup

The examples use /public. Switch to /v2 for the authenticated tools. The client handles the OAuth flow itself via discovery.

Claude Desktop

{
    "mcpServers": {
        "simplycom": {
            "type": "streamable-http",
            "url": "https://mcp.simply.com/public"
        }
    }
}

Claude Code

claude mcp add simplycom --transport http https://mcp.simply.com/public

Cursor (.cursor/mcp.json)

{
    "mcpServers": {
        "simplycom": {
            "type": "streamable-http",
            "url": "https://mcp.simply.com/public"
        }
    }
}

Limitations

  • The public tools are read‑only. Ordering domains can be done via our REST API or website.
  • OAuth access tokens expire after 1 hour. Refresh tokens expire after 30 days and are rotated with each use.
  • Queries are subject to rate limiting.