Skip to main content
One sentence: ChatGrid is where your team’s project knowledge lives — YouTube videos, PDFs, docs, decisions — on a visual board that AI can search and answer from.

Get started in your IDE

Pick your tool. One config file. Done.

Claude Code

Add to .mcp.json — works instantly

Cursor

MCP config in settings — same setup

Windsurf

MCP config in settings — same setup
.mcp.json
{
  "chatgrid": {
    "command": "npx",
    "args": ["chatgrid-mcp"],
    "env": { "CHATGRID_API_KEY": "cgk_live_..." }
  }
}
Then talk to your AI naturally:
> Create a ChatGrid board for the payments project
> Add this YouTube tutorial to the board: https://youtube.com/watch?v=...
> Search the board for webhook verification
> What does our architecture doc say about rate limiting?

How it works

1

Create a board

One board per project. Takes 5 seconds.
2

Add knowledge

YouTube videos, PDFs, blog posts, architecture docs, decisions. Everything is vectorized automatically.
3

AI answers from your sources

Ask questions. Get answers grounded in your actual content. Not hallucinated.

Why ChatGrid?

Your team’s knowledge dies in Slack threads and wikis nobody updates. Memory tools like claude-mem remember what one dev did. ChatGrid remembers what the whole team knows.
claude-memSlackWikiChatGrid
Who benefitsOne devTeam, temporarilyTeam, theoreticallyTeam, permanently
External knowledgeNoLinks that dieManual pagesYouTube, PDFs, URLs — auto-vectorized
AI can search itNoNoNoYes
VisualNoNoNoSpatial canvas

Quick start (API)

# Create a board
curl -X POST https://api.chatgrid.ai/v1/boards \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name": "My Project"}'

# Add a YouTube video
curl -X POST https://api.chatgrid.ai/v1/boards/{boardId}/documents/vectorize \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://youtube.com/watch?v=..."}'

# Search it
curl -X POST https://api.chatgrid.ai/v1/boards/{boardId}/documents/search \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "how does this work?"}'

Next steps

MCP Setup (2 min)

Add ChatGrid to your IDE

Use Cases

Onboarding, shared knowledge, learning

Quickstart

Build your first project board

API Reference

Full endpoint documentation