Kobold MCP Server

kobold_generate

Generate text with KoboldAI

Input Schema

NameRequiredDescriptionDefault
apiUrlNohttp://localhost:5001
max_context_lengthNo
max_lengthNo
promptYes
repetition_penaltyNo
seedNo
stop_sequenceNo
temperatureNo
top_kNo
top_pNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "apiUrl": { "default": "http://localhost:5001", "type": "string" }, "max_context_length": { "type": "number" }, "max_length": { "type": "number" }, "prompt": { "type": "string" }, "repetition_penalty": { "type": "number" }, "seed": { "type": "number" }, "stop_sequence": { "items": { "type": "string" }, "type": "array" }, "temperature": { "type": "number" }, "top_k": { "type": "number" }, "top_p": { "type": "number" } }, "required": [ "prompt" ], "type": "object" }