What is the Koma Core MCP MCP server?
Protected RAG storage — agents discover public metadata, content only by access token.
How to install Koma Core MCP
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
KOMA_MASTER_KEYsecretHKDF master key for content tokens (demo key fallback if unset)
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"koma-core-mcp": {
"command": "npx",
"args": [
"-y",
"koma-core-mcp"
],
"env": {
"KOMA_MASTER_KEY": "<YOUR_KOMA_MASTER_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"koma-core-mcp": {
"command": "npx",
"args": [
"-y",
"koma-core-mcp"
],
"env": {
"KOMA_MASTER_KEY": "<YOUR_KOMA_MASTER_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"koma-core-mcp": {
"command": "npx",
"args": [
"-y",
"koma-core-mcp"
],
"env": {
"KOMA_MASTER_KEY": "<YOUR_KOMA_MASTER_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"koma-core-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"koma-core-mcp"
],
"env": {
"KOMA_MASTER_KEY": "<YOUR_KOMA_MASTER_KEY>"
}
}
}
}Claude Code
claude mcp add koma-core-mcp --env KOMA_MASTER_KEY=<YOUR_KOMA_MASTER_KEY> -- npx -y koma-core-mcpRelated MCP servers
Koma Gate MCP
Active
Classifies prompt injection, jailbreaks, and out-of-scope user input before agents act on it.
10
View repository →TypeScript
MIT