Integrate Simply.com directly into your AI-assistant via Model Context Protocol (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.
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.
check-domain-availability
list-supported-tlds
check-domain-availability
list-supported-tlds
list-products
list-product-servers
list-dns-records
add-dns-record
update-dns-record
delete-dns-record
list-registry-nameservers
set-registry-nameservers
list-registry-dnssec-keys
add-registry-dnssec-key
remove-registry-dnssec
get-deploy-info
list-mysql-databases
list-mail-accounts
The tools' parameters and responses are self‑describing via MCP. The AI client retrieves the schema itself upon connection.
The examples use /public. Switch to /v2 for the authenticated tools. The client handles the OAuth flow itself via discovery.
{
"mcpServers": {
"simplycom": {
"type": "streamable-http",
"url": "https://mcp.simply.com/public"
}
}
}
claude mcp add simplycom --transport http https://mcp.simply.com/public
{
"mcpServers": {
"simplycom": {
"type": "streamable-http",
"url": "https://mcp.simply.com/public"
}
}
}