← WebMobi Events MCP

Connect to Claude

Two minutes. You need a WebMobi account (the free plan works).

Easiest: one-click (OAuth)

In Claude, add a custom connector with just the URL below and leave the OAuth fields blank. Claude registers itself, you approve one consent screen (signed in to WebMobi), and you are connected — no key to copy.

https://events.webmobi.com/api/mcp

Or connect with an API key (PAT):

  1. 1. Mint an API key

    Open Settings → API keys, click Generate key, and copy the wm_live_… value. It is shown once. For a browse-only connection, choose a read-only key.

  2. 2a. Clients that support remote MCP (direct HTTP)

    Add a custom connector with this config:

    {
      "mcpServers": {
        "webmobi": {
          "url": "https://events.webmobi.com/api/mcp",
          "headers": { "Authorization": "Bearer wm_live_YOUR_KEY" }
        }
      }
    }
  3. 2b. Claude Desktop (stdio via mcp-remote)

    Add to your Claude Desktop MCP config:

    {
      "mcpServers": {
        "webmobi": {
          "command": "npx",
          "args": ["-y", "mcp-remote", "https://events.webmobi.com/api/mcp",
                   "--header", "Authorization: Bearer wm_live_YOUR_KEY"]
        }
      }
    }
  4. 3. Start with “Who am I?”

    Ask Claude to call webmobi_whoami to confirm the connection and see your plan and limits. Then try: “Create a draft webinar on Sept 1 and publish it.”

Both methods act only on your own events and never touch your password. Revoke access anytime from Settings → API keys.