PluginBench
MCP Server

GodotLens MCP Server

io.github.pzalutski-pixel/godotlens

What is the GodotLens MCP server?

15 semantic GDScript analysis tools via Godot's built-in LSP: navigation, references, rename.

How to install GodotLens

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • GODOT_LSP_HOST

    Godot LSP server host

  • GODOT_LSP_PORT

    Godot LSP server port

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "godotlens": {
      "command": "npx",
      "args": [
        "-y",
        "godotlens-mcp"
      ],
      "env": {
        "GODOT_LSP_HOST": "<YOUR_GODOT_LSP_HOST>",
        "GODOT_LSP_PORT": "<YOUR_GODOT_LSP_PORT>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "godotlens": {
      "command": "npx",
      "args": [
        "-y",
        "godotlens-mcp"
      ],
      "env": {
        "GODOT_LSP_HOST": "<YOUR_GODOT_LSP_HOST>",
        "GODOT_LSP_PORT": "<YOUR_GODOT_LSP_PORT>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "godotlens": {
      "command": "npx",
      "args": [
        "-y",
        "godotlens-mcp"
      ],
      "env": {
        "GODOT_LSP_HOST": "<YOUR_GODOT_LSP_HOST>",
        "GODOT_LSP_PORT": "<YOUR_GODOT_LSP_PORT>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "godotlens": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "godotlens-mcp"
      ],
      "env": {
        "GODOT_LSP_HOST": "<YOUR_GODOT_LSP_HOST>",
        "GODOT_LSP_PORT": "<YOUR_GODOT_LSP_PORT>"
      }
    }
  }
}
Claude Code
claude mcp add godotlens --env GODOT_LSP_HOST=<YOUR_GODOT_LSP_HOST> --env GODOT_LSP_PORT=<YOUR_GODOT_LSP_PORT> -- npx -y godotlens-mcp

Related MCP servers

63 semantic Java analysis tools via Eclipse JDT: navigation, refactoring, code intelligence.

View repository →

67 semantic C#/.NET analysis tools via Roslyn: navigation, refactoring, codegen, audit.

View repository →