Used by 1 plugin
Add to your .mcp.json:
{
"mcpServers": {
"game-dev-supercharger": {
"command": "uv",
"args": [
"--directory",
"${CLAUDE_PLUGIN_ROOT}",
"run",
"--with",
"anthropic",
"--with",
"httpx",
"--with",
"pydantic",
"--with",
"requests",
"python",
"${CLAUDE_PLUGIN_ROOT}/mcp-server/server.py"
],
"env": {
"MESHY_API_KEY": "${MESHY_API_KEY:-}",
"UNITY_MCP_URL": "http://localhost:8080/mcp",
"GEMINI_API_KEY": "${GEMINI_API_KEY:-}",
"LEONARDO_API_KEY": "${LEONARDO_API_KEY:-}",
"ANTHROPIC_API_KEY": "${ANTHROPIC_API_KEY}"
}
}
}
}Replace placeholder values for: MESHY_API_KEY, GEMINI_API_KEY, LEONARDO_API_KEY
This MCP server needs API keys or credentials. Configure them in your environment before use.
This server has elevated permissions. Review the source code before enabling.
uvMESHY_API_KEY=${MESHY_API_KEY:-}UNITY_MCP_URL=http://localhost:8080/mcpGEMINI_API_KEY=${GEMINI_API_KEY:-}LEONARDO_API_KEY=${LEONARDO_API_KEY:-}ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}