Skip to content
NPGameDev

July 18, 2026

First steps with the Godot MCP Server

Connect an AI agent to a running Godot project and drive the editor from the outside.

  • Godot
  • MCP
  • AI agents

This draft exists to verify the tutorials pipeline end to end. It stays out of the listing until draft is removed.

Install the addon

Drop the server addon into your project and enable it:

extends Node

func _ready() -> void:
	# The MCP server starts with the project when the plugin is enabled.
	print("MCP server listening")

Talk to it from an agent

claude mcp add godot -- npx godot-mcp-server --port 6010

More soon.