Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
MCP_AGENTSNoComma-separated allowlist of agents to expose (codex,cursor,opencode,claude,agy). Unset or empty exposes all agents.
MCP_CONFIRMNoSet to '1', 'true', 'on', or 'all' to require confirmation before any agent tool spawns a CLI. Default off.0
MCP_AGENT_TIMEOUT_MSNoTotal runtime cap in milliseconds for agent runs. Default 1800000 (30 minutes).1800000
MCP_AGENT_IDLE_TIMEOUT_MSNoIdle (inactivity) timeout in milliseconds for agent runs. Default 300000 (5 minutes).300000

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
pingA

Liveness check for agent-mcp-hub — returns "pong". Read-only, no side effects.

list_agentsA

List the wrapped coding-agent CLIs and whether each can actually run (edits nothing). Each entry reports installed (binary resolves on PATH with the exec bit) and usable (a probe succeeded), plus a reason when it cannot run; available mirrors usable. A CLI can be installed but unusable — codex exits 0 from --version even when its home is unwritable and no real run can succeed — so prefer usable. Read-only; call this first to choose an agent before delegating.

codexA

OpenAI Codex — a terminal coding agent (GPT/o-series) that autonomously reads and edits files to implement, refactor, and fix code. Runs the codex CLI non-interactively in cwd — it can read and edit files there and may take time or use the agent's own model quota — and returns its output. On common failures returns a classified, actionable error (not installed / not authenticated with the exact login command / not configured / timed out / busy / output-limit); other non-zero exits return a clipped stderr/stdout tail. Check availability with list_agents first.

claudeA

Claude Code — Anthropic's coding agent for complex implementation, refactoring, and code review. Runs the claude CLI non-interactively in cwd — it can read and edit files there and may take time or use the agent's own model quota — and returns its output. On common failures returns a classified, actionable error (not installed / not authenticated with the exact login command / not configured / timed out / busy / output-limit); other non-zero exits return a clipped stderr/stdout tail. Check availability with list_agents first.

run_allA

Fan the SAME prompt out to every enabled agent concurrently and return each agent's answer, labelled per agent — for comparing agents or cross-checking a result. Spawns every CLI (each can read/edit files in cwd) so it can be slow or use several agents' quotas; one confirmation covers the whole batch.

review_changeA

Run the runner agent in cwd (which edits files), capture the concrete git diff of the change, then have the reviewer agent judge it and return a PASS/WARN/FAIL verdict along with the runner output, the diff, and the review. Requires a git worktree. Newly-created (untracked) files are reviewed by their contents too (bounded per file), not just by name. The diff may include pre-existing changes if the worktree was already dirty.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

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/blackaxgit/agent-mcp-hub'

If you have feedback or need assistance with the MCP directory API, please join our Discord server