We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/banned104/godot-docs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•337 B
#!/usr/bin/env python3
"""
Godot MCP Server - Main Entry Point
Serves Godot documentation through MCP with stdio transport
"""
from fastmcp import FastMCP
# Initialize FastMCP server
mcp = FastMCP(
name="godot-docs-server",
instructions="""
This server provides tools for interacting with Godot documentation.
"""
)