Overview

The Reforge Insights MCP (Model Context Protocol) server provides direct access to your feedback data through AI clients like Claude Desktop, Claude Code, and others. This integration allows you to query your insights data naturally using AI assistants.

Installation

To install, follow the directions for the client of your choice below. After you connect your client, you will need to restart the client in order to load the tools and authenticate. If you normally sign in to Reforge Insights from a specific browser or browser profile, ensure that it was the last browser active. The authentication process will ask you to sign in, or if you are already signed in, it will quickly open and close your browser.

Claude Desktop

To connect Claude Desktop to the Reforge Insights MCP server:
  1. Open Claude Desktop
  2. Go to SettingsDeveloper
  3. Click Edit Config
  4. Add the following configuration to your claude_desktop_config.json:
{
  "mcpServers": {
    "reforge-insights": {
      "command": "npx",
      "args": ["mcp-remote", "https://insights.reforge.com/api/v1/mcp"]
    }
  }
}
If you already have other MCP servers configured, simply add the "reforge-insights" section to your existing "mcpServers" object.

Claude Code

To connect Claude Code to the Reforge Insights MCP server:
  1. In your terminal, run: claude mcp add --transport http reforge-insights https://insights.reforge.com/api/v1/mcp
  2. Start Claude code and enter /mcp to find the reforge-insights server. Click enter on it to authenticate. It will ask to open your browser. Ensure you’re in a browser session that has access to your Reforge Insights account.

ChatGPT (OpenAI)

We do not currently support ChatGPT. ChatGPT MCP Servers are only available with two very narrowly defined tools, fetch and search, which would limit what we want to allow with our system.

Cursor

To add the MCP server to Cursor:
  1. Open Cursor settings
  2. Navigate to the MCP configuration section
  3. Add the server configuration:
{
  "mcpServers": {
    "reforge-insights": {
      "command": "npx",
      "args": ["mcp-remote", "https://insights.reforge.com/api/v1/mcp"]
    }
  }
}

Windsurf

For Windsurf IDE:
  1. Access the MCP settings in Windsurf
  2. Add the Reforge Insights server:
{
  "mcp": {
    "servers": {
      "reforge-insights": {
        "command": "npx",
        "args": ["mcp-remote", "https://insights.reforge.com/api/v1/mcp"]
      }
    }
  }
}

Continue

For Continue in VS Code:
  1. Open the Continue extension settings
  2. Edit the MCP configuration:
{
  "mcpServers": {
    "reforge-insights": {
      "command": "npx",
      "args": ["mcp-remote", "https://insights.reforge.com/api/v1/mcp"]
    }
  }
}

Cline (formerly Claude Dev)

For Cline VS Code extension:
  1. Open Cline settings in VS Code
  2. Configure the MCP server:
{
  "mcp": {
    "servers": {
      "reforge-insights": {
        "command": "npx",
        "args": ["mcp-remote", "https://insights.reforge.com/api/v1/mcp"]
      }
    }
  }
}

Authentication

The MCP server uses your existing Reforge Insights authentication. Make sure you’re logged in to your Reforge Insights account in your browser, as the server will use your session cookies for API access.

Available Features

Once connected, you can:
  • Query feedback data using natural language
  • Analyze themes and trends in your feedback
  • Search and filter feedback records

Troubleshooting

Connection Issues:
  • Ensure you have npx installed (npm install -g npx)
  • Verify your Reforge Insights account has API access
  • Check that you’re logged in to Reforge Insights in your browser
Configuration Issues:
  • Validate your JSON configuration syntax
  • Restart your AI client after making configuration changes
  • Check the client’s documentation for MCP-specific setup requirements
For additional support, contact our team through your Reforge Insights dashboard.