Loading articleโฆ
Loading 4weirdโฆ
Loading articleโฆ
DocsMCP server
Docs ยท integrations mcp
The official @4weird/mcp Model Context Protocol server exposes 4weird capabilities โ game QA runs, game state, squad tasks โ to Claude Desktop, Cursor, and Antigravity. Three tools, typed schemas, zero risky worker search.
Connect
Install the @4weird/mcp package and register it as a stdio MCP server in your client. The server reads the API base URL from server-side environment only.
claude_desktop_config.json โ server entry
your machine{
"mcpServers": {
"4weird": {
"command": "npx",
"args": ["-y", "@4weird/mcp"],
"env": {
"FOURWEIRD_API_URL": "https://4weird.com"
}
}
}
}Tools reference
ListTools advertises exactly these three tools. Every argument is validated against its input schema before any fetch runs.
@4weird/mcp โ tool catalog
3 toolsrun_vcw_game_test
Trigger an automated VibeCodeWorker game QA run and return detected bugs.
gameSlug* ยท captureMode: screenshot | state_data | full_state ยท durationSeconds (default 30)
get_game_state
Fetch live leaderboards, save state, and catalog metadata for a game.
gameSlug* (e.g. gravegain3d, xonotic)
query_squad_tasks
Retrieve active Kanban sprint cards and tasks for a squad.
squadId* (UUID)
Try it