Skip to main content
Glama

Get activity details

get_activity_details
Read-onlyIdempotent

Returns full details for one enrichment activity identified by its "slug": description, provider organization, location, age range, categories, policies, photos, and its sessions. Each session carries dates, local start and end times with timezone, price and any price tiers, capacity and spots remaining, waitlist availability, drop-in availability, meeting days, and a "share_url" — a link to that session's registration page on enrichment.kids, where registration and payment are completed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesActivity URL slug returned by search_activities (e.g., 'summer-coding-camp-petaluma').

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already establish read-only and idempotent behavior. The description adds substantial behavioral context by enumerating the exact fields returned (description, provider, sessions, prices, capacity, etc.) and disclosing that registration/payment happen externally via the share_url. This goes well beyond what annotations provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that leads with the action and resource, then provides a detailed list of return contents. Every listed item adds value and the length is justified by the tool's rich output. No fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description must explain return values, and it does so comprehensively for both activity-level and session-level details, including the external registration flow. The single parameter is fully documented via the schema, making the description complete for this tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema covers 100% of parameters and already describes slug as the URL slug returned by search_activities. The description only repeats 'identified by its slug' without adding new meaning. Since schema coverage is high, the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Returns') and resource ('full details for one enrichment activity') with a clear identifier ('slug'). It distinguishes itself from siblings like search_activities (which lists activities) and get_provider_info (which gets provider info) by focusing on detailed per-activity retrieval.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies a workflow: the slug is returned by search_activities, and this tool follows to retrieve full details. This gives clear context for when to use it. However, it doesn't explicitly name alternatives or state when not to use it, so it falls just short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: search_activities returns listings, get_activity_details provides full session-level details for a specific activity, and get_provider_info focuses on provider profiles. No overlap or ambiguity exists between them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case: search_activities, get_activity_details, get_provider_info. This makes the API predictable and easy to navigate.

Tool Count5/5

With 3 tools, the server is well-scoped for its purpose of discovering and viewing enrichment activities. Each tool has a clear role, and the count falls comfortably within the ideal 3-15 range.

Completeness4/5

The core consumer workflow of searching, viewing details, and checking provider info is fully covered. Registration is intentionally handled externally via share_url, so there are no dead ends. A minor missing feature could be a categories endpoint, but search already accepts category filters.

Resources