CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
pzalutski-pixel avatar

GodotLens

pzalutski-pixel/godotlens-mcp
2STDIOregistry active
Summary

Connects Claude to Godot's built-in Language Server Protocol over TCP, exposing 15 semantic analysis tools for GDScript projects. You get compiler-accurate operations like go-to-definition, find-references, rename-symbol, and diagnostics instead of relying on grep or regex patterns that can't distinguish function calls from comments. The Godot editor must be running with your project open since it hosts the LSP server on port 6005. After Claude edits a .gd file, you'll need to call gdscript_sync_file to refresh the LSP state before querying diagnostics or navigation data. Useful when you want Claude to refactor GDScript code with full semantic awareness rather than text-based heuristics.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

GodotLens: Godot's own view of your GDScript project

GitHub Release npm PyPI License: Apache 2.0

An MCP server that lets an AI agent ask Godot itself about your project — where a symbol is used, what a method's real signature is, whether an edit compiles, how a scene is wired, and what the game actually printed when it ran.

Why

An agent editing GDScript from text alone is guessing. It cannot tell a call from a comment, cannot know which methods exist on a CharacterBody2D in your Godot version, cannot see that a signal handler is wired by name inside a .tscn, and cannot see what happened at runtime.

GodotLens never answers those questions itself. It asks the engine and returns the engine's answer. Measured on Godot 4.7.1, in a project where take_damage is defined in player.gd, called twice from enemy.gd, once from player.gd, and named in a comment:

ApproachResult
grep take_damage5 matches, including the comment
gdscript_referencesexactly 4 real call sites; the comment is not among them

That principle — delegate every judgement to Godot — is what makes the answers trustworthy, and it is why the tool names tell you where an answer came from. gdscript_* is the language server. scene_* and project_config run the engine. debug_* is the debugger.

Requirements

Needed for
Godot 4.6+ with your project openeverything — the language server and debug adapter live inside the editor
Python 3.10+, or Node.js 16+ for npxrunning this server
A Godot binary via GODOT_BIN, a ./godot/ directory, or PATHscene_* and project_config, which invoke the engine

Godot 4.6 is the floor because the language server changed materially at 4.5 (URI encoding) and 4.6 (document ownership). Older versions are refused with a clear message rather than silently misread.

The editor does not need a visible window — this is what CI uses:

godot --path <project> --editor --headless --lsp-port 6005 --dap-port 6006

Install

npx (recommended). The package bundles the server; there are no runtime dependencies.

{
  "mcpServers": {
    "godotlens": {
      "command": "npx",
      "args": ["-y", "godotlens-mcp"]
    }
  }
}

pip

pip install godotlens-mcp
{
  "mcpServers": {
    "godotlens": { "command": "godotlens-mcp" }
  }
}

The loop

The tools are designed around one cycle. Read it once and the rest of this document is a reference.

flowchart LR
    U["<b>Understand</b><br/>gdscript_find<br/>gdscript_references<br/>gdscript_hover"]
    W["<b>Write</b><br/>gdscript_engine_api<br/>gdscript_complete<br/>gdscript_validate"]
    S["<b>Sync</b><br/>gdscript_sync_file"]
    V["<b>Verify</b><br/>gdscript_diagnostics<br/>scene_validate"]
    R["<b>Run</b><br/>debug_run<br/>debug_output"]

    U --> W --> S --> V --> R
    R -- "something is wrong" --> U

    classDef step fill:#f5f7fa,stroke:#4a6785,stroke-width:1px,color:#1b2733;
    class U,W,S,V,R step;
  1. Understand. gdscript_find locates a symbol by name; gdscript_references and gdscript_hover explain how it is used and what type it is.
  2. Write. gdscript_engine_api gives real signatures instead of recalled ones, gdscript_complete offers scene-aware candidates, and gdscript_validate checks proposed content before it reaches disk.
  3. Sync. Godot's language server does not watch the filesystem. After editing a .gd file, call gdscript_sync_file or it keeps answering from the old text.
  4. Verify. gdscript_diagnostics for compile errors, scene_validate for the wiring the compiler cannot see.
  5. Run. debug_run starts the game and returns what it printed.

