MCP Project Bridge
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Project Bridgeshare the users API contract with the frontend team"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Project Bridge
MCP Project Bridge is a Streamable HTTP MCP server for sharing messages between registered Git remote projects through a central SQLite database. It is designed for multi-project or multi-device work where one project needs to leave structured notes, API contracts, implementation status, or handoff messages for another project.
The server writes only to its own central database. It does not create files inside the projects being bridged.
How It Works
Projects are identified by Git remotes, not local paths. A project must be registered before it can send, receive, or inspect messages.
On registration, the server parses the Git remote into a canonical key:
The canonical key is a single lower-case string in
host/namespace/projectstyle.Multi-level namespaces are preserved, such as
github.com/org/team/repo.The database stores the original remote from the first registration.
Later registrations of the same canonical key do not overwrite the original remote or project description.
The key is not an alias system. Different remote strings only refer to the same project when they canonicalize to the same key.
Messages are stored in a central inbox model:
A direct message has a sender project key, a target project key, and a
docKey.A direct target must already be registered, otherwise the write fails.
A broadcast message has a sender project key and a
docKey, with no target project key.Reusing the same sender, target, and
docKeycreates a new version of the same message.Passing
messageIdupdates that message, but only the sender project can update it.Read state is tracked per viewer project, per
deviceId, and per message version.read_unread_messagesmarks only the returned latest versions as read for that device.A later message version becomes unread again for devices that have not read that version.
Broadcast messages are hidden from normal inbox reads unless withBroadcast: true is passed.
Related MCP server: Chronos MCP
Local Setup
Requirements:
Node.js 20 or newer
Yarn 1.x
Install and build:
yarn install
yarn buildStart the Streamable HTTP server:
MCP_PROJECT_BRIDGE_TOKEN=change-me node dist/index.jsOn PowerShell:
$env:MCP_PROJECT_BRIDGE_TOKEN = "change-me"
node dist/index.jsThe server listens on 127.0.0.1:3000 by default and exposes the MCP endpoint at /mcp.
Configure your MCP client to use a Streamable HTTP endpoint such as http://127.0.0.1:3000/mcp, and send Authorization: Bearer change-me on every request.
The HTTP transport is stateless: the server does not create MCP sessions, does not return MCP-Session-Id, and does not expose a standalone GET SSE stream. Normal request responses use Content-Type: application/json. GET /mcp and DELETE /mcp return 405. CORS is open for browser-based clients with Access-Control-Allow-Origin: *; authentication still requires the Bearer token and credentials/cookies are not used.
Optional environment variables:
MCP_PROJECT_BRIDGE_HOST: listen host, default127.0.0.1MCP_PROJECT_BRIDGE_PORT: listen port, default3000MCP_PROJECT_BRIDGE_TOKEN: required Bearer token
Database Location
By default, the database is stored in the user data directory:
Windows:
%APPDATA%\\mcp-project-bridge\\bridge.sqliteLinux and WSL:
$XDG_DATA_HOME/mcp-project-bridge/bridge.sqlite, or~/.local/share/mcp-project-bridge/bridge.sqlite
Set MCP_PROJECT_BRIDGE_DB to choose a database file:
MCP_PROJECT_BRIDGE_TOKEN=change-me MCP_PROJECT_BRIDGE_DB=/data/bridge.sqlite node dist/index.jsDocker Image
Build the image:
docker build -t mcp-project-bridge:latest .Run it as a Streamable HTTP MCP server:
docker run --rm \
-p 3000:3000 \
-e MCP_PROJECT_BRIDGE_TOKEN=change-me \
-v mcp-project-bridge-data:/data \
mcp-project-bridge:latestThe image sets MCP_PROJECT_BRIDGE_DB=/data/bridge.sqlite and MCP_PROJECT_BRIDGE_HOST=0.0.0.0, so mount /data to keep messages across container restarts and publish the container port as needed. The HTTP endpoint is http://<host>:3000/mcp.
Remote Key Rules
Use a Git remote URL when calling tools. The server canonicalizes it and stores the resulting project key.
Examples:
https://github.com/Org/Repo.git -> github.com/org/repo
git@github.com:Org/Repo.git -> github.com/org/repo
ssh://git@github.com/org/team/Repo.git -> github.com/org/team/repoRules:
The remote must include a host, namespace, and project.
The canonical key is lower-case and keeps
/separators.The database stores the original remote string only on first project registration.
Tool inputs use remotes such as
currentProjectRemoteandtargetProjectRemote; callers should send remotes, not local paths or legacy path-based keys.
Tools
register_project
Register a Git remote project and optionally upsert the current device.
{
"remote": "https://github.com/example/backend.git",
"deviceId": "desktop",
"projectDescription": "Backend service",
"deviceDescription": "Windows desktop"
}deviceId is optional. Registering a target project before a direct send can use only remote and projectDescription.
{
"remote": "git@github.com:example/frontend.git",
"projectDescription": "Frontend app"
}On first registration, the project remote and project description are saved. Later registrations of the same canonical key only upsert device information when deviceId is provided.
list_projects
List registered projects and device summaries. Use this to discover valid direct targets.
{
"query": "frontend",
"limit": 20
}query matches the canonical key, original remote, or project description.
upsert_message
Create or update a direct or broadcast message.
{
"currentProjectRemote": "https://github.com/example/backend.git",
"targetProjectRemote": "git@github.com:example/frontend.git",
"docKey": "users-api",
"title": "Users API",
"content": "GET /users\nPOST /users",
"format": "markdown",
"tags": ["api", "users"]
}The current project must be registered before writing. For direct messages, targetProjectRemote must also be registered before writing.
Omit targetProjectRemote, pass null, or pass an empty string to create a broadcast message:
{
"currentProjectRemote": "https://github.com/example/backend.git",
"docKey": "release-note",
"title": "Backend Release",
"content": "Backend release is ready",
"tags": ["release"]
}Supported formats are markdown, text, and json. The default format is markdown.
read_unread_messages
Read unread inbox messages for the current project device and mark the returned latest versions as read for that device.
{
"currentProjectRemote": "git@github.com:example/frontend.git",
"deviceId": "server",
"withBroadcast": true,
"limit": 20
}The current project and deviceId must be registered first with register_project.
list_messages
List latest inbox message summaries for the current project device without changing read state.
{
"currentProjectRemote": "git@github.com:example/frontend.git",
"deviceId": "server",
"withBroadcast": true,
"query": "users",
"tags": ["api"],
"limit": 20
}get_message_history
Read version history for a message without changing read state.
{
"currentProjectRemote": "git@github.com:example/frontend.git",
"messageId": 1,
"withBroadcast": true,
"limit": 10
}Direct message history is visible to the sender and target project. Broadcast history is visible to the sender, and to other projects only when withBroadcast: true is passed.
Typical Workflow
Pick the current project's Git remote and a stable user/device-provided
deviceId.Call
register_projectwith the current remote anddeviceIdbefore any read or write.For direct messages, make sure the target remote is registered first. Use
list_projectsto check existing targets, or manually callregister_projectfor the target remote.Send or update messages with
upsert_messageand a stabledocKey.Read new messages with
read_unread_messageswhen marking them read is acceptable.Use
list_messagesto search or inspect without marking anything read.Use
get_message_historywhen prior versions of a message matter.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Tenko-Star/mcp-project-bridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server