Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Schema
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| fakestore_get_products | Get all products from the store. Optionally limit results and sort by price. |
| fakestore_get_product | Get a single product by its ID |
| fakestore_get_categories | Get all available product categories |
| fakestore_get_products_by_category | Get all products in a specific category |
| fakestore_add_product | Add a new product to the store (simulation - does not persist) |
| fakestore_update_product | Update an existing product (simulation - does not persist) |
| fakestore_delete_product | Delete a product (simulation - does not persist) |
| fakestore_get_carts | Get all carts from the store. Optionally limit results and sort. |
| fakestore_get_cart | Get a single cart by its ID |
| fakestore_get_user_carts | Get all carts belonging to a specific user |
| fakestore_add_cart | Add a new cart (simulation - does not persist) |
| fakestore_update_cart | Update an existing cart (simulation - does not persist) |
| fakestore_delete_cart | Delete a cart (simulation - does not persist) |
| fakestore_get_users | Get all users from the store. Optionally limit results and sort. |
| fakestore_get_user | Get a single user by their ID |
| fakestore_add_user | Add a new user (simulation - does not persist) |
| fakestore_update_user | Update an existing user (simulation - does not persist) |
| fakestore_delete_user | Delete a user (simulation - does not persist) |