Brain Bridge

Brain Bridge

Multi-conversation collaboration MCP server enabling cross-conversation memory, task delegation, and parallel workflow orchestration.

Category
Visit Server

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

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

πŸ“„ License

This project is licensed under the MIT License β€” see the LICENSE file for details.

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured