Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

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
}
prompts
{
  "listChanged": true
}
resources
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
get_greetingB

Returns a personalized welcome message.

calculateA

Performs arithmetic operations (add, subtract, multiply, divide, power).

fetch_weatherA

Fetches live weather forecast for any city using Open-Meteo.

add_noteA

Stores a new note in server memory.

list_notesA

Lists all available notes stored in server memory.

Prompts

Interactive templates invoked by user choice

NameDescription
code_reviewAnalyzes source code and provides a structured, multi-dimensional code review.
summarize_notesInstructs the LLM to summarize all stored notes in the server.

Resources

Contextual data attached and managed by the client

NameDescription
system-infoReturns host platform, Node.js version, memory usage, and server uptime

TDQS

A4/5.0

Scored across 5 tools

Disambiguation5/5

Each tool addresses a distinct function: greeting, arithmetic, weather, and note management. There is no overlap or ambiguity between them.

Naming Consistency5/5

Tool names follow a consistent snake_case verb pattern, mostly verb_noun (get_greeting, fetch_weather, add_note, list_notes). 'calculate' is a lone verb but still fits the predictable style.

Tool Count5/5

Five tools is a reasonable size for a simple utility server. Each tool has a clear purpose and none feel redundant or excessive.

Completeness4/5

Core functionality for each utility is present, but note management lacks delete or update operations. This is a minor gap for a simple note-taking feature, not a critical omission.

Maintenance

ActivityMaintained
ResponsivenessNo issues