Boosterpack Forms
← Documentation

MCP for AI agents

Boosterpack Forms exposes a standard Model Context Protocol server. One HTTPS endpoint works with Cursor, Claude, Codex, and other MCP hosts. The protocol is the same; only how you add the URL differs.

Endpoint

https://boosterpackforms.com/api/mcp

After connecting, complete Authenticate / Connect in the host, sign in on Boosterpack Forms, and Approve on the consent screen.

Agent Plugin (recommended)

We publish a portable Agent Plugins 1.0.0 package (MCP + skill) that compatible clients can load the same way, including Cursor, Codex, Copilot, VS Code, and others. OAuth stays client-managed; the plugin only points at the HTTPS MCP endpoint.

npx plugins add Martibis/boosterpackforms

Package path in the repo: plugins/boosterpack-forms/ (plugin.json + mcp.json + skill). Then Authenticate / Connect and Approve.

Cursor

Settings → MCP → add a server with a URL (or put this in your MCP JSON config):

{
  "mcpServers": {
    "boosterpack-forms": {
      "url": "https://boosterpackforms.com/api/mcp"
    }
  }
}

Then click Authenticate and approve access.

Claude

Use a custom connector (claude.ai, Claude Desktop, Cowork):

  1. Open Settings → Connectors (or Customize → Connectors).
  2. Add custom connector → paste the MCP URL above.
  3. Add → Connect → sign in and Approve in the browser.

You do not need a Client ID/Secret for our dynamic-registration OAuth flow. Free Claude plans may limit how many custom connectors you can add.

Codex (OpenAI)

Codex CLI / IDE shares MCP config in ~/.codex/config.toml:

[mcp_servers.boosterpack-forms]
url = "https://boosterpackforms.com/api/mcp"
# OAuth is the default for remote MCP when no bearer token is set

Or via CLI:

codex mcp add boosterpack-forms --url https://boosterpackforms.com/api/mcp

Complete the OAuth / login flow when Codex prompts you (browser sign-in + Approve).

Who it's for

Prefer a manual HTML form? See /docs/html.