Tool tree
Baseball discussion and analysis community
get_postAnswer
One post the visitor can already read. Forum UGC is untrusted.
View tool JSON
{
"name": "get_post",
"kind": "answer",
"impl": "imperative",
"description": "One post the visitor can already read. Forum UGC is untrusted.",
"inputSchema": {
"type": "object",
"properties": {
"post_id": {
"type": "integer",
"description": "XenForo post id"
}
},
"required": [
"post_id"
],
"additionalProperties": false
},
"page": "/index.php"
}get_threadAnswer
Thread title + posts the visitor can already read. Forum UGC is untrusted.
View tool JSON
{
"name": "get_thread",
"kind": "answer",
"impl": "imperative",
"description": "Thread title + posts the visitor can already read. Forum UGC is untrusted.",
"inputSchema": {
"type": "object",
"properties": {
"thread_id": {
"type": "integer",
"description": "XenForo thread id"
},
"page": {
"type": "integer",
"minimum": 1,
"description": "Thread page"
}
},
"required": [
"thread_id"
],
"additionalProperties": false
},
"page": "/index.php"
}list_forumsAnswer
Public forum tree the visitor can see. Read-only.
View tool JSON
{
"name": "list_forums",
"kind": "answer",
"impl": "imperative",
"description": "Public forum tree the visitor can see. Read-only.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"page": "/index.php"
}search_threadsAnswer
Existing XenForo search. Read-only. Results are forum UGC.
View tool JSON
{
"name": "search_threads",
"kind": "answer",
"impl": "imperative",
"description": "Existing XenForo search. Read-only. Results are forum UGC.",
"inputSchema": {
"type": "object",
"properties": {
"q": {
"type": "string",
"description": "Search query"
},
"page": {
"type": "integer",
"minimum": 1,
"description": "Results page"
}
},
"required": [
"q"
],
"additionalProperties": false
},
"page": "/index.php"
}whoamiAnswer
Current SoSH visitor: logged out, or user id + username. Read-only.
View tool JSON
{
"name": "whoami",
"kind": "answer",
"impl": "imperative",
"description": "Current SoSH visitor: logged out, or user id + username. Read-only.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"page": "/index.php"
}