MCP Integration
The Hytale Docs MCP server provides semantic search over documentation and Java class lookup for AI assistants. It supports the Streamable HTTP transport.
Server URL: https://hytale-docs-mcp.craftserve.com/~mcp
Claude Code
Section titled “Claude Code”Run in your terminal:
claude mcp add craftserve-hytale-docs --transport http https://hytale-docs-mcp.craftserve.com/~mcpClaude Desktop
Section titled “Claude Desktop”Claude Desktop supports remote MCP servers via Settings > Connectors > “Add custom connector”. Select “Streamable HTTP” as the transport type and enter the server URL.
Alternatively, for older versions or if you prefer config files, use mcp-remote:
Add to your Claude Desktop config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{ "mcpServers": { "craftserve-hytale-docs": { "command": "npx", "args": ["mcp-remote", "https://hytale-docs-mcp.craftserve.com/~mcp"] } }}VS Code / GitHub Copilot
Section titled “VS Code / GitHub Copilot”Add to .vscode/mcp.json in your project:
{ "servers": { "craftserve-hytale-docs": { "type": "http", "url": "https://hytale-docs-mcp.craftserve.com/~mcp" } }}Cursor
Section titled “Cursor”Add to .cursor/mcp.json in your project:
{ "mcpServers": { "craftserve-hytale-docs": { "url": "https://hytale-docs-mcp.craftserve.com/~mcp" } }}Windsurf
Section titled “Windsurf”Add to ~/.codeium/windsurf/mcp_config.json:
{ "mcpServers": { "craftserve-hytale-docs": { "serverUrl": "https://hytale-docs-mcp.craftserve.com/~mcp" } }}Add to Cline’s MCP settings (accessible via the extension settings):
{ "mcpServers": { "craftserve-hytale-docs": { "url": "https://hytale-docs-mcp.craftserve.com/~mcp" } }}JetBrains IDEs
Section titled “JetBrains IDEs”Go to Settings > Tools > AI Assistant > MCP Servers and add:
{ "mcpServers": { "craftserve-hytale-docs": { "url": "https://hytale-docs-mcp.craftserve.com/~mcp" } }}Run in your terminal:
amp mcp add craftserve-hytale-docs https://hytale-docs-mcp.craftserve.com/~mcpGo to Settings > AI > Manage MCP Servers and add:
{ "craftserve-hytale-docs": { "url": "https://hytale-docs-mcp.craftserve.com/~mcp" }}Available Tools
Section titled “Available Tools”Once connected, your AI assistant will have access to:
| Tool | Description |
|---|---|
search_docs | Semantic search over documentation. Returns matching sections with snippets. |
get_content | Fetch full page or section content by slug. Supports anchors for specific sections. |
get_classes | Look up Java class metadata by name. Returns declaration, fields, and methods. |