MCPMCP Tools/SEO Rank Tracking/get_ranking_grid_point
get_ranking_grid_point
Readlistings:read
Drill into ONE grid cell of the rank map: the businesses ranked at that point for a keyword (rank, name, rating, review count, category, address, website, and whether it's you). Requires locationId, keywordId (from get_ranking_overview), and the cell's row + col (0-indexed grid coordinates). Optional month (defaults to latest). This is the 'click a grid point' drill-down.
Parameters
locationIdstringrequired
Location id — the id from list_locations. Either id shape works.
keywordIdstringrequired
Tracked keyword id (from get_ranking_overview keywords[])
rownumberrequired
Grid row index (0-based)
colnumberrequired
Grid column index (0-based)
monthstringoptional
Report month YYYY-MM (optional; defaults to latest)
Example request
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_ranking_grid_point",
"arguments": {
"locationId": "string",
"keywordId": "string",
"row": 0,
"col": 0
}
}
}Example response
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"content": [
{
"type": "text",
"text": "..."
}
]
}
}Response shape shown for illustration — the actual content depends on the tool and your data.