MCP Server

The Brie MCP server lets AI agents interact with your Brie bug reports via the Model Context Protocol.

Install

npm install -g @briehq/mcp

Or run directly:

npx -y @briehq/mcp

Setup wizard

The fastest way to get started:

briehq-mcp init

This walks you through entering your API key, testing the connection, and generating the config for your AI client.

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "brie": {
      "command": "npx",
      "args": ["-y", "@briehq/mcp"],
      "env": {
        "BRIE_API_KEY": "brie_pat_your_key_here"
      }
    }
  }
}

Claude Code

claude mcp add brie -e BRIE_API_KEY=brie_pat_your_key_here -- npx -y @briehq/mcp

Available tools

ToolScopeDescription
list_slicesslices:readList bug reports with filtering and pagination
get_sliceslices:readGet a single bug report by ID
create_sliceslices:writeCreate a new bug report
update_sliceslices:writeUpdate status, priority, description, labels
delete_sliceslices:deleteDelete a bug report
list_workspacesworkspaces:readList accessible workspaces
get_workspaceworkspaces:readGet workspace details
list_spacesspaces:readList spaces within a workspace
get_meuser:readGet current user profile

Example prompts

Once connected, try asking your AI agent:

  • "List all open bugs in my workspace"
  • "Create a bug report: checkout page throws 500 on mobile Safari"
  • "Mark slice abc123 as resolved"
  • "What workspaces do I have access to?"

Configuration

VariableRequiredDefaultDescription
BRIE_API_KEYYesYour Brie API key
BRIE_API_URLNohttps://api.briehq.comAPI base URL (use for local dev)