FeedbackJar
MCP Integration ✓ 2 minutes setup

FeedbackJar + Grok CLI

~/.grok/config.toml or .grok/config.toml

Grok CLI manages MCP servers in ~/.grok/config.toml (or .grok/config.toml per project). Add FeedbackJar as an HTTP MCP server and triage your feedback backlog from the Grok TUI.

How to connect FeedbackJar to Grok CLI

1

Create an API token

bash
# Workspace key: fj_live_...
# Export it so Grok can expand ${FEEDBACKJAR_API_KEY}:
export FEEDBACKJAR_API_KEY="fj_live_..."

Grok expands ${VAR} in url, headers, and env at load time — keep secrets out of config.toml.

2

Option A — CLI (fastest)

bash
grok mcp add --transport http feedbackjar \
  https://api.feedbackjar.com/mcp \
  --header "Authorization: Bearer ${FEEDBACKJAR_API_KEY}"

Add --scope project to write .grok/config.toml in the current repo instead of ~/.grok/config.toml.

3

Option B — config.toml

toml
[mcp_servers.feedbackjar]
url = "https://api.feedbackjar.com/mcp"
bearer_token_env_var = "FEEDBACKJAR_API_KEY"
enabled = true

# Or with explicit headers:
# [mcp_servers.feedbackjar]
# url = "https://api.feedbackjar.com/mcp"
# headers = { Authorization = "Bearer ${FEEDBACKJAR_API_KEY}" }

Edit ~/.grok/config.toml, or create .grok/config.toml in the project for team-shared MCP config.

4

Verify and use

bash
grok mcp list
grok mcp doctor feedbackjar

# In the Grok TUI, open /mcps to toggle servers.
# Then ask: "What are the top open bugs in FeedbackJar?"

grok inspect shows every loaded MCP server and where it came from (config.toml, Cursor, or Claude compat).

What you get

  • CLI: grok mcp add for quick setup
  • TOML config (~/.grok/config.toml)
  • HTTP transport with Bearer auth
  • Project-scoped .grok/config.toml
  • grok mcp doctor for connectivity checks
  • Also loads Cursor/Claude MCP configs

Close the loop from Grok CLI

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 →