MCP

Structured nimux tools for AI clients.

The MCP wrapper exposes nimux through typed tools for clients such as Codex, Claude Desktop, Cursor, Windsurf, and other stdio-compatible MCP clients.

Codex

Use `nimux_mcp` as a local stdio server and keep the binary path pinned in your Codex MCP configuration.

[mcp_servers.nimux]
command = "/usr/local/bin/nimux_mcp"
args = []

Claude Desktop

Add nimux as a local MCP server so Claude can call structured tools instead of free-form shell commands.

{
  "mcpServers": {
    "nimux": {
      "command": "/usr/local/bin/nimux_mcp",
      "args": []
    }
  }
}

Cursor and other MCP clients

Point the client at the same stdio command and keep credentials in the client-side secret store where available.

{
  "name": "nimux",
  "command": "/usr/local/bin/nimux_mcp"
}

Policy-aware workflow

The MCP layer is intended for authorized environments. It is designed around structured arguments, progress reporting, redaction, pivot metadata, and policy gates instead of unrestricted command text.

Read MCP documentation