Fake Store API MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
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
| Name | Description |
|---|---|
| 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
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 18 tools
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.
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.
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.
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.