FormLoom

MCP setup

Add the FormLoom MCP server to your AI coding tool.

The FormLoom MCP server lets AI coding tools wire a working form into your codebase. Tools: get_snippet, provision_endpoint, create_form, list_submissions, get_form.

stdio (npx)

.cursor/mcp.json
{
  "mcpServers": {
    "formloom": {
      "command": "npx",
      "args": ["-y", "@formloom/mcp"]
    }
  }
}

HTTP

Prefer HTTP? POST JSON-RPC to /api/mcp. It implements initialize, tools/list, and tools/call.

bash
curl -X POST https://api.formloom.ai/api/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_snippet","arguments":{"framework":"nextjs"}}}'

See the per-tool pages (/mcp/cursor, /mcp/claude-code, …) for tool-specific config paths.

MCP setup — Docs · FormLoom