Skip to main content
Glama
Nirmai3799
by Nirmai3799

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
PLANNER_MODELNoOptional model identifier for the planner agent. Defaults to whatever the provider uses.
OPENAI_API_KEYYesAPI key for OpenAI (or another provider via PLANNER_MODEL). Required.
TAVILY_API_KEYYesAPI key for Tavily search used by the Scout agent. Required.

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
get_itineraryA

Read the current itinerary for a trip: the place, how many days, and every activity already planned, grouped by day. Call this first.

add_activityA

Add one activity to a specific day of the trip. day must be between 1 and the trip's length. Put the practical notes in details: why it's worth doing, roughly how long it takes, and anything to book ahead.

remove_activityA

Remove an activity by its id. Ids are shown in square brackets by get_itinerary.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.3/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: reading the itinerary, adding an activity, and removing an activity. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow the same verb_noun pattern with snake_case: get_itinerary, add_activity, remove_activity. This is fully consistent and predictable.

Tool Count5/5

Three tools is well-scoped for a simple trip planner. Each tool earns its place, and the count is neither too thin nor excessive for the apparent purpose.

Completeness4/5

The set covers the core lifecycle of reading, adding, and removing activities. The only minor gap is the lack of an update operation, but this can be worked around with remove_activity followed by add_activity.

Maintenance

ActivitySlowing
ResponsivenessNo issues