Brain Bridge
Multi-conversation collaboration MCP server enabling cross-conversation memory, task delegation, and parallel workflow orchestration.
README
<p align="center"> <h1 align="center">π§ Brain Bridge</h1> <p align="center"> <strong>Multi-conversation collaboration for <a href="https://github.com/google-deepmind/antigravity">Antigravity</a></strong> </p> <p align="center"> An MCP Server + VS Code Extension that enables cross-conversation memory, task delegation, and parallel workflow orchestration. </p> <p align="center"> <a href="./README_CN.md">π δΈζζζ‘£</a> β’ <a href="#quick-start">Quick Start</a> β’ <a href="#mcp-tools-reference">MCP Tools</a> β’ <a href="#license">License</a> </p> </p>
β¨ Features
π MCP Server
- Cross-conversation artifact access β Read, list, and search artifacts across all Antigravity conversations
- Shared notes β Write notes accessible by any conversation (
_shared/directory) - Task delegation β Spawn headless child conversations to parallelize complex work
- Task monitoring β Check status, results, and manage delegated sub-tasks
π₯οΈ VS Code Extension
- Sidebar UI β Dedicated activity bar panel with three views:
- π Delegated Tasks β Real-time task status with inline actions (check result, focus, cancel)
- π¬ Conversations β Browse all Antigravity conversations and their artifacts
- π Shared Notes β View notes written by any conversation
- One-click delegation β Delegate tasks from the command palette or status bar
- Auto-refresh β Tasks update automatically every 5 seconds
- File watcher β Instant pickup of MCP-delegated tasks
ποΈ Architecture
brain-bridge/
βββ src/ # MCP Server (TypeScript)
β βββ index.ts # Server with 8 MCP tools
βββ ext/ # VS Code Extension
β βββ src/
β βββ extension.ts # Extension entry point
β βββ task-delegation.ts # Task delegation manager
β βββ task-tree-provider.ts # TreeView data providers
βββ .agents/ # Agent skills
β βββ skills/parallel-delegation/
βββ test/ # Test suite
βββ package.json
Data directory: ~/.gemini/antigravity/brain/
<uuid>/β Conversation artifacts (task.md, implementation_plan.md, etc.)_shared/β Cross-conversation shared notes_tasks/β Delegated task state files
π Quick Start
Prerequisites
- Node.js β₯ 18
- Antigravity (or any MCP-compatible IDE)
1. Install the MCP Server
# Clone the repository
git clone https://github.com/0xlicy/antigravity-brain-bridge.git
cd antigravity-brain-bridge
# Install dependencies & build
npm install
npm run build
2. Configure MCP
Add the following to your MCP client configuration (e.g., Antigravity settings):
{
"mcpServers": {
"brain-bridge": {
"command": "node",
"args": ["/absolute/path/to/antigravity-brain-bridge/dist/index.js"]
}
}
}
Tip: Replace
/absolute/path/to/with the actual path where you cloned the repo.
3. Install the VS Code Extension (Optional)
cd ext
# Install dependencies & build
npm install
npm run build
# Package and install
npm run package
# Then install the generated .vsix file in Antigravity / VS Code
4. Verify
Once configured, you can use the MCP tools in any conversation:
# List all conversations
β list_conversations
# Search across all artifacts
β search_artifacts(query: "authentication")
# Delegate a task to a child conversation
β delegate_task(task: "Write unit tests for the auth module")
π MCP Tools Reference
| Tool | Description |
|---|---|
list_conversations |
List all Antigravity conversations with summaries |
list_artifacts |
List artifact files in a specific conversation |
read_artifact |
Read the full content of a conversation artifact |
search_artifacts |
Full-text search across all artifacts |
write_shared_note |
Write a note to the shared _shared/ directory |
delegate_task |
Delegate a task to a new child conversation |
check_task_result |
Check the status and result of a delegated task |
list_delegated_tasks |
List all delegated tasks with optional status filter |
π οΈ Development
# Build the MCP server
npm run build
# Run the MCP server
npm start
# Run tests
npm test
Extension development:
cd ext
# Watch mode (rebuild on changes)
npm run dev
# Package into .vsix
npm run package
π€ Contributing
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
π License
This project is licensed under the MIT License β see the LICENSE file for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.