Claude Desktop

Connect Claude Desktop to your Clawnify org with a downloadable MCPB bundle. After install, the gateway’s tools (clawnify.execute, clawnify.docs_search, your apps’ direct procedures) are available in every Claude Desktop conversation.

Install

1. Download the bundle

You’ll need a Clawnify account. Log in at app.clawnify.com, then download the bundle from your terminal:

curl -fsSL https://api.clawnify.com/v1/mcpb \
  -H "Authorization: Bearer $YOUR_TOKEN" \
  -o clawnify.mcpb

$YOUR_TOKEN is your personal access token from the dashboard.

2. Install in Claude Desktop

Double-click clawnify.mcpb. Claude Desktop opens its install dialog.

3. Paste your token

The dialog prompts for Clawnify access token (and optionally an Org ID if you have multiple orgs). Paste the same token you used to download the bundle. Claude Desktop stores it in your OS keychain.

4. Verify

In a new Claude Desktop conversation, ask:

List the tools you have available from Clawnify.

You should see clawnify.execute, clawnify.docs_search, clawnify.list_apps, and any per-app direct tools from your org.

Manual config (alternative)

If you’d rather skip the MCPB and configure the stdio bridge directly, install the Clawnify CLI:

npm install -g clawnify
clawnify login

Then add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or the equivalent on your OS:

{
  "mcpServers": {
    "clawnify": {
      "command": "clawnify",
      "args": ["mcp"]
    }
  }
}

Restart Claude Desktop. Same effect, manual config.

Troubleshooting

  • “CLAWNIFY_TOKEN env var missing” — the token field is empty. Open Claude Desktop → Settings → Clawnify → paste your token.
  • “401 Unauthorized” in responses — your token has expired. Re-copy from the dashboard and update the value in Claude Desktop’s settings.
  • No Clawnify tools appear — make sure your account has an active org with at least one agent provisioned. The tools/list call needs an org context to resolve.