HytaleModding.dev MCP Server
Provides AI tools with access to HytaleModding.dev documentation through search and page retrieval, enabling modding assistance in natural language.
README
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 |
|---|---|---|---|---|
query |
string | yes | Search query text | |
locale |
string | no | "en" |
Locale code |
limit |
number | no | 10 |
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 |
|---|---|---|---|
path |
string | yes | Page path, e.g. /en/docs/official-documentation/custom-ui/markup |
Prerequisites
- Node.js 18+
- npm
Setup
npm install
npm run build
Running 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:
a
Cursor
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.js
Development
Watch mode recompiles on file changes:
npm run dev
Testing 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/null
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.