MCP Server
Active
Apache-2.0
io.github.ynishi/mlua-swarm MCP Server
io.github.ynishi/mlua-swarm
What is the io.github.ynishi/mlua-swarm MCP server?
MCP server for mlua-swarm: engine that compiles flow.ir Blueprints and dispatches agent steps.
How to install io.github.ynishi/mlua-swarm
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": {
"mlua-swarm": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/ynishi/mse:0.26.0",
"mcp"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mlua-swarm": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/ynishi/mse:0.26.0",
"mcp"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mlua-swarm": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/ynishi/mse:0.26.0",
"mcp"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mlua-swarm": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/ynishi/mse:0.26.0",
"mcp"
]
}
}
}Claude Code
claude mcp add mlua-swarm -- docker run -i --rm ghcr.io/ynishi/mse:0.26.0 mcpRelated MCP servers
Agent-First CRUD store MCP server — 1 daemon per table, schema.yaml driven, SQLite backend
0
View repository →Rust
Apache-2.0