add_post
Easily create and publish text posts through the Google Maps MCP Server, enabling users to share content directly within the platform.
Instructions
Adds a simple text post.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The text content of the post to add. |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The text content of the post to add.",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}