get_backlinks_listGet backlinks list for the specified domain
Args:
domain (str): The domain to query
Returns:
List of backlinks for the domain, containing title, URL, domain rating, etc.Input schema{
"properties": {
"domain": {
"type": "string"
}
},
"required": [
"domain"
],
"type": "object",
"additionalProperties": false
}Output schema{
"properties": {
"result": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
]
}
},
"required": [
"result"
],
"type": "object",
"x-fastmcp-wrap-result": true
} | — | | — |
get_trafficCheck the estimated search traffic for any website. Input schema{
"properties": {
"domain_or_url": {
"type": "string",
"description": "The domain or URL to query"
},
"country": {
"default": "None",
"type": "string",
"description": "The country to query, default is \"None\""
},
"mode": {
"default": "subdomains",
"enum": [
"subdomains",
"exact"
],
"type": "string",
"description": "The mode to use for the query"
}
},
"required": [
"domain_or_url"
],
"type": "object",
"additionalProperties": false
}Output schema{
"properties": {
"result": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
]
}
},
"required": [
"result"
],
"type": "object",
"x-fastmcp-wrap-result": true
} | — | | — |
keyword_difficultyGet keyword difficulty for the specified keywordInput schema{
"properties": {
"keyword": {
"type": "string"
},
"country": {
"default": "us",
"type": "string"
}
},
"required": [
"keyword"
],
"type": "object",
"additionalProperties": false
}Output schema{
"properties": {
"result": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
]
}
},
"required": [
"result"
],
"type": "object",
"x-fastmcp-wrap-result": true
} | — | | — |
keyword_generatorGet keyword ideas for the specified keywordInput schema{
"properties": {
"keyword": {
"type": "string"
},
"country": {
"default": "us",
"type": "string"
},
"search_engine": {
"default": "Google",
"type": "string"
}
},
"required": [
"keyword"
],
"type": "object",
"additionalProperties": false
}Output schema{
"properties": {
"result": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
]
}
},
"required": [
"result"
],
"type": "object",
"x-fastmcp-wrap-result": true
} | — | | — |