HytaleModding.dev MCP Server
Click on "Install 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., "@HytaleModding.dev MCP Serversearch docs for NPC template"
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.
HytaleModding.dev MCP Server
An MCP (Model Context Protocol) server that provides AI tools with access to the HytaleModding.dev documentation. Run it locally and connect it to Claude Desktop, Cursor, Windsurf, or any MCP-compatible client.
Watch how Claude uses it to built out a user interface: HytaleModding MCP Server Demo
Tools
search_docs
Search the documentation index. Returns matching pages and sections grouped by page with URLs and breadcrumb paths.
Parameter | Type | Required | Default | Description |
| string | yes | Search query text | |
| string | no |
| Locale code |
| number | no |
| Limits the number of pages returned |
get_doc
Fetch the full content of a documentation page, converted from HTML to readable text.
Parameter | Type | Required | Description |
| string | yes | Page path, e.g. |
Related MCP server: Roblox Documentation MCP Server
Prerequisites
Node.js 18+
npm
Setup
npm install
npm run buildRunning the server
The MCP-server communicates over stdio (stdin/stdout) using JSON-RPC, which is how MCP clients launch and talk to it, so there's
no need to have an ever-running server. AI clients will trigger the requests directly against the dist/index.js file (refer
to the testing manually section).
Client configuration
Claude Desktop
Add to your claude_desktop_config.json:
aCursor
Go to Cursor Settings > Tools & Integrations > MCP Tools and add:
{
"mcpServers": {
"hytalemodding-docs": {
"command": "node",
"args": ["/absolute/path/to/hytalemodding-mcp-server/dist/index.js"]
}
}
}Windsurf
Open Command Palette > Windsurf MCP Configuration Panel and add the same JSON block as above.
Claude Code
Run this from any directory:
claude mcp add hytalemodding-docs node /absolute/path/to/hytalemodding-mcp-server/dist/index.jsDevelopment
Watch mode recompiles on file changes:
npm run devTesting manually
You can pipe JSON-RPC messages to the server over stdio to test:
# Initialize and list tools
printf '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}}}\n{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}\n' | node dist/index.js 2>/dev/null
# Search for documentation
printf '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}}}\n{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_docs","arguments":{"query":"NPC template"}}}\n' | node dist/index.js 2>/dev/null
# Fetch a specific doc page
printf '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}}}\n{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_doc","arguments":{"path":"/en/docs/quick-start"}}}\n' | node dist/index.js 2>/dev/nullMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseAqualityDmaintenanceProvides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context.7211MIT
- -licenseNot gradedqualityNot gradedmaintenanceEnables AI agents to intelligently search and retrieve Roblox documentation through semantic search and vector embeddings, providing natural language access to complete Roblox Creator Documentation.

ProudNet Document MCPofficial
AlicenseBqualityDmaintenanceProvides AI tools with access to ProudNet documentation through search, page retrieval, and section listing capabilities. Enables users to query ProudNet networking library documentation using natural language.38MIT- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to access and search MkDocs documentation through tools for full-text search, page navigation, and code block extraction. It serves documentation pages as readable resources and provides structural outlines to help LLMs navigate documentation content.MIT
Related MCP Connectors
Provide your AI coding tools with token-efficient access to up-to-date technical documentation for…
Search @imqueue docs and scaffold typed services & clients from your AI coding agent.
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jmrapp1/HytaleModding.dev-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server