Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
GROK_AGENT_CWDNoDefault working directory for new sessions..
GROK_AGENT_SECRETYesShared secret for serve auth. Must match the agent's --secret value.
GROK_AGENT_WS_URLNoWebSocket URL for the Grok agent server. If missing, /ws is appended. Default: ws://127.0.0.1:2419ws://127.0.0.1:2419

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
grok_session_createA

Create a new ACP session on the local Grok Build agent (session/new). Returns sessionId.

grok_session_loadA

Load/resume an existing ACP session (session/load).

grok_promptA

Send a user prompt (session/prompt), wait for turn completion, and return aggregated agent text plus a tool-call summary. Optional includeThoughts.

grok_cancelA

Cancel an in-flight prompt turn via ACP session/cancel notification. The corresponding grok_prompt call should then finish with stopReason cancelled.

grok_statusA

Return connection status: connected?, initialized, sessionIds, lastError, wsUrl.

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 has a clearly distinct role: create or load a session, send a prompt, cancel an in-flight prompt, or check connection status. There is no meaningful overlap between any two tools.

Naming Consistency4/5

All tools share the consistent grok_ prefix and use snake_case, which makes them recognizable as a family. Minor inconsistency exists because some names use verb-object order (session_create, session_load) while others are single verbs or nouns (prompt, cancel, status).

Tool Count5/5

Five tools is well-scoped for a focused Grok Build ACP client. Each tool covers a necessary part of the session lifecycle and interaction flow without redundancy or bloat.

Completeness4/5

The tool surface covers the core workflow: session creation/loading, prompting, cancellation, and status checks. A session deletion/close tool is a minor missing piece, but agents can still complete practical workflows without it.

Maintenance

ActivityMaintained
ResponsivenessNo issues