Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
AGENTBRIDGE_MODELNoThe model identifier to use.
AGENTBRIDGE_API_KEYYesThe API key for the OpenAI-compatible endpoint.
AGENTBRIDGE_API_BASENoThe base URL of the OpenAI-compatible endpoint.
AGENTBRIDGE_STATE_DIRNoDirectory where state is written. Defaults to .agentbridge/ unless provided.
AGENTBRIDGE_WORKSPACEYesThe workspace root directory for the agent.
AGENTBRIDGE_ALLOWED_ROOTSNoSemicolon-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

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.9/5.0

Scored across 5 tools

Disambiguation5/5

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.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (get_task, continue_task, get_diff, cancel_task, delegate_task) using lowercase snake_case throughout.

Tool Count5/5

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.

Completeness4/5

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.

Maintenance

ActivityMaintained
ResponsivenessSyncing