Codex Peer
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| peer_healthA | Connect to a peer Codex app-server and run initialize. |
| peer_messageC | Send a natural-language message to a peer Codex thread. |
| peer_waitA | Check a previously-started peer turn without treating long work as failure. |
| peer_wait_until_completeA | Quietly wait for a previously-started peer turn and return only when it completes or the wait window ends. |
| peer_threadsC | List peer Codex threads. |
| peer_readB | Read a peer Codex thread and summarize its recent turns. |
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 6 tools
Each tool has a clearly distinct purpose: health check, sending messages, reading threads, listing threads, and two distinct waiting behaviors (non-blocking check vs. blocking wait). No confusion between tools.
All tools follow the consistent peer_<verb> or peer_<verb_phrase> pattern in snake_case, making naming predictable and readable.
With 6 tools, the set is well-scoped for interacting with peer Codex threads. Each tool fulfills a necessary function without redundancy or sprawl.
The tool surface covers essential operations: health check, message send, read, list, and wait. Minor missing functionality (e.g., explicit turn initiation) but not severely incomplete.