For Five Coffee MCP Server
Related Servers
Alternatives to For Five Coffee MCP Server
No user-submitted related servers found.
Related Servers
- FlicenseNot gradedqualityCmaintenanceEnables natural language interaction with a coffee shop's inventory and order system, allowing users to check menu items, place orders, and track order status via MCP tools.-
- FlicenseNot gradedqualityDmaintenanceEnables coffee shop order management via MCP, including menu lookup, order creation, and status tracking.-
- FlicenseBqualityDmaintenanceAn MCP adapter that maps Coffee Company B2B HTTP APIs to MCP tools, allowing AI agents to query member information, benefits, coupons, and payment statuses. It enables seamless integration for AI assistants to manage coffee-related customer assets and loyalty details through natural language.101-
- FlicenseNot gradedqualityBmaintenanceEnables AI agents to query a restaurant's governed knowledge documents, including menu, allergen info, reservation and refund policies, and hours, over MCP.1-
- AlicenseAqualityDmaintenanceThis MCP server provides tools for interacting with Shake Shack restaurant data, including browsing menus, searching for items, and finding locations. It also enables users to access nutritional information, featured items, and ordering details through natural language.76 npmMIT
- AlicenseAqualityDmaintenanceMCP server for Starbucks — let AI agents search the menu, customize drinks, find stores, place mobile pickup orders, and manage Starbucks Rewards.165 npm1MIT
TDQS
Scored across 4 tools
The tools are mostly distinct with clear purposes: get_full_menu retrieves everything, get_items_by_category filters by category, get_menu_categories lists categories only, and search_menu_items searches by name or category. However, get_items_by_category and search_menu_items could potentially overlap if searching by category, but their descriptions clarify the distinction—one lists all items in a category while the other searches within items.
All tool names follow a consistent verb_noun pattern using snake_case: get_full_menu, get_items_by_category, get_menu_categories, and search_menu_items. The verbs 'get' and 'search' are appropriately used and maintain a predictable naming convention throughout the set.
With 4 tools, this server is well-scoped for a coffee shop menu domain. Each tool serves a distinct function in retrieving or filtering menu data, and the count is appropriate—not too sparse or bloated—for the apparent purpose of exploring a menu.
The tool set covers the core read operations for a menu: fetching the full menu, filtering by category, listing categories, and searching items. A minor gap is the lack of tools for updating or managing the menu (e.g., add_item, update_price), but as a read-only surface for menu exploration, it is reasonably complete.