Skip to main content
Glama
ckaraca
by ckaraca

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
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_productsA

Get all products from the store. Supports pagination with limit and sorting.

get_productB

Get detailed information about a specific product by its ID.

list_categoriesA

Get all available product categories.

get_products_by_categoryA

Get all products in a specific category. Supports pagination with limit and sorting.

list_cartsA

Get all shopping carts. Supports pagination with limit and sorting.

get_cartA

Get detailed information about a specific cart by its ID.

get_user_cartsA

Get all shopping carts for a specific user by their user ID.

list_usersB

Get all users. Supports pagination with limit and sorting.

get_userB

Get detailed information about a specific user by their ID.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.8/5.0

Scored across 9 tools

Disambiguation5/5

Each tool targets a distinct resource and action: products, categories, carts, and users each have list/get operations, with get_products_by_category and get_user_carts providing specific filtered views. There is no overlap or ambiguity between tools.

Naming Consistency5/5

All tools follow a consistent snake_case verb_noun pattern: list_* for collections and get_* for individual items. The compound names like get_products_by_category and get_user_carts remain readable and fit the same convention.

Tool Count5/5

With 9 tools, the server is well-scoped for a fake store API covering products, categories, carts, and users. Every tool serves a clear purpose without redundancy or bloat.

Completeness4/5

The coverage is complete for read-only browsing: all resources have list and detail retrieval, with category and user-cart filtering. However, there are no create, update, or delete operations, which would be expected for full lifecycle management, but this may be intentional for a fake store demo.

Maintenance

ActivityInactive
ResponsivenessNo issues