FeedbackJar
MCP Integration ✓ 2 minutes setup

FeedbackJar + OpenClaw

~/.openclaw/openclaw.json (mcp.servers)

OpenClaw manages MCP servers in ~/.openclaw/openclaw.json under mcp.servers. Use the CLI to add FeedbackJar as a remote HTTP server and project tools into your agent runs.

How to connect FeedbackJar to OpenClaw

1

Create an API key

bash
export FEEDBACKJAR_API_KEY="fj_live_..."
2

Add via CLI (recommended)

bash
openclaw mcp set feedbackjar '{
  "url": "https://api.feedbackjar.com/mcp",
  "transport": "streamable-http",
  "headers": {
    "Authorization": "Bearer ${FEEDBACKJAR_API_KEY}"
  }
}'

The CLI writes to mcp.servers in your OpenClaw config automatically.

3

Or edit openclaw.json directly

json
{
  "mcp": {
    "servers": {
      "feedbackjar": {
        "url": "https://api.feedbackjar.com/mcp",
        "transport": "streamable-http",
        "headers": {
          "Authorization": "Bearer ${FEEDBACKJAR_API_KEY}"
        }
      }
    }
  }
}

Config lives at ~/.openclaw/openclaw.json on a standard install.

4

Verify the connection

bash
openclaw mcp list
openclaw mcp probe feedbackjar

# Then ask your agent:
# "List the top 5 open bugs in FeedbackJar"

What you get

  • CLI: openclaw mcp set for quick setup
  • Streamable HTTP transport
  • Header-based Bearer auth
  • openclaw mcp probe to test connectivity
  • Per-server tool filters and timeouts
  • Projects into embedded agent runtimes

Close the loop from OpenClaw

Users report bugs through your widget. Your agent reads the top votes via MCP, ships the fix, and every voter gets notified.

Start Free Trial 7-day free trial · No credit card required

Frequently Asked Questions

Looking for the full tool reference? Read the MCP Server docs →