GET_WIKI
Retrieve detailed information about a specific wiki from IQ.wiki by its unique ID using the MCP server for AI assistants and applications.
Instructions
Get details about a specific wiki from IQ.wiki by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the wiki to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the wiki to retrieve",
"minLength": 1,
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}