@striderlabs/mcp-shakeshack
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@striderlabs/mcp-shakeshackFind Shake Shack locations in NYC and show me the current seasonal items"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@striderlabs/mcp-shakeshack
MCP (Model Context Protocol) connector for Shake Shack restaurant. Provides tools for browsing the menu, searching items, finding locations, and getting ordering information.
Installation
npm install @striderlabs/mcp-shakeshackRelated MCP server: OrderFood MCP
Usage
Add to your MCP client configuration:
{
"mcpServers": {
"shakeshack": {
"command": "npx",
"args": ["-y", "@striderlabs/mcp-shakeshack"]
}
}
}Available Tools
get_menu
Get the full Shake Shack menu or filter by category.
Parameters:
category(optional): Filter by menu category (Burgers, Chicken, Hot Dogs, Crinkle Cut Fries, Frozen Custard, Shakes & Floats, Beer & Wine, Beverages)
search_menu
Search menu items by keyword.
Parameters:
query(required): Search term (e.g. "bacon", "vegetarian", "chicken")
find_locations
Find Shake Shack locations by city, neighborhood, or keyword.
Parameters:
query(optional): Location search querylimit(optional): Max results to return (default: 5)
get_location_details
Get detailed info for a specific location by ID.
Parameters:
location_id(required): Location identifier (e.g. "madison-square-park")
get_nutrition_info
Get nutritional information and allergens for a menu item.
Parameters:
item_name(required): Menu item name (e.g. "ShackBurger", "Fries")
get_featured_items
Get current featured and seasonal menu items.
get_ordering_info
Get information about ordering options (app, kiosk, delivery, catering, loyalty).
Development
# Install dependencies
npm install
# Build
npm run build
# Run directly
node dist/index.jsLicense
MIT
Available Tools
7 toolsfind_locationsB
Find Shake Shack restaurant locations. Can search by city, state, or keyword.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Location search query (city, neighborhood, state, or zip code) | |
| limit | No | Maximum number of results to return (default: 5) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the search capability but doesn't describe key behaviors: whether this is a read-only operation, how results are returned (e.g., list format, pagination), error handling, or any rate limits. For a search tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded with the core purpose in the first sentence. The second sentence adds useful context about search parameters. Both sentences earn their place, and there's no wasted text. However, it could be slightly more structured (e.g., explicitly listing behaviors).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (search with two parameters), no annotations, and no output schema, the description is minimally adequate. It covers the purpose and basic usage but lacks details on behavior, return values, and error handling. For a search tool, this leaves the agent with incomplete information, though the schema helps with parameters.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters (query and limit) with clear descriptions. The description adds marginal value by mentioning 'city, state, or keyword' for the query parameter, but this is largely redundant with the schema's description. Since the schema does the heavy lifting, the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Find Shake Shack restaurant locations' specifies the verb (find) and resource (locations). It distinguishes from siblings like get_location_details (which likely retrieves details for a specific location) and search_menu (which searches menu items). However, it doesn't explicitly differentiate from all siblings (e.g., get_featured_items might also involve locations).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides some usage context by stating 'Can search by city, state, or keyword,' which implies when to use this tool (for location searches). However, it doesn't explicitly state when to use alternatives (e.g., use get_location_details for specific location info, search_menu for menu items) or any exclusions (e.g., not for ordering). The guidance is implied but not comprehensive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_featured_itemsB
Get current featured, seasonal, or limited-time menu items at Shake Shack.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool retrieves data ('Get'), implying a read-only operation, but doesn't address other traits like authentication needs, rate limits, error handling, or data freshness (e.g., how 'current' is defined). For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose ('Get current featured, seasonal, or limited-time menu items') and specifies the context ('at Shake Shack'). Every word earns its place, with no redundancy or unnecessary elaboration, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is minimally adequate. It covers the what and where but lacks details on behavioral aspects like data format, error cases, or freshness guarantees. Without annotations or output schema, more context on what 'Get' returns would improve completeness, but it's not entirely inadequate for a basic read operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0 parameters with 100% description coverage, so the schema fully documents the absence of inputs. The description adds no parameter information, which is appropriate here. Baseline is 4 for 0 parameters, as there's nothing to compensate for, and the description doesn't detract from the schema's completeness.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get current featured, seasonal, or limited-time menu items at Shake Shack.' It uses a specific verb ('Get') and identifies the resource ('featured, seasonal, or limited-time menu items'), distinguishing it from siblings like 'get_menu' (general menu) and 'search_menu' (searchable menu). However, it doesn't explicitly contrast with 'get_menu' beyond implying a subset focus.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context by specifying 'featured, seasonal, or limited-time' items, suggesting this tool is for promotional or time-sensitive content rather than the full menu. However, it lacks explicit guidance on when to use this versus 'get_menu' or 'search_menu' (e.g., no 'when-not' statements or named alternatives), leaving some ambiguity for the agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_location_detailsC
Get detailed information about a specific Shake Shack location by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| location_id | Yes | The location ID (e.g. 'madison-square-park') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states this is a 'Get' operation, implying it's likely read-only, but doesn't confirm this or describe other traits like error handling, rate limits, authentication needs, or what 'detailed information' entails in the response. This leaves significant gaps for an agent to understand the tool's behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without any unnecessary words. It's front-loaded with the core action and resource, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and output schema, the description is incomplete for a tool that presumably returns detailed information. It doesn't explain what 'detailed information' includes (e.g., address, hours, menu items), leaving the agent uncertain about the response format and content, which is a significant gap for effective tool use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with the single parameter 'location_id' fully documented in the schema (including an example). The description adds no additional parameter semantics beyond what the schema provides, such as format constraints or usage context, so it meets the baseline score for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get detailed information') and resource ('about a specific Shake Shack location by ID'), making the purpose immediately understandable. However, it doesn't explicitly differentiate this tool from sibling tools like 'find_locations' or 'get_ordering_info', which might also provide location-related information, so it doesn't reach the highest score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention what 'detailed information' includes compared to other tools (e.g., 'find_locations' might list locations, 'get_ordering_info' might provide ordering details), nor does it specify prerequisites or exclusions for usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_nutrition_infoB
Get nutritional information and allergen details for Shake Shack menu items.
| Name | Required | Description | Default |
|---|---|---|---|
| item_name | Yes | Name of the menu item to get nutrition info for (e.g. 'ShackBurger', 'Fries') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states what the tool does but lacks critical behavioral details: it doesn't specify if this is a read-only operation, what format the nutritional information returns (e.g., calories, allergens list), whether it requires authentication, or if there are rate limits. For a tool with zero annotation coverage, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose without unnecessary words. It directly states the tool's function ('Get nutritional information and allergen details') and scope ('for Shake Shack menu items'), with zero waste or redundancy. This is appropriately sized for a simple tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (1 parameter, no output schema, no annotations), the description is minimally adequate but incomplete. It covers the basic purpose but lacks behavioral context (e.g., read-only nature, return format) and usage guidelines. Without annotations or output schema, the description should do more to compensate, but it only meets the minimum viable threshold.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds no parameter-specific information beyond what the input schema provides. The schema has 100% description coverage, with the 'item_name' parameter clearly documented as 'Name of the menu item to get nutrition info for (e.g. 'ShackBurger', 'Fries').' The description doesn't elaborate on parameter semantics, such as valid item names or formatting, so it meets the baseline of 3 for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get nutritional information and allergen details for Shake Shack menu items.' It specifies the action ('Get') and resource ('Shake Shack menu items'), and distinguishes itself from siblings like 'get_menu' or 'search_menu' by focusing on nutrition/allergen data. However, it doesn't explicitly contrast with all siblings (e.g., 'get_featured_items' might also return nutritional info).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when this tool is appropriate compared to 'get_menu' (which might include nutrition info) or 'search_menu' (which might filter by nutritional criteria). There's no context about prerequisites, limitations, or typical use cases beyond the basic purpose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_ordering_infoB
Get information about how to order at Shake Shack (app, kiosk, online, etc.).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states this is a 'Get' operation, implying read-only behavior, but doesn't disclose any behavioral traits such as authentication needs, rate limits, error conditions, or what format the information is returned in (e.g., text, links, structured data).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose ('Get information about how to order at Shake Shack') and adds clarifying examples without unnecessary detail. Every word earns its place, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 0 parameters, no annotations, and no output schema, the description is minimally adequate. It explains what the tool does but lacks details on behavioral aspects (e.g., response format, errors) that would be needed for full contextual understanding, especially since it's a read operation with potential complexity in output.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description adds value by specifying the scope ('how to order at Shake Shack') and examples ('app, kiosk, online, etc.'), which clarifies what information will be retrieved beyond just the tool name.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get information about how to order at Shake Shack' with specific examples (app, kiosk, online). It uses a specific verb ('Get') and resource ('ordering information'), but doesn't explicitly distinguish it from sibling tools like 'get_menu' or 'search_menu' which might also relate to ordering.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, context for usage, or differentiate from siblings like 'get_menu' (which might include ordering details) or 'find_locations' (which could relate to in-person ordering).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
7 tool updates
v1.0.0- First observed
find_locations - First observed
get_featured_items - First observed
get_location_details - First observed
get_menu - First observed
get_nutrition_info - First observed
get_ordering_info - First observed
search_menu
TDQS
Each tool has a clearly distinct purpose with no overlap: find_locations (geographic search), get_featured_items (special menu items), get_location_details (specific location info), get_menu (full menu), get_nutrition_info (nutritional data), get_ordering_info (ordering methods), and search_menu (menu item search). The descriptions reinforce these distinct functions, making tool selection unambiguous.
All tools follow a consistent verb_noun pattern using snake_case: find_locations, get_featured_items, get_location_details, get_menu, get_nutrition_info, get_ordering_info, and search_menu. The verbs 'find', 'get', and 'search' are appropriately used for their respective actions, creating a predictable and readable naming convention throughout.
With 7 tools, the server is well-scoped for its restaurant information domain. Each tool serves a clear purpose (location discovery, menu access, nutrition details, ordering info), and none feel redundant or unnecessary. This count aligns well with typical MCP server ranges (3-15 tools) for focused functionality.
The toolset provides comprehensive coverage for accessing Shake Shack information: locations (find/details), menu (full/featured/search), nutrition, and ordering methods. A minor gap exists in the lack of tools for actual ordering or transaction processing, but given the server's apparent informational focus, this is reasonable. The surface supports common agent workflows without dead ends.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Unlock the power of food transparency with our Open Food Facts MCP server. Easily look up any food
- mcpOAuthcom.zomato
An MCP server that exposes functionalities to use Zomato's services.
Hosted MCP server to manage a restaurant menu from AI agents - 39 tools over the DuckHub API.
The Mercado Pago MCP Server implements the Model Context Protocol to provide AI agents and LLMs with access to Mercado Pago's APIs and tools within compatible development environments. It acts as an intermediary that translates Mercado Pago resources into executable functions (tools) that AI applications can invoke to perform actions and automate flows. The server simplifies integration, enables using documentation to implement or improve code, and optimizes operations through natural language interactions without manual implementations.
Related MCP Servers
- AlicenseAqualityBmaintenanceAn MCP server for the Open Food Facts API that allows users to search, read, and contribute to a global food database. It enables looking up nutrition data by barcode or name and managing product information through natural language.10913MIT
- AlicenseNot gradedqualityCmaintenanceAn MCP server that enables AI agents to discover restaurants and place food delivery orders on Uber Eats and Thuisbezorgd (Just Eat Takeaway). It provides tools for restaurant discovery and order management through normalized platform APIs.22MIT
- AlicenseAqualityDmaintenanceMCP server that enables AI agents to interact with Chick-fil-A via browser automation for menu search, nutrition info, location finder, and mobile ordering.719MIT
- AlicenseAqualityDmaintenanceMCP server for Wendy's that enables AI agents to search the menu, view nutrition info, find nearby locations, and place mobile orders.716MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/markswendsen-code/mcp-shakeshack'
If you have feedback or need assistance with the MCP directory API, please join our Discord server