Two conventions apply throughout:

  • All line and character parameters are 0-indexed, matching the LSP. Editor line 1 is line 0. gdscript_find exists partly so you rarely have to compute one by hand.
  • Results carry a verified flag where it matters. verified: false with an empty diagnostics list means Godot never reported back — that is not a clean bill of health.

Tools

Understanding code

ToolDescription
gdscript_findLocate a declaration by name. Returns a position the tools below accept directly.
gdscript_definitionWhere a symbol is defined.
gdscript_referencesEvery reference project-wide. On 4.6+ this reparses every .gd file, so it is not cheap.
gdscript_references_in_fileOccurrences within one file. Much cheaper. Godot 4.7+.
gdscript_hoverType information and documentation for a symbol.
gdscript_symbolsThe symbol tree of a file.
gdscript_signature_helpParameter info at a call site.
gdscript_symbols_batch, gdscript_definitions_batch, gdscript_references_batchThe same, across many files or positions in one call.

Writing code

ToolDescription
gdscript_engine_apiSignatures and docs for an engine class or member, from the exact build in use. Use instead of recalling Godot's API.
gdscript_completeCompletions at a position. The only scene-aware query: includes real $NodePath entries and the signals actually on the owning node.
gdscript_validateCheck proposed content for errors without writing it to disk.
gdscript_renameRename a symbol. Refuses when Godot will not rename it, and warns when the name also appears in scene files it cannot update.

Keeping Godot in step

ToolDescription
gdscript_sync_fileSync one modified file and return its diagnostics.
gdscript_sync_filesSync several at once.
gdscript_release_fileRelease a file so the language server reads from disk again.
gdscript_diagnosticsErrors and warnings for one or more files.
gdscript_statusConnection check. Start here if anything behaves oddly.

Project and scenes

These invoke the Godot binary so scenes resolve exactly as the engine builds them, inherited scenes included. They do not parse .tscn as text.

ToolDescription
project_configAutoload singletons, input action names, class_name globals, and the main scene, via ProjectSettings.
scene_stateNode tree, types, script attachments, unique_name_in_owner flags, exported values, and signal connections.
scene_validateChecks every connection points at a method that exists.

Runtime

Godot serves a Debug Adapter Protocol server from the editor, no addon required. The language server tells you whether code compiles; only the debugger tells you what it did.

ToolDescription
debug_runRun the project and return what it printed.
debug_outputConsole output from a running game — print, stdout, stderr, and runtime errors with their source location. Drained on each call.
debug_set_breakpointsSet breakpoints in a file.
debug_stack_traceThe call stack where execution is paused. Empty means not paused.
debug_inspectVariables in a stack frame, by scope.
debug_evaluateEvaluate an expression at a breakpoint, instead of adding print and re-running.
debug_continue, debug_pause, debug_step_overExecution control.
debug_terminateStop the running game.
debug_statusAdapter connection and whether the game is running or paused.

What Godot cannot tell you

Worth knowing before you trust a result:

  • The language server reads .gd files only. A signal handler wired in a .tscn [connection] block is invisible to it, so renaming that handler leaves the scene pointing at a method that no longer exists — and that fails at runtime with no compile error. This is why scene_validate exists and why gdscript_rename warns.
  • Autoload and input action names are bare strings. GameState.add_score(1) and Input.is_action_pressed("jump") are validated by nothing at all. Check them against project_config before writing them.
  • gdscript_references is expensive on 4.6+, reparsing every script in the project. Prefer gdscript_references_in_file when one file is enough.

Architecture

Three mechanisms, one process. Each tool group maps to exactly one of them, which is how you know where an answer came from.

