get-post
Retrieve WordPress post details by specifying the post ID using this structured and secure tool, part of the WordPress MCP server for AI model integration.
Instructions
Get a WordPress post by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
postId | Yes | Post ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"postId": {
"description": "Post ID",
"minimum": 0,
"type": "number"
}
},
"required": [
"postId"
],
"type": "object"
}