discourse_select_site
Validate and select a Discourse site URL for AI agents to perform actions like reading posts, browsing categories, and creating content via the Discourse MCP server.
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"
}