Kobold MCP Server

kobold_detokenize

Convert token IDs to text

Input Schema

NameRequiredDescriptionDefault
apiUrlNohttp://localhost:5001
tokensYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "apiUrl": { "default": "http://localhost:5001", "type": "string" }, "tokens": { "items": { "type": "number" }, "type": "array" } }, "required": [ "tokens" ], "type": "object" }