FeedbackJar
MCP Integration ✓ 1 minute setup

FeedbackJar + Cursor

.cursor/mcp.json (project) or ~/.cursor/mcp.json (global)

Cursor supports HTTP MCP servers via project or global config. Add FeedbackJar once and your agent can read top-voted bugs, pull widget metadata, and close the loop from the editor.

How to connect FeedbackJar to Cursor

1

Create an API key

bash
# Workspace key (one project): Dashboard → Settings → API keys
# Account key (all workspaces): Account → API Keys

# Workspace keys start with fj_live_
# Account keys start with fj_user_

See the API Keys guide for workspace vs account key tradeoffs.

2

Add to .cursor/mcp.json

json
{
  "mcpServers": {
    "feedbackjar": {
      "type": "http",
      "url": "https://api.feedbackjar.com/mcp",
      "headers": {
        "Authorization": "Bearer fj_live_..."
      }
    }
  }
}

Create .cursor/mcp.json in your project root, or edit ~/.cursor/mcp.json for a global setup.

3

Account key — pin to one workspace (optional)

json
{
  "mcpServers": {
    "feedbackjar": {
      "type": "http",
      "url": "https://api.feedbackjar.com/mcp",
      "headers": {
        "Authorization": "Bearer fj_user_...",
        "X-Organization-Id": "your_workspace_id"
      }
    }
  }
}

With X-Organization-Id set, tools behave like a workspace key — no organization_id param needed.

4

Reload and try it

bash
# In Cursor chat, ask:
What are the top open bugs in FeedbackJar?

# Or:
Get post cm1abc123 and summarize the widget metadata.

Restart Cursor or reload the window if the server doesn't appear immediately.

What you get

  • Project or global MCP config
  • HTTP transport with Bearer auth
  • Works in Agent and Chat modes
  • Supports env var expansion in headers
  • Full FeedbackJar tool suite
  • Organization scoped access

Close the loop from Cursor

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 →