# HytaleModder

Access the Hytale API documentation to build mods and custom content efficiently. Search for specific classes, interfaces, and enums to understand the game's internal structure. Retrieve detailed tec…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add goustkor/hytalemodder

# Browse available tools
npx -y smithery tool list goustkor/hytalemodder

# Get full schema for a tool
npx -y smithery tool get goustkor/hytalemodder search_hydocs_classes

# Call a tool
npx -y smithery tool call goustkor/hytalemodder search_hydocs_classes '{}'
```

## Direct MCP Connection

Endpoint: `https://hytalemodder--goustkor.run.tools`

## Tools (2)

- `search_hydocs_classes` — Search for Hytale API classes, interfaces, and enums by name. Returns a list of matching classes with their types.
- `read_hydocs_class_docs` — Read the full documentation for a specific Hytale API class, interface, or enum. Returns the complete markdown document…

```bash
# Get full input/output schema for a tool
npx -y smithery tool get goustkor/hytalemodder <tool-name>
```
