Skip to content

Setup

The server is a standalone Node CLI distributed on npm. Add it to your IDE’s MCP config — there is no project install required, and npx fetches it on demand. It requires Node 18 or newer.

Register it with one command:

Terminal window
claude mcp add golemui -- npx -y @golemui/gui-mcp

Or paste this into ~/.claude/settings.json (or your project’s .mcp.json):

{
"mcpServers": {
"golemui": {
"command": "npx",
"args": ["-y", "@golemui/gui-mcp"]
}
}
}

The five tools appear in your assistant’s tool list once the server is connected.

The server speaks JSON-RPC over stdio and prints a ready line to stderr on startup:

Terminal window
npx -y @golemui/gui-mcp < /dev/null
# → @golemui/gui-mcp v<version> ready on stdio

npx -y @golemui/gui-mcp always fetches the latest release. To lock the bundled schemas to a specific GolemUI version, pin the package:

{
"mcpServers": {
"golemui": {
"command": "npx",
"args": ["-y", "@golemui/gui-mcp@1.2.3"]
}
}
}