Integrate domain check 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 check if a domain name is available for registration or transfer — without you having to leave the conversation.
MCP endpoint is available at:
https://mcp.simply.com/v1/
Transport type: streamable-http
check-domain-availabilityCheck if a domain name is available for registration or transfer at Simply.com.
| Name | Type | Description |
|---|---|---|
domain |
string |
The full domain name to be checked, e.g. example.com |
| Field | Type | Description |
|---|---|---|
domain |
string |
The requested domain name |
extension |
string |
Domain extension (TLD) |
available |
boolean |
If the domain is available for registration |
canregister |
boolean |
If the domain can be registered |
cantransfer |
boolean |
If the domain can be transferred to Simply.com |
{
"domain": "example.com",
"extension": "com",
"available": true,
"canregister": true,
"cantransfer": false
}
list-supported-tldsRetrieve a list of all domain extensions (TLD) that can be registered with Simply.com.
None
| Field | Type | Description |
|---|---|---|
tlds |
string[] |
List of domain extensions |
count |
integer |
Number of domain extensions |
{
"tlds": ["com", "dk", "eu", "net", "org", "..."],
"count": 42
}
Add the following to your Claude Desktop configuration file (claude_desktop_config.json):
{
"mcpServers": {
"simplycom": {
"type": "streamable-http",
"url": "https://mcp.simply.com/v1/"
}
}
}
Run the following command in your terminal:
claude mcp add simplycom --transport http https://mcp.simply.com/v1/
Add the following to your .cursor/mcp.json:
{
"mcpServers": {
"simplycom": {
"type": "streamable-http",
"url": "https://mcp.simply.com/v1/"
}
}
}