Skip to main content
Glama
op-enny
by op-enny

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

Server capabilities have not been inspected yet.

Tools

Functions exposed to the LLM to take actions

NameDescription
fakestore_get_productsC

Get all products from the store. Optionally limit results and sort by price.

fakestore_get_productC

Get a single product by its ID

fakestore_get_categoriesB

Get all available product categories

fakestore_get_products_by_categoryC

Get all products in a specific category

fakestore_add_productA

Add a new product to the store (simulation - does not persist)

fakestore_update_productB

Update an existing product (simulation - does not persist)

fakestore_delete_productA

Delete a product (simulation - does not persist)

fakestore_get_cartsB

Get all carts from the store. Optionally limit results and sort.

fakestore_get_cartC

Get a single cart by its ID

fakestore_get_user_cartsB

Get all carts belonging to a specific user

fakestore_add_cartB

Add a new cart (simulation - does not persist)

fakestore_update_cartB

Update an existing cart (simulation - does not persist)

fakestore_delete_cartB

Delete a cart (simulation - does not persist)

fakestore_get_usersC

Get all users from the store. Optionally limit results and sort.

fakestore_get_userB

Get a single user by their ID

fakestore_add_userA

Add a new user (simulation - does not persist)

fakestore_update_userB

Update an existing user (simulation - does not persist)

fakestore_delete_userA

Delete a user (simulation - does not persist)

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.6/5.0

Scored across 18 tools

Disambiguation5/5

Every tool has a clearly distinct purpose targeting specific resources (cart, product, user) and actions (add, delete, get, update), with no overlap or ambiguity. For example, fakestore_get_products and fakestore_get_products_by_category are clearly differentiated by scope.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with the prefix 'fakestore_' and snake_case throughout, such as fakestore_add_product and fakestore_get_user_carts. There are no deviations in naming conventions.

Tool Count4/5

With 18 tools, the count is slightly high but reasonable for a store API covering three main resources (cart, product, user) with full CRUD operations and additional query tools. It feels comprehensive without being overly bloated.

Completeness5/5

The tool set provides complete CRUD coverage for carts, products, and users, along with additional query tools like get_categories and get_products_by_category. There are no obvious gaps, enabling agents to handle all core store operations effectively.

Maintenance

ActivityInactive
ResponsivenessNo issues