Skip to content
MCP-Bridge
Developer Tools

Qakka Claude Desktop Config

Add the Qakka MCP server to Claude Desktop with this ready-to-use configuration.

Setup Instructions

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your credentials in the env section
  5. Restart Claude Desktop

Configuration JSON

Copy the entire block into your claude_desktop_config.json

{
  "mcpServers": {
    "apache-org-qakka": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/apache-org-qakka"
      ],
      "env": {
        "QAKKA_API_KEY": "your_qakka_api_key"
      }
    }
  }
}

Environment Variables

QAKKA_API_KEY

Replace your_qakka_api_key with your actual qakka api key

Endpoints

GET/queues

Get list of all Queues.

POST/queues

Create new queue.

DELETE/queues/{queueName}

Delete Queue.

GET/queues/{queueName}/config

Get Queue config.

PUT/queues/{queueName}/config

Update Queue configuration.

GET/queues/{queueName}/data/{queueMessageId}

Get data associated with a Queue Message.

GET/queues/{queueName}/messages

Get next Queue Messages from a Queue

POST/queues/{queueName}/messages

Send Queue Message with a binary data (blob) payload.

DELETE/queues/{queueName}/messages/{queueMessageId}

Acknowledge that Queue Message has been processed.

GET/status

Status of webapp.