PluginBench
MCP Server
Active
Apache-2.0

once MCP Server

io.github.aurumflux20/once-kernel

What is the once MCP server?

Run a side effect exactly once under retries, redelivery, and concurrent workers.

How to install once

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "once-kernel": {
      "command": "uvx",
      "args": [
        "once-kernel"
      ]
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "once-kernel": {
      "command": "uvx",
      "args": [
        "once-kernel"
      ]
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "once-kernel": {
      "command": "uvx",
      "args": [
        "once-kernel"
      ]
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "once-kernel": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "once-kernel"
      ]
    }
  }
}
Claude Code
claude mcp add once-kernel -- uvx once-kernel

Related MCP servers

Stops agents double-firing side effects: 1,000 racing duplicates, exactly one execution.

0
Rust
MIT
View repository →