get_wiki
Retrieve detailed information about a specific wiki page by providing its unique ID, enabling efficient access to Backlog project documentation via the integrated MCP server.
Instructions
Returns information about a specific wiki page
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| wikiId | Yes | Wiki ID | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "wikiId": {
      "description": "Wiki ID",
      "type": [
        "string",
        "number"
      ]
    }
  },
  "required": [
    "wikiId"
  ],
  "type": "object"
}