discourse_read_topic
Retrieve topic metadata and initial posts from a Discourse forum to analyze discussion content and context.
Instructions
Read a topic metadata and first N posts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
post_limit | No | ||
start_post_number | No | Start from this post number (1-based) | |
topic_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"post_limit": {
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"start_post_number": {
"description": "Start from this post number (1-based)",
"minimum": 1,
"type": "integer"
},
"topic_id": {
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"topic_id"
],
"type": "object"
}