Kobold MCP Server

kobold_complete

Text completion (OpenAI-compatible)

Input Schema

NameRequiredDescriptionDefault
apiUrlNohttp://localhost:5001
max_tokensNo
promptYes
stopNo
temperatureNo
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_tokens": { "type": "number" }, "prompt": { "type": "string" }, "stop": { "items": { "type": "string" }, "type": "array" }, "temperature": { "type": "number" }, "top_p": { "type": "number" } }, "required": [ "prompt" ], "type": "object" }