discourse_read_post
Retrieve and analyze specific forum posts by providing a post ID, enabling AI agents to access and process individual discussions on Discourse platforms efficiently.
Instructions
Read a specific post.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
post_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"post_id": {
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"post_id"
],
"type": "object"
}