@formegifts/mcp
OfficialServer 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
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| auth_startA | Start the sign-in flow. Returns a verification URL and short user code. Show both to the user, ask them to open the URL and approve, then call |
| auth_pollA | Complete the sign-in flow started by |
| list_wishlistsA | List the signed-in user's wishlists with gift counts. |
| get_wishlistB | Fetch a single wishlist by id or name, including its gifts. |
| create_wishlistB | Create a new wishlist for the signed-in user. Returns the created wishlist row. |
| update_wishlistA | Update a wishlist's name, description, or event_date by id. At least one field besides id is required. |
| delete_wishlistA | Delete a wishlist by id. Without |
| create_giftA | Create a gift inside a wishlist. Requires wishlist_id and name. Optional: description, product_link, price_min, price_max, image_urls (max 5). |
| update_giftB | Update a gift's fields by id. At least one field besides id is required. |
| delete_giftA | Delete a gift by id. Without |
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 10 tools
Each tool has a clearly distinct purpose: authentication (auth_start, auth_poll) vs. wishlist CRUD vs. gift CRUD. No two tools overlap in functionality.
All tools follow a consistent verb_noun pattern with snake_case, e.g., create_gift, delete_wishlist. No mixing of conventions.
10 tools is well-scoped for a gift management server, covering authentication, wishlist and gift operations. Not too few or too many.
Covers auth, wishlist CRUD, and gift create/update/delete. Missing a dedicated get_gift tool, but get_wishlist includes gifts. Minor gap for completeness.