npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

brioright-mcp

v1.7.0

Published

MCP server for Brioright — lets AI assistants (Claude, Cursor, ChatGPT) create, search, analyse and manage tasks via natural language

Readme

Brioright MCP Server

Connect AI assistants (Claude Desktop, Cursor, Antigravity) directly to your Brioright workspace.

Transport Modes

This server supports two transport modes:

  1. Stdio mode (Local): Runs as a subprocess for local clients like Claude Desktop or Cursor.
  2. HTTP/SSE mode (Cloud): Runs as a persistent web server for cloud-based AI assistants (like Antigravity).

Quick Setup (Easiest Way)

Instead of manually editing JSON configuration files, you can use our interactive setup wizard to automatically connect your IDE to Brioright:

npx -y brioright-mcp connect

You will simply be prompted for your API Key and Workspace ID. The wizard supports injecting settings into VS Code (Roo/Cline), Cursor, Windsurf, and Antigravity automatically.


Manual Setup

1. Generate an API Key

Log in to Brioright, then run from your browser console:

const res = await fetch('/api/api-keys', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  credentials: 'include',
  body: JSON.stringify({ name: 'My MCP Client' })
});
console.log(await res.json());

Save the key!

2. Configure the MCP Server

cp .env.example .env

Edit .env:

BRIORIGHT_API_URL=https://brioright.online/api
BRIORIGHT_API_KEY=brio_your_key_here
BRIORIGHT_WORKSPACE_ID=your-workspace-slug

# Leave unset (or "stdio") for Claude Desktop
# Set to "http" for cloud clients like Antigravity
MCP_TRANSPORT=http
MCP_PORT=4040
MCP_SECRET=change_me_to_a_strong_secret

3A. Connect to Claude Desktop (Local)

Add to %APPDATA%\Claude\claude_desktop_config.json:

{
  "mcpServers": {
    "brioright": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-server/index.js"],
      "env": {
        "BRIORIGHT_API_URL": "...",
        "BRIORIGHT_API_KEY": "...",
        "BRIORIGHT_WORKSPACE_ID": "..."
      }
    }
  }
}

3B. Connect Cloud AI (Remote)

Deploy the server with MCP_TRANSPORT=http (via PM2). Provide the cloud AI assistant your MCP server base URL: http://your-server-ip:4040/sse And pass the Authorization Header: Bearer your_secure_bearer_token.

Available Tools

| Tool | Description | |------|-------------| | list_workspaces | List all accessible workspaces | | list_projects | List projects in a workspace | | list_tasks | List tasks with optional status/priority filter | | get_task | Get full task details | | duplicate_task | Duplicate an existing task | | create_task | Create a task with title, priority, due date, assignee | | update_task | Update any fields on a task | | complete_task | Mark a task as done | | create_project | Create a new project | | list_members | List workspace members (for finding assignee IDs) | | get_workspace_summary | Dashboard stats: task counts by status/priority | | bulk_create_tasks | Create multiple tasks at once | | add_comment | Add a comment to a task | | get_task_comments | Get all comments for a given task | | log_time | Log time entry for a project/task | | add_task_attachment | Upload a file attachment to a task using a Base64 encoded string | | get_task_attachments | List all file attachments for a specific task |