Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
CLAUDE_MODELNoModel identifier for the Claude model.claude-sonnet-4-5
ANTHROPIC_API_KEYNoYour Anthropic API secret key. Not needed for local mode.
ANTHROPIC_BASE_URLNoBase URL for the Anthropic API. Used for local proxy.http://localhost:4000

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": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
read_doc_contentsC

Read the contents of a doc and return it as a string

edit_documentA

Edit a document by replacing a string in the documents content with a new string

Prompts

Interactive templates invoked by user choice

NameDescription
formatRewrites the contents of the document in Markdown format.

Resources

Contextual data attached and managed by the client

NameDescription
list_docs

TDQS

B3.3/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have clearly distinct purposes: reading content versus modifying content. An agent can trivially tell them apart with no overlap in intent.

Naming Consistency4/5

Both names follow a verb_noun pattern (read_doc_contents, edit_document), which is largely consistent. Minor deviation: one uses 'doc' and the other 'document', an inconsistency in noun form.

Tool Count3/5

Two tools is thin for a document-oriented server; it covers only reading and in-place editing. It is borderline minimal but defensible for a tightly scoped use case.

Completeness3/5

Core read and edit operations exist, but the surface lacks create, delete, append, or list operations, which are common document lifecycle needs. The string-replacement edit also limits editing to exact-match substitutions.

Maintenance

ActivityInactive
ResponsivenessNo issues