Kobold MCP Server

kobold_chat

Chat completion (OpenAI-compatible)

Input Schema

NameRequiredDescriptionDefault
apiUrlNohttp://localhost:5001
max_tokensNo
messagesYes
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" }, "messages": { "items": { "additionalProperties": false, "properties": { "content": { "type": "string" }, "role": { "enum": [ "system", "user", "assistant" ], "type": "string" } }, "required": [ "role", "content" ], "type": "object" }, "type": "array" }, "stop": { "items": { "type": "string" }, "type": "array" }, "temperature": { "type": "number" }, "top_p": { "type": "number" } }, "required": [ "messages" ], "type": "object" }