Skip to main content
Glama

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 start

MCP 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 test
Install Server
F
license - not found
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • F
    license
    -
    quality
    D
    maintenance
    SQLite-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
  • A
    license
    A
    quality
    B
    maintenance
    MCP 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 updated
    16
    Apache 2.0

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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