Godot Forge works with any IDE that supports the Model Context Protocol. Below are configuration snippets for all supported IDEs.
claude mcp add godot-forge -- npx -y godot-forgeAdd to .cursor/mcp.json:
{
"mcpServers": {
"godot-forge": {
"command": "npx",
"args": ["-y", "godot-forge"]
}
}
}Add to .vscode/mcp.json:
{
"servers": {
"godot-forge": {
"command": "npx",
"args": ["-y", "godot-forge"]
}
}
}Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"godot-forge": {
"command": "npx",
"args": ["-y", "godot-forge"]
}
}
}Add to settings.json:
{
"context_servers": {
"godot-forge": {
"command": {
"path": "npx",
"args": ["-y", "godot-forge"]
}
}
}
}Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows):
{
"mcpServers": {
"godot-forge": {
"command": "npx",
"args": ["-y", "godot-forge"]
}
}
}Add to .codex/config.toml:
[mcp_servers.godot-forge]
command = "npx"
args = ["-y", "godot-forge"]Add to .gemini/settings.json:
{
"mcpServers": {
"godot-forge": {
"command": "npx",
"args": ["-y", "godot-forge"]
}
}
}Settings → Tools → AI Assistant → MCP Servers → Add:
{
"mcpServers": {
"godot-forge": {
"command": "npx",
"args": ["-y", "godot-forge"]
}
}
}Add to .continue/config.yaml:
mcpServers:
- name: godot-forge
command: npx
args: ["-y", "godot-forge"]Add to cline_mcp_settings.json:
{
"mcpServers": {
"godot-forge": {
"command": "npx",
"args": ["-y", "godot-forge"]
}
}
}Add to .roo/mcp.json:
{
"mcpServers": {
"godot-forge": {
"command": "npx",
"args": ["-y", "godot-forge"]
}
}
}Add to ~/.config/mcphub/servers.json:
{
"mcpServers": {
"godot-forge": {
"command": "npx",
"args": ["-y", "godot-forge"]
}
}
}Add to opencode.json:
{
"mcp": {
"godot-forge": {
"command": "npx",
"args": ["-y", "godot-forge"]
}
}
}Add to .kiro/settings/mcp.json:
{
"mcpServers": {
"godot-forge": {
"command": "npx",
"args": ["-y", "godot-forge"]
}
}
}If auto-detection doesn't find your Godot binary, set it explicitly:
{
"mcpServers": {
"godot-forge": {
"command": "npx",
"args": ["-y", "godot-forge"],
"env": {
"GODOT_PATH": "/path/to/godot"
}
}
}
}To point at a specific Godot project:
{
"mcpServers": {
"godot-forge": {
"command": "npx",
"args": ["-y", "godot-forge", "--project", "/path/to/project"]
}
}
}