generate-docs
Create structured documentation in markdown, API-docs, comments, or readme formats for tasks like API endpoints or code comments using specified AI providers. Simplify documentation workflows with Ultra MCP server.
Instructions
Generate documentation in various formats
Input Schema
Name | Required | Description | Default |
---|---|---|---|
files | No | File paths to document (optional) | |
format | No | Documentation format | markdown |
provider | No | AI provider to use | gemini |
task | Yes | What to document (e.g., 'API endpoints', 'setup instructions', 'code comments') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"files": {
"description": "File paths to document (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"format": {
"default": "markdown",
"description": "Documentation format",
"enum": [
"markdown",
"comments",
"api-docs",
"readme"
],
"type": "string"
},
"provider": {
"default": "gemini",
"description": "AI provider to use",
"enum": [
"openai",
"gemini",
"azure",
"grok"
],
"type": "string"
},
"task": {
"description": "What to document (e.g., 'API endpoints', 'setup instructions', 'code comments')",
"type": "string"
}
},
"required": [
"task"
],
"type": "object"
}