flowchart TD
    Agent["AI Agent"]
    GL["<b>GodotLens</b><br/>MCP server · JSON-RPC 2.0<br/>Python 3.10+ · no dependencies"]

    Agent <-- "stdio" --> GL

    GL -- "TCP 6005<br/>language server" --> Editor
    GL -- "TCP 6006<br/>debug adapter" --> Editor
    GL -- "subprocess<br/>--headless --script" --> Binary

    Editor["<b>Godot Editor</b><br/>must be open<br/><i>gdscript_* · debug_*</i>"]
    Binary["<b>Godot binary</b><br/>invoked on demand<br/><i>scene_* · project_config</i>"]

    classDef svc fill:#eef4fb,stroke:#4a6785,stroke-width:1px,color:#1b2733;
    classDef godot fill:#f3f0fb,stroke:#6b5b95,stroke-width:1px,color:#1b2733;
    class Agent,GL svc;
    class Editor,Binary godot;

The MCP and LSP/DAP protocols are implemented directly against the standard library, so the package has zero runtime dependencies and the npm bundle is a handful of .py files.

Configuration

VariableDefaultDescription
GODOT_LSP_HOST127.0.0.1Language server host
GODOT_LSP_PORT6005Language server port. The official VS Code extension uses 6008
GODOT_DAP_HOST127.0.0.1Debug adapter host
GODOT_DAP_PORT6006Debug adapter port, used by debug_*
GODOT_BINautoGodot executable, required by scene_* and project_config
GODOT_PROJECT_ROOTautoProject root; auto-detected by walking up for project.godot
GODOT_LSP_TIMEOUT15Seconds to wait for a single language server response
GODOT_DIAGNOSTICS_TIMEOUT8Seconds to wait for diagnostics after a sync
GODOT_VERSIONautoOverride capability detection
GODOT_FIND_FILE_LIMIT60Max files gdscript_find inspects when searching the whole project

Contributing

pip install -e ".[dev]"
pytest -m "not integration"   # no Godot needed
ruff check .

Integration tests launch a real headless Godot and skip cleanly without one:

GODOT_BIN=/path/to/godot pytest -m integration

CI runs the suite on Linux, Windows and macOS across Python 3.10–3.13, runs the integration tests against a real Godot on all three, and installs the built npm tarball and executes it.

License

Apache License 2.0 — see LICENSE and NOTICE.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Configuration

GODOT_LSP_HOSTdefault: 127.0.0.1

Godot LSP server host

GODOT_LSP_PORTdefault: 6005

Godot LSP server port

Categories
Developer ToolsDesign & Creative
Registryactive
Packagegodotlens-mcp
TransportSTDIO
UpdatedApr 15, 2026
View on GitHub

More from pzalutski-pixel

  • JavaLens30
  • SharpLens19

Related Developer Tools MCP Servers

View all →
marin1321 avatar
Mcp Devtools

marin1321/mcp-devtools

MCP server giving AI agents safe access to filesystem, databases, processes, and APIs.
2
nogoo9 avatar
Mcp Server Cloud Fs

nogoo9/mcp-server-cloud-fs

Cloud replacement for mcp-server-filesystem — 20 tools for S3, Azure Blob, and GCS
2
qiuwenzheng avatar
Interminal

qiuwenzheng/interminal

Lightweight MCP server providing terminal access (SSH & local shells) for AI assistants.
2
rbfinch avatar
Hindsight MCP

rbfinch/hindsight-mcp

MCP server for AI-assisted coding with development history: git, tests, Copilot.
2
andysalvo avatar
Agentic Platform

andysalvo/agentic-platform

Free MCP tools: the only MCP linter, health checks, cost estimation, and trust evaluation.
1
frankxmx avatar
Dailyhotmcp

frankxmx/dailyhotmcp

聚合55+平台热门榜单数据的AI工具,支持微博、知乎、B站、GitHub等平台。适用于LLM/RAG场景。
1