Tools

Infrastructure for working with conversation data.

Brain MCP Server

MCP server providing access to 353K conversation messages with semantic search. For developers who want to query their own conversation history.

Capabilities

Data sources

Setup

Requires: Claude conversation exports, embedding pipeline, SQLite database.

docs coming

Embeddings Pipeline

Process for converting conversation exports into searchable embeddings. Uses OpenAI's text-embedding-3-small model.

docs coming

Replication

To build similar infrastructure for your own data:

  1. Export conversations (Claude, ChatGPT, etc.)
  2. Parse into structured format (JSON)
  3. Generate embeddings for semantic search
  4. Store in SQLite with FTS5 for hybrid search
  5. Expose via MCP for Claude Code integration

Full guide and source code coming.