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-kernelRelated MCP servers
EffectFence
Active
Stops agents double-firing side effects: 1,000 racing duplicates, exactly one execution.
0
View repository →Rust
MIT