~/.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.
export FEEDBACKJAR_API_KEY="fj_live_..." 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.
{
"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.
openclaw mcp list
openclaw mcp probe feedbackjar
# Then ask your agent:
# "List the top 5 open bugs in FeedbackJar" Users report bugs through your widget. Your agent reads the top votes via MCP, ships the fix, and every voter gets notified.