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

chatgrid-mcp

v0.2.0

Published

MCP server for ChatGrid — give your AI assistant access to your team's project knowledge boards

Readme

chatgrid-mcp

MCP server for ChatGrid — give your AI assistant access to your team's project knowledge boards.

Works with Claude Code, Claude Desktop, and any MCP-compatible client.

Quick start

npx chatgrid-mcp

Setup

1. Get your API key

Go to chatgrid.ai/settings/api-keys and create an API key.

2. Configure Claude Code

Add to your project's .mcp.json:

{
  "mcpServers": {
    "chatgrid": {
      "command": "npx",
      "args": ["-y", "chatgrid-mcp"],
      "env": {
        "CHATGRID_API_KEY": "your-api-key-here"
      }
    }
  }
}

Or for Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "chatgrid": {
      "command": "npx",
      "args": ["-y", "chatgrid-mcp"],
      "env": {
        "CHATGRID_API_KEY": "your-api-key-here"
      }
    }
  }
}

Environment variables

| Variable | Required | Description | | ------------------ | -------- | -------------------------------------------------------------- | | CHATGRID_API_KEY | Yes | Your ChatGrid API key | | CHATGRID_API_URL | No | Override the API base URL (default: https://api.chatgrid.ai) |

Available tools

Board Management

list_boards

List all boards the user has access to.

Example: "What boards do I have on ChatGrid?"

create_board

Create a new project board.

| Parameter | Type | Required | Description | | --------- | ------ | -------- | ---------------------- | | name | string | Yes | Name for the new board |

Example: "Create a new ChatGrid board called 'Backend Architecture'"

Knowledge Management

add_resource

Add a YouTube video, URL, or text document to a board. Automatically vectorizes the content for AI search.

| Parameter | Type | Required | Description | | ---------- | ---------------------------------- | -------- | ------------------------------- | | board_id | string | Yes | Board ID to add the resource to | | type | "youtube" | "url" | "text" | Yes | Resource type | | content | string | Yes | URL or text content | | label | string | No | Optional label for the resource |

Example: "Add this YouTube video to my Architecture board: https://youtube.com/watch?v=..."

search_board

Semantic search across all content on a board.

| Parameter | Type | Required | Description | | ---------- | ------ | -------- | ----------------------------- | | board_id | string | Yes | Board ID to search | | query | string | Yes | Search query | | limit | number | No | Max results (1-20, default 5) |

Example: "Search my Architecture board for anything about database sharding"

ask_board

Ask an AI question grounded in the board's knowledge. Searches the board first, then generates an answer based on the found content.

| Parameter | Type | Required | Description | | ---------- | ------ | -------- | --------------------- | | board_id | string | Yes | Board ID to ask about | | question | string | Yes | Question to ask |

Example: "Based on my Architecture board, what database should we use for the user service?"

Node Operations

add_note

Add a quick note, decision, or learning to a board.

| Parameter | Type | Required | Description | | ---------- | ------ | -------- | --------------------------- | | board_id | string | Yes | Board ID to add the note to | | content | string | Yes | Note content | | label | string | No | Optional label |

Example: "Add a note to my Architecture board: Decided to use PostgreSQL for the user service"

list_nodes

List all nodes on a board with their types and labels.

| Parameter | Type | Required | Description | | ---------- | ------ | -------- | -------------------------- | | board_id | string | Yes | Board ID to list nodes for |

Example: "What's on my Architecture board?"

Development

# Install dependencies
npm install

# Build
npm run build

# Watch mode
npm run dev

License

MIT