Skip to main content
Glama
nayagamez
by nayagamez

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
CODEX_CLI_PATHNoPath to the Codex CLI binarycodex
OPENAI_API_KEYNoAPI key for authentication (alternative to ChatGPT login)
CODEX_MCP_DEBUGNoSet to enable debug logging to stderr
CODEX_TIMEOUT_MSNoIdle timeout for Codex process600000

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
codexA

Run a Codex CLI session. Executes codex exec as a subprocess and returns the result.

Use this tool to start a new coding task with Codex. The response includes a Thread ID that can be used with the codex-reply tool to continue the conversation.

codex-replyA

Continue a Codex CLI conversation by providing the thread ID from a previous codex call and a follow-up prompt.

Uses codex exec resume to load the previous session from disk and continue the conversation.

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 2 tools

Disambiguation5/5

The two tools have clearly distinct purposes: codex starts a new conversation, while codex-reply continues an existing one using a thread ID. There is no ambiguity between them, as each accepts different inputs and performs a different action.

Naming Consistency4/5

Both tool names share the 'codex' prefix, but 'codex' is a standalone verb while 'codex-reply' is a compound with a hyphen. This is a minor inconsistency, but the pattern is predictable and readable, clearly indicating the primary action and the continuation action.

Tool Count3/5

With only 2 tools, the set is on the low end of the range, but it is appropriate for the narrow scope of running Codex CLI sessions. The tools cover the essential start and continue operations, though the set feels thin compared to more comprehensive servers.

Completeness4/5

The core lifecycle of starting and continuing a conversation is covered, which covers the main use case. However, there are no tools for listing active threads, ending sessions, or retrieving session history, which are minor gaps given the focus on interactive coding tasks.

Maintenance

ActivityStale
ResponsivenessNo issues