get_post
Retrieve a specific post by its ID from a Beehiiv publication using the MCP server, enabling structured access to content via the Beehiiv API v2. Input includes publication_id and post_id for precise data fetching.
Instructions
Retrieve a single post by ID.
Args:
publication_id: ID of the publication
post_id: ID of the post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
post_id | Yes | ||
publication_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"post_id": {
"title": "Post Id",
"type": "string"
},
"publication_id": {
"title": "Publication Id",
"type": "string"
}
},
"required": [
"publication_id",
"post_id"
],
"title": "get_postArguments",
"type": "object"
}