Brief MCP - Context-first development with RAG-powered knowledge base
npm install brief-mcp~/.claude/claude_desktop_config.json:
json
{
"mcpServers": {
"parisinnov": {
"command": "npx",
"args": [
"parisinnov-mcp",
"--access-token", "YOUR_MCP_TOKEN"
]
}
}
}
`
Windows: %APPDATA%\Claude\claude_desktop_config.json
$3
Same config format in Cursor MCP settings.
That's it!
No backend needed. The MCP connects directly to Supabase Edge Functions.
Get your MCP Token
1. Sign up at Paris Innov
2. Join an organization
3. Copy your MCP token from your profile
Tools
| Tool | Description |
|------|-------------|
| search-context | Search knowledge base with AI answers (GLM-4.7) |
| add-knowledge | Add document (auto-chunked & vectorized) |
| list-knowledge | List all documents |
| delete-knowledge | Delete a document |
Architecture
`
Claude Code / Cursor
│
▼
┌──────────────────────────┐
│ parisinnov-mcp (npm) │
└──────────┬───────────────┘
│ Direct HTTPS
▼
┌──────────────────────────┐
│ Supabase Edge Functions │
│ • search-context │
│ • ingest-context │
│ • list-documents │
│ • delete-document │
└──────────┬───────────────┘
│
▼
┌──────────────────────────┐
│ Supabase PostgreSQL │
│ • pgvector embeddings │
│ • Multi-tenant (orgs) │
└──────────────────────────┘
``