discourse_read_topic
Retrieve topic metadata and initial posts from GitLab's community forum to analyze discussions about CI/CD issues and GitLab features.
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)
{
"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"
}