Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
ZCODE_BINNoPath to the zcode CLI entry (absolute path, .cjs). Default: /Applications/ZCode.app/Contents/Resources/glm/zcode.cjs/Applications/ZCode.app/Contents/Resources/glm/zcode.cjs
ZCODE_MODELNoDefault model. Default: GLM-5.3GLM-5.3
ZCODE_PROVIDERNoPreferred account provider. Default: account:bigmodel-individual-coding-planaccount:bigmodel-individual-coding-plan
ZCODE_MCP_DEBUGNoSet to '1' to output debug logs to stderr.
ZCODE_REASONINGNoDefault reasoning level. Default: maxmax
ZCODE_DEFAULT_CWDNoFallback directory when zcode_run does not pass cwd. Default: server process cwd
ZCODE_MCP_AUTO_PROXYNoAutomatically detect macOS system proxy and forward it to the zcode subprocess (set to '0' to disable). Default: 11
ZCODE_CREDENTIAL_SECRETNoEncryption key for zcode credentials (consistent with zcode client, generally no need to set). Default: derived from machine fingerprint.

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
zcode_runA

Delegate a development task to the zcode coding agent. zcode works inside the given directory: it can read/edit files, run shell commands and git. Returns zcode's final answer plus a session_id that can be used to send follow-ups in the same conversation.

zcode_checkA

Report whether the zcode agent backend is reachable: binary path, stored credentials, available models after booting the app-server. Run this first when zcode_run fails.

zcode_sessionsA

List recent zcode sessions (id, title, directory) for a workspace, usable as session_id in zcode_run.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.2/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: zcode_run executes a task, zcode_check verifies backend health, and zcode_sessions lists past sessions. There is no overlap or ambiguity between them.

Naming Consistency4/5

All tools share the consistent 'zcode_' prefix and snake_case convention. However, 'zcode_sessions' is a noun rather than a verb-based name, deviating slightly from the verb-oriented pattern of 'zcode_run' and 'zcode_check'.

Tool Count5/5

Three tools form a well-scoped set for a coding-agent management server. Each tool serves a distinct and necessary function without bloat or redundancy.

Completeness4/5

The core workflow (check backend, run tasks, list sessions) is covered, and session_id reuse enables follow-ups. A minor gap exists in having no dedicated tool to inspect a single session's full details, but this is workable via the existing surface.

Maintenance

ActivityMaintained
ResponsivenessNo issues