discourse_select_site
Validate and select a Discourse site URL to enable subsequent interactions with forum content through search, reading, and management tools.
Instructions
Validate and select a Discourse site for subsequent tool calls.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
site | Yes | Base URL of the Discourse site |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"site": {
"description": "Base URL of the Discourse site",
"format": "uri",
"type": "string"
}
},
"required": [
"site"
],
"type": "object"
}