kobold_detokenize
Convert token IDs into readable text using the Kobold MCP Server. Ideal for decoding processed token data into clear, human-readable output.
Instructions
Convert token IDs to text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiUrl | No | http://localhost:5001 | |
tokens | Yes |
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"
}