AgentBridge MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AGENTBRIDGE_MODEL | No | The model identifier to use. | |
| AGENTBRIDGE_API_KEY | Yes | The API key for the OpenAI-compatible endpoint. | |
| AGENTBRIDGE_API_BASE | No | The base URL of the OpenAI-compatible endpoint. | |
| AGENTBRIDGE_STATE_DIR | No | Directory where state is written. Defaults to .agentbridge/ unless provided. | |
| AGENTBRIDGE_WORKSPACE | Yes | The workspace root directory for the agent. | |
| AGENTBRIDGE_ALLOWED_ROOTS | No | Semicolon-separated additional allowed root directories to constrain the server further. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| delegate_taskB | Create an asynchronous secure coding task. Returns only its task and conversation handles. |
| get_taskA | Get a compact task receipt; does not expose model transcripts or tool logs. |
| continue_taskA | Resume a paused or failed task using its persisted conversation. |
| get_diffB | Get a small audited change record for a task or file. Full source and tool logs are excluded. |
| cancel_taskA | Cancel a task. It can no longer be resumed. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool targets a distinct operation: retrieving a task receipt, resuming a task, fetching a diff, canceling, and delegating. There is no overlap or ambiguity between these actions.
All tool names follow a consistent verb_noun pattern (get_task, continue_task, get_diff, cancel_task, delegate_task) using lowercase snake_case throughout.
Five tools is a well-scoped size for a task orchestration server, covering the essential lifecycle (create, read, resume, cancel, diff) without bloat or redundancy.
The tool set covers the full task lifecycle including creation, retrieval, resumption, cancellation, and change auditing. A minor gap is the lack of a list/query tool, but the design using handles makes it acceptable.