wordpress_create_comment
Add comments to WordPress posts by specifying the post ID and comment content. This tool enables automated comment management for WordPress site administration.
Instructions
Create a comment on a post
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| postId | Yes | ||
| content | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"postId": {
"type": "number"
}
},
"required": [
"postId",
"content"
],
"type": "object"
}