AI / MCP
Connect Your MCP Client
Configure Cursor, VS Code, Claude Code, or Codex-compatible clients with the FormForge wiki MCP endpoint.
Use this server URL:
https://formforge.schleret.ch/mcp
Generic MCP config
mcp.json
{
"mcpServers": {
"formforge": {
"type": "http",
"url": "https://formforge.schleret.ch/mcp"
}
}
}
Cursor and VS Code
Most MCP-enabled clients support an mcpServers JSON block with the same shape as above.
If you run a protected preview or custom host, verify the URL is reachable from your client runtime and returns MCP responses on
POST /mcp.Quick endpoint checks
If you test with curl, include both media types in Accept:
Terminal
curl -sS https://formforge.schleret.ch/mcp \
-X POST \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
--data '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'