MCP server intelligence profile

Kobold MCP Server

A server enabling integration between KoboldAI's text generation capabilities and MCP-compatible applications, with features like chat completion, Stable Diffusion, and OpenAI-compatible API endpoints

Local OnlyPhialsBasement
Awaiting current scanNpm · 1.0.0

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
20Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install server-koboldai from npm

Version 1.0.0 declares 1 executable entrypoint.

npm install --save-exact server-koboldai@1.0.0
npx -y -p server-koboldai@1.0.0 server-koboldai
MCP client configuration example
{
  "mcpServers": {
    "server-koboldai": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "server-koboldai@1.0.0",
        "server-koboldai"
      ]
    }
  }
}

Identity

Canonical slugkobold-mcp-server-7ec5af29DeploymentLocal Only
Canonical packagenpm:server-koboldaiRepositoryPhialsBasement/KoboldCPP-MCP-Server
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmserver-koboldai1.0.01Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmserver-koboldai1.0.0CurrentSep 5, 202620 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2024-11-05Negotiated protocol
kobold-serverServer-reported name
1Capability groups
Aug 17, 2026Observed

Tools 20

ToolCategoryAnnotationsRisk
kobold_abortAbort the currently ongoing generation
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_chatChat completion (OpenAI-compatible)
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    },
    "messages": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "role": {
            "type": "string",
            "enum": [
              "system",
              "user",
              "assistant"
            ]
          },
          "content": {
            "type": "string"
          }
        },
        "required": [
          "role",
          "content"
        ],
        "additionalProperties": false
      }
    },
    "temperature": {
      "type": "number"
    },
    "top_p": {
      "type": "number"
    },
    "max_tokens": {
      "type": "number"
    },
    "stop": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "messages"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_completeText completion (OpenAI-compatible)
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    },
    "prompt": {
      "type": "string"
    },
    "max_tokens": {
      "type": "number"
    },
    "temperature": {
      "type": "number"
    },
    "top_p": {
      "type": "number"
    },
    "stop": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "prompt"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_detokenizeConvert token IDs to text
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    },
    "tokens": {
      "type": "array",
      "items": {
        "type": "number"
      }
    }
  },
  "required": [
    "tokens"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_generateGenerate text with KoboldAI
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    },
    "prompt": {
      "type": "string"
    },
    "max_length": {
      "type": "number"
    },
    "max_context_length": {
      "type": "number"
    },
    "temperature": {
      "type": "number"
    },
    "top_p": {
      "type": "number"
    },
    "top_k": {
      "type": "number"
    },
    "repetition_penalty": {
      "type": "number"
    },
    "stop_sequence": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "seed": {
      "type": "number"
    }
  },
  "required": [
    "prompt"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_img2imgTransform existing image using prompt
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    },
    "prompt": {
      "type": "string"
    },
    "negative_prompt": {
      "type": "string"
    },
    "width": {
      "type": "number"
    },
    "height": {
      "type": "number"
    },
    "steps": {
      "type": "number"
    },
    "cfg_scale": {
      "type": "number"
    },
    "sampler_name": {
      "type": "string"
    },
    "seed": {
      "type": "number"
    },
    "init_images": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "denoising_strength": {
      "type": "number"
    }
  },
  "required": [
    "prompt",
    "init_images"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_interrogateGenerate caption for image
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    },
    "image": {
      "type": "string"
    }
  },
  "required": [
    "image"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_last_logprobsGet token logprobs from the last request
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_max_context_lengthGet current max context length setting
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_max_lengthGet current max length setting
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_model_infoGet current model information
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_perf_infoGet performance information
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_sd_modelsList available Stable Diffusion models
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_sd_samplersList available Stable Diffusion samplers
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_token_countCount tokens in text
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    },
    "text": {
      "type": "string"
    }
  },
  "required": [
    "text"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_transcribeTranscribe audio using Whisper
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    },
    "audio": {
      "type": "string"
    },
    "language": {
      "type": "string"
    }
  },
  "required": [
    "audio"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_ttsGenerate text-to-speech audio
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    },
    "text": {
      "type": "string"
    },
    "voice": {
      "type": "string"
    },
    "speed": {
      "type": "number"
    }
  },
  "required": [
    "text"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_txt2imgGenerate image from text prompt
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    },
    "prompt": {
      "type": "string"
    },
    "negative_prompt": {
      "type": "string"
    },
    "width": {
      "type": "number"
    },
    "height": {
      "type": "number"
    },
    "steps": {
      "type": "number"
    },
    "cfg_scale": {
      "type": "number"
    },
    "sampler_name": {
      "type": "string"
    },
    "seed": {
      "type": "number"
    }
  },
  "required": [
    "prompt"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_versionGet KoboldAI version information
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kobold_web_searchSearch the web via DuckDuckGo
Input schema
{
  "type": "object",
  "properties": {
    "apiUrl": {
      "type": "string",
      "default": "http://localhost:5001"
    },
    "query": {
      "type": "string"
    }
  },
  "required": [
    "query"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Kobold MCP Server questions

How do I install Kobold MCP Server?

Install the selected package version with: npm install --save-exact server-koboldai@1.0.0

What tools does Kobold MCP Server provide?

Kobold MCP Server exposed 20 tools during independent protocol observation, including kobold_abort, kobold_chat, kobold_complete, kobold_detokenize, kobold_generate, kobold_img2img, kobold_interrogate, kobold_last_logprobs, and others.

Is Kobold MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.