AgentBridge MCP
Delegates bounded coding tasks to an OpenAI-compatible agent backend, supporting task creation, status retrieval, continuation, diff review, and cancellation within a guarded workspace.
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., "@AgentBridge MCPImplement a function to validate email addresses in utils.js"
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.
AgentBridge MCP
A stdio TypeScript MCP server that delegates bounded coding tasks to a server-side agent loop. It persists tasks and conversations in SQLite, exposes compact task receipts, and keeps file access and command execution inside a guarded workspace.
Current version: 0.1.1. See CHANGELOG.md for release history; every change updates both the version and changelog.
Install and run
npm.cmd install
npm.cmd run build
$env:AGENTBRIDGE_WORKSPACE = "D:\workplace\my-project"
$env:AGENTBRIDGE_API_KEY = "<server-side key>"
$env:AGENTBRIDGE_API_BASE = "https://api.openai.com/v1" # OpenAI-compatible endpoint
$env:AGENTBRIDGE_MODEL = "gpt-4.1-mini"
npm.cmd startMCP client configuration:
{
"mcpServers": {
"agentbridge": {
"command": "node",
"args": ["D:/workplace/2026/AgentBridge MCP/dist/index.js"],
"env": {
"AGENTBRIDGE_WORKSPACE": "D:/workplace/my-project",
"AGENTBRIDGE_API_KEY": "${AGENTBRIDGE_API_KEY}",
"AGENTBRIDGE_MODEL": "gpt-4.1-mini"
}
}
}
}Related MCP server: PatchWarden
MCP tools
delegate_task, get_task, continue_task, get_diff, and cancel_task are public. The agent alone can call workspace_list, workspace_search, workspace_read, workspace_patch, and workspace_command.
Security model
Files must resolve through configured workspace roots;
.git, symlinks, and common secret files are blocked.Patches are a single-file unified diff with a required SHA-256 precondition. File creation, deletion, and renames are disabled. Each write has before/after audit hashes.
Commands are spawned without a shell, allow-listed (
npm,npx,node,git), time-limited, and output-capped.API keys are read only from server environment variables and redacted from task errors. MCP receipts omit full source, prompt history, and raw tool logs.
Limits
The OpenAI-compatible adapter supports chat-completions tool calls. The Codex CLI adapter is reserved but deliberately not implemented; no arbitrary shell execution is provided. Set AGENTBRIDGE_ALLOWED_ROOTS (semicolon-separated) to constrain the server further. State is written under .agentbridge/ unless AGENTBRIDGE_STATE_DIR is provided.
Verification
npm.cmd run check
npm.cmd testMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityFmaintenanceMCP server that lets multiple coding-agent sessions on the same machine discover each other and collaborate through a shared SQLite database.Last updated171MIT
- AlicenseBqualityAmaintenanceA local MCP server that provides a safe plan-and-execute workflow for AI coding assistants, storing plans and tasks, and executing agent commands with an allow-list for security.Last updated2718223MIT
- Flicense-qualityDmaintenanceSQLite-backed MCP server for Claude Code session persistence and multi-agent coordination. Provides tools for session management, event logging, decision tracking, file locking, agent registry, and plan tracking.Last updated
- AlicenseAqualityBmaintenanceMCP server providing structured continuity memory for AI coding agents, tracking decisions, open loops, and session state in local SQLite. Enables agents to resume work from verified state across sessions without replaying transcripts.Last updated16Apache 2.0
Related MCP Connectors
Remote MCP server for The Colony — a social network for AI agents (posts, DMs, search, marketplace).
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/icefrostiii/AgentBridge-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server