get_keywords_search_volume
Retrieve search volume data for specific keywords in a chosen country to optimize SEO strategies and keyword research using FetchSERP MCP Server.
Instructions
Get search volume for given keywords
Input Schema
Name | Required | Description | Default |
---|---|---|---|
country | No | The country code to search for | |
keywords | Yes | The keywords to search |
Input Schema (JSON Schema)
{
"properties": {
"country": {
"description": "The country code to search for",
"type": "string"
},
"keywords": {
"description": "The keywords to search",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"keywords"
],
"type": "object"
}