Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
OPENAI_API_KEYNoAPI key for OpenAI or compatible endpoints (required if using OpenAI models)
ANTHROPIC_API_KEYNoAPI key for Anthropic model access (required if using Anthropic models)

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
tasks
{
  "cancel": {},
  "create": {},
  "respond": {}
}
tools
{
  "listChanged": false
}

Tools

Functions exposed to the LLM to take actions

NameDescription
docs_searchA

Look up the available downstream tools by name or substring. Call this BEFORE writing an execute_code script to learn what's available.

execute_codeA

Run a JavaScript snippet inside a sandboxed kernel. The snippet may call callTool(name, args) to invoke any downstream tool. Only the snippet's final return value (or the value assigned to __finalAnswer__) is returned to you — intermediate tool outputs stay in the sandbox. Use this to chain many tool calls in one round.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.4/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have completely distinct purposes: docs_search for discovering downstream tools, and execute_code for running code that calls them. There is no overlap or confusion.

Naming Consistency5/5

Both tool names follow a consistent verb_noun pattern with snake_case: docs_search and execute_code.

Tool Count5/5

Two tools is exactly right for this server's purpose as a meta-agent: search to discover, execute to run. It's minimal but complete.

Completeness5/5

The tool surface fully covers the intended workflow: discovering available downstream tools and executing code that chains them. There are no obvious gaps.

Maintenance

ActivityActive
ResponsivenessWithin a week