LIVE ENDPOINT
https://tools.moddable.games/mcp
Connect to this endpoint to inspect the live schema for chess_generate_puzzle and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.moddable-tools]
url = "https://tools.moddable.games/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"moddable-tools": {
"type": "http",
"url": "https://tools.moddable.games/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: moddable-tools
Remote MCP URL: https://tools.moddable.games/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"moddable-tools": {
"url": "https://tools.moddable.games/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"moddable-tools": {
"type": "http",
"url": "https://tools.moddable.games/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "moddable-tools",
"transport": "streamable-http",
"url": "https://tools.moddable.games/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
chess_list_puzzle_types— List available puzzle variants, themes, and per-variant counts from the puzzle poolchess_list_variants— [DEPRECATED — use play_list_variants] List chess variants.chess_get_legal_moves— [DEPRECATED — use play_create_game + play_get_moves] Get legal moves for a chess position.chess_analyze_position— [DEPRECATED — use play_suggest_move] Analyse a chess position.chess_make_move— [DEPRECATED — use play_apply_move] Apply a move to a chess game.chess_validate_move— [DEPRECATED — use play_validate_move] Check if a chess move is legal.chess_get_status— [DEPRECATED — use play_check_status] Get chess game status.chess_render_svg— [DEPRECATED — use play_render_board] Render a chess position as SVG.