Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
PORTNoServer port3157
LOG_LEVELNoLogging levelinfo
XAI_API_KEYNoX.AI API key
CODEX_API_KEYNoCodex API key (optional if ChatGPT login available)
GEMINI_API_KEYNoGoogle Gemini API key (takes priority over GOOGLE_API_KEY)
GOOGLE_API_KEYNoAlternative Google API key
OPENAI_API_KEYNoOpenAI API key
MISTRAL_API_KEYNoMistral API key
DEEPSEEK_API_KEYNoDeepSeek API key
MCP_TOOL_TIMEOUTNoTool timeout in ms (system-wide)
OPENROUTER_TITLENoOpenRouter title
ANTHROPIC_API_KEYNoAnthropic API key
CODEX_SANDBOX_MODENoCodex sandbox moderead-only
OPENROUTER_API_KEYNoOpenRouter API key
OPENROUTER_REFERERNoOpenRouter referer
SUMMARIZATION_MODELNoModel for summarizationgpt-5-nano
CODEX_SKIP_GIT_CHECKNoSkip git checktrue
CODEX_APPROVAL_POLICYNoCodex approval policynever
MAX_MCP_OUTPUT_TOKENSNoMax output tokens (system-wide)
OPENROUTER_DYNAMIC_MODELSNoEnable dynamic modelstrue
ENABLE_RESPONSE_SUMMARIZATIONNoEnable AI-generated summariesfalse

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
{}
prompts
{}
resources
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
chatA

UNIFIED CHAT — talk to one or more AI models. mode "chat" (default): 1..N models answer independently in parallel. mode "consensus": ≥2 models answer, then refine after seeing each other. mode "roundtable": models answer sequentially, each building on the running transcript. Supports files, images, and continuation_id for multi-turn threads (you may switch modes on resume). Use model "auto" for automatic selection. IMPORTANT: use the "files" parameter to share code/file content instead of pasting into the prompt.

check_statusA

Check the status and progress of async jobs. Query specific jobs by continuation_id or list the 10 most recent jobs. Returns job status with start time and progress information.

cancel_jobA

Cancel a running async job by its continuation_id.

Terminates queued or running jobs with graceful cleanup. Preserves partial results when available.

Prompts

Interactive templates invoked by user choice

NameDescription
helpComprehensive guide for Converse MCP Server - tools, models, parameters, and configuration

Resources

Contextual data attached and managed by the client

NameDescription
Help DocumentationComprehensive guide for the Converse MCP Server including all tools, parameters, providers, and models

TDQS

A4.1/5.0

Scored across 3 tools

Disambiguation5/5

chat, check_status, and cancel_job have clearly distinct roles: starting/resuming conversations, inspecting job progress, and canceling jobs. There is no meaningful overlap or ambiguity between any pair of tools.

Naming Consistency4/5

check_status and cancel_job follow a clean verb_noun pattern, and chat is a simple imperative verb that fits the conversational focus. The slight deviation from the verb_noun style is minor and does not hurt usability.

Tool Count5/5

Three tools is a minimal but well-scoped set for a chat-focused server. Each tool earns its place: the main chat capability plus the two async-job management tools needed to support long-running conversations.

Completeness4/5

The core workflow of starting a chat, checking async job status, and canceling jobs is covered. The main gap is the lack of a dedicated result-fetching tool if completed outputs are not returned directly by chat or check_status.

Maintenance

ActivityActive
ResponsivenessNo issues