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-availability
Check 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 |
purchase_link
|
string
|
Link to purchase the domain at Simply.com |
tld_info_link
|
string
|
Link to more information about the domain extension |
{
"domain": "example.com",
"extension": "com",
"available": true,
"canregister": true,
"cantransfer": false,
"purchase_link": "https://www.simply.com/domains/",
"tld_info_link": "https://www.simply.com/com-domain/"
}
list-supported-tlds
Retrieve a list of all domain extensions (TLD) that can be registered with Simply.com.
None
| Field | Type | Description |
|---|---|---|
tlds
|
object[]
|
List of domain extensions with info links |
tlds[].tld
|
string
|
Domain extension |
tlds[].tld_info_link
|
string
|
Link to more information about the domain extension |
count
|
integer
|
Number of domain extensions |
{
"tlds": [
{"tld": "com", "tld_info_link": "https://www.simply.com/com-domain/"},
{"tld": "dk", "tld_info_link": "https://www.simply.com/dk-domain/"},
"..."
],
"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"
}
}
}