PluginBench
MCP Server
Active
MIT

Koma Core MCP MCP Server

io.github.swnotmetal/koma-core-mcp

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_KEY
    secret

    HKDF 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-mcp

Related MCP servers

Classifies prompt injection, jailbreaks, and out-of-scope user input before agents act on it.

10
TypeScript
MIT
View repository →
Koma Core MCP MCP Server | PluginBench