delete_post
Remove a specific post from Google Maps MCP Server by providing its unique ID. This action ensures the post is deleted permanently from the system.
Instructions
Deletes a post by ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the post to delete. |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the post to delete.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}