get_post_thread
Retrieve a complete conversation thread for a post, including replies and parent posts, by specifying the URI and desired depth levels for analysis or context.
Instructions
Get a full conversation thread.
Args:
ctx: MCP context
uri: URI of the post to get thread for
depth: How many levels of replies to include
parent_height: How many parent posts to include
Returns:
Thread with the post and its replies/parents
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | ||
parent_height | No | ||
uri | Yes |
Input Schema (JSON Schema)
{
"properties": {
"depth": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Depth"
},
"parent_height": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Parent Height"
},
"uri": {
"title": "Uri",
"type": "string"
}
},
"required": [
"uri"
],
"title": "get_post_threadArguments",
"type": "object"
}