Godot Docs MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Godot Docs MCP Serversearch the Godot docs for 'signals'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Godot Docs MCP Server
MCP (Model Context Protocol) server on Cloudflare Workers to search and read Godot documentation in Markdown format.
Credits & Acknowledgments
This project is a fork / adaptation of the original project godot-docs-mcp created by James Doyle.
Distributed under the same open-source license (MIT License) as the original repository.
Prerequisites: Node.js, Git
Tools
search_docs: Searches for a term and returns matching URLs.get_docs_page_for_term: Fetches the first matching page and converts it to Markdown.
Related MCP server: Godot Docs MCP
Dependencies & Indexing
Generate index files locally before the initial run.
1. Download Indexes (Git Bash)
for v in stable latest 4.7 4.6 4.5 4.4 4.3; do
mkdir -p "src/indexes/$v"
curl -o "src/indexes/$v/searchindex.js" "https://docs.godotengine.org/en/$v/searchindex.js"
done2. Convert Indexes to JSON
node convert.js3. Run MCP Server
npm install
npm run dev # Run locally (http://localhost:8787/mcp)
npm run deploy # Deploy to Cloudflare WorkersLicense
This project is licensed under the MIT License. Original code copyright (c) James Doyle. See the LICENSE file for details.
This server cannot be deployed
Maintenance
Related MCP Connectors
Search and read Rust documentation for the standard library and any crate on crates.io
DevDocs.io keyless docs index + entry search + content (Angular, MDN, Rust, etc.).
Read-only MCP server for the OrchestKit docs: full-text search + Markdown fetch. No auth.
Retrieve information from the Medusa documentation to assist you with your Medusa development.
Related MCP Servers
- AlicenseAqualityDmaintenanceA Model Context Protocol implementation that enables AI assistants to interact with markdown documentation files, providing capabilities for document management, metadata handling, search, and documentation health analysis.14160 npm58MIT
- AlicenseNot gradedqualityDmaintenanceEnables searching and retrieving Godot Engine documentation across multiple versions (stable, latest, 4.3-4.5) using fuzzy search, returning documentation content as markdown.26MIT
- AlicenseAqualityDmaintenanceProvides AI assistants with direct access to the complete Godot Engine documentation, including classes, tutorials, and features. It enables developers to retrieve and analyze official documentation through natural language interfaces using the Model Context Protocol.2MIT
- -licenseNot gradedqualityCmaintenanceEnables efficient search through Model Context Protocol documentation, supporting clients like Cursor and Claude Desktop.2-