mcp-codex-keeper

add_documentation

Add a new documentation source

Input Schema

NameRequiredDescriptionDefault
categoryYesCategory of the documentation
descriptionNoDescription of the documentation
nameYesName of the documentation
tagsNoTags for additional categorization
urlYesURL of the documentation
versionNoVersion information

Input Schema (JSON Schema)

{ "properties": { "category": { "description": "Category of the documentation", "type": "string" }, "description": { "description": "Description of the documentation", "type": "string" }, "name": { "description": "Name of the documentation", "type": "string" }, "tags": { "description": "Tags for additional categorization", "items": { "type": "string" }, "type": "array" }, "url": { "description": "URL of the documentation", "type": "string" }, "version": { "description": "Version information", "type": "string" } }, "required": [ "name", "url", "category" ], "type": "object" }