惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recent Announcements
Recent Announcements
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The GitHub Blog
The GitHub Blog
V
V2EX
Microsoft Security Blog
Microsoft Security Blog
V
Visual Studio Blog
A
About on SuperTechFans
博客园_首页
L
LangChain Blog
量子位
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Jina AI
Jina AI
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
M
MIT News - Artificial intelligence
N
Netflix TechBlog - Medium

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Fixing Godot MCP in Cursor on WSL
Ryan Carter · 2026-04-29 · via DEV Community

Ryan Carter

If godot-mcp won't connect in Cursor on WSL, the real culprit is almost always that Cursor is a Windows app trying to launch a Linux Node binary it can't see. The fix is to set wsl.exe as the command in mcp.json and pass node plus the absolute Linux path as arguments. Two smaller gotchas usually compound the problem along the way: tildes (~) don't expand inside JSON, and JSON config files don't allow // comments.

This post walks through all three issues in the order I hit them, with the working mcp.json config at the end.

TL;DR

  • Symptom: Cursor logs show Server not yet created, returning empty offerings and the MCP server never connects.
  • Root cause: Cursor runs on Windows; your node lives in WSL. Cursor can't see it.
  • Fix: Use "command": "wsl.exe" and put node plus the absolute path in "args".
  • Two side bugs: ~ doesn't expand in JSON values, and // comments break JSON parsing silently.
  • Final step: Fully restart Cursor (not just reload), then open Godot before invoking godot-mcp tools.

The Setup

I wanted to use the godot-mcp package to let Cursor's AI interact directly with Godot — launching the editor, querying project info, managing scenes, all that good stuff. I downloaded it, built it, added it to Cursor's mcp.json, and got this in the logs:

2026-03-07 10:55:11.578 [info] Server not yet created, returning empty offerings

Enter fullscreen mode Exit fullscreen mode

Not helpful.

Three Things Were Wrong

1. Tilde doesn't expand in JSON

My first config looked like this:

"args": ["~/game_dev/godot-mcp/build/index.js"]

Enter fullscreen mode Exit fullscreen mode

Cursor launches MCP servers directly without a shell, so ~ never gets expanded. It's looking for a file literally named ~. Use the full absolute path:

"args": ["/home/yourname/game_dev/godot-mcp/build/index.js"]

Enter fullscreen mode Exit fullscreen mode

2. JSON doesn't support comments

I had copied the example config which included:

"env": {
  "DEBUG": "true"   // Optional: Enable detailed logging
}

Enter fullscreen mode Exit fullscreen mode

That // comment is invalid JSON and will silently break parsing. Remove it.

3. Cursor is a Windows app — it can't see your WSL Node

This was the real one. Even after fixing the path and the comment, the server still wouldn't start. The reason: Cursor runs on Windows. When it tries to execute node, it's looking for a Windows binary — not the one you installed inside WSL.

My WSL Node worked fine in the terminal. Cursor had no idea it existed.

Worth noting: if you're using nvm inside WSL, this compounds the problem. Cursor doesn't run your shell init files, so even if nvm is configured in your .bashrc or .zshrc, Cursor won't pick it up. You can't just point at node and expect it to resolve.

The Fix

Use wsl.exe as the command, and pass your WSL path as an argument. Windows knows how to find wsl.exe, and it bridges the call into your Linux environment:

"godot": {
  "command": "wsl.exe",
  "args": ["node", "/home/yourname/game_dev/godot-mcp/build/index.js"],
  "env": {
    "DEBUG": "true"
  },
  "disabled": false,
  "autoApprove": [
    "launch_editor",
    "run_project",
    "get_debug_output",
    "stop_project",
    "get_godot_version",
    "list_projects",
    "get_project_info",
    "create_scene",
    "add_node",
    "load_sprite",
    "export_mesh_library",
    "save_scene",
    "get_uid",
    "update_project_uids"
  ]
}

Enter fullscreen mode Exit fullscreen mode

After a full Cursor restart (not just reload), the MCP server showed as connected.

One More Thing

Most of the useful godot-mcp tools require Godot's editor to be open with your project loaded. The MCP connects to a running editor instance — it's not fully standalone. So once Cursor shows the server as connected, open Godot before you start using tools like get_project_info or launch_editor.

FAQ

Why does wsl.exe work when node doesn't?

Windows knows where wsl.exe is via PATH, and wsl.exe knows how to invoke programs inside your WSL distribution. So wsl.exe node /home/.../index.js is really "Windows runs wsl.exe, which runs Linux node, which runs your script." The Linux Node binary stays inside WSL where it belongs.

Do I need to do anything special for nvm?

If node is managed by nvm inside WSL, the first command in args should be nodewsl.exe will resolve it through your default WSL shell PATH for non-interactive invocations. If that fails, replace "node" with the absolute path to the active nvm node binary (e.g. /home/you/.nvm/versions/node/v20.11.0/bin/node).

Why a full Cursor restart instead of a reload?

MCP servers are launched as child processes of Cursor at startup. A reload reuses the parent process and may keep stale state. A full quit + relaunch forces Cursor to reread mcp.json and respawn the servers cleanly.

Does this same approach work for other MCP servers on WSL?

Yes. Any MCP server that's installed inside WSL and run via node (or python, etc.) hits the same problem and uses the same fix — "command": "wsl.exe" with the interpreter and absolute Linux path as args. Servers installed as native Windows binaries don't need this.

Why does my JSON look fine but Cursor still ignores it?

The two silent killers are // line comments (invalid JSON, parsers reject the whole file) and trailing commas (also invalid JSON in strict parsers). If Cursor isn't picking up your config at all, paste the file into a JSON validator first.