Skip to main content
Glama
phamviet86

codex-hermes-a2a-bridge

by phamviet86

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
CODEX_A2A_PORTNoInbound bind port.9910
CODEX_A2A_HOS TNoInbound bind host.127.0.0.1
HERMES_A2A_TOKENNoOptional outbound bearer token, read from env only.
HERMES_A2A_ENDPOINTNoOutbound Hermes A2A root; loopback only.http://127.0.0.1:9900
CODEX_WORKSPACE_ROOTNoWorkspace used by Codex.[current directory]
CODEX_A2A_BEARER_TOKENNoRequired before a non-loopback bind/public URL.
CODEX_A2A_GATEWAY_BACKENDNo`app-server` or explicit `cli`.app-server
CODEX_A2A_GATEWAY_MAX_TURNSNoPer-context anti-loop budget.5
CODEX_A2A_GATEWAY_STATE_PATHNoSQLite file; mode 0600.[platform state directory]
CODEX_A2A_GATEWAY_CLI_FALLBACKNoLimited fallback for a new context only.false
CODEX_A2A_GATEWAY_MAX_CONCURENCYNoPer-process execution limit. The MCP adapter and inbound gateway are separate processes, so this is not a global cap across both.4
CODEX_A2A_GATEWAY_APPROVAL_POLICYNo`never`, `untrusted`, or `on-request`.never

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": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
hermes_statusA

Check bridge persistence, Hermes health, connectivity, and a concise Agent Card summary.

hermes_chatB

Start or continue a Hermes conversation; returns a durable bridge task and A2A context mapping.

hermes_task_getB

Get a task/result; optionally acknowledge a consumed result_id with expected_origin verification.

hermes_tasks_listA

List durable bridge tasks, optionally filtered by conversation and bridge state.

hermes_task_waitA

Wait for task progress/result using the active stream, A2A subscribe, then polling fallback.

hermes_task_cancelA

Request task cancellation; response is explicit that Hermes may continue underlying computation.

hermes_contextsA

List, inspect, or close bridge-owned conversation/context mappings; close never deletes Hermes data.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.8/5.0

Scored across 7 tools

Disambiguation4/5

Most tools have clearly distinct purposes: chat/context management, task retrieval, cancellation, listing, waiting, and bridge status. The main possible confusion is between hermes_task_get and hermes_task_wait, since both can surface task results, but their descriptions distinguish immediate retrieval from waiting behavior.

Naming Consistency4/5

All tools use the hermes_ prefix and snake_case, which makes the set predictable overall. Minor deviations exist because some names are noun-only (hermes_chat, hermes_contexts, hermes_status) and task/tasks singular-plural usage varies.

Tool Count5/5

Seven tools is well-scoped for a bridge server focused on Hermes conversation/context and A2A task lifecycle. Each tool has a distinct operational role, and the set avoids unnecessary surface area.

Completeness5/5

The surface covers conversation start/continue, context list/inspect/close, task list/get/wait/cancel, and bridge health/status. Result acknowledgment and origin verification are included in hermes_task_get, so the core A2A bridge lifecycle appears complete.

Maintenance

ActivityMaintained
ResponsivenessNo issues