MCP Server
io.github.dokdosolutions-us/jam MCP Server
io.github.dokdosolutions-us/jam
What is the io.github.dokdosolutions-us/jam MCP server?
🍓🫙 MCP server for Toast POS — restaurant operations, inventory, orders, analytics, and insights
How to install io.github.dokdosolutions-us/jam
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
TOAST_CLIENT_IDrequiredToast API client ID
TOAST_CLIENT_SECRETrequiredsecretToast API client secret
TOAST_RESTAURANT_GUIDrequiredToast restaurant GUID
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"jam": {
"command": "npx",
"args": [
"-y",
"toast-mcp"
],
"env": {
"TOAST_CLIENT_ID": "<YOUR_TOAST_CLIENT_ID>",
"TOAST_CLIENT_SECRET": "<YOUR_TOAST_CLIENT_SECRET>",
"TOAST_RESTAURANT_GUID": "<YOUR_TOAST_RESTAURANT_GUID>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"jam": {
"command": "npx",
"args": [
"-y",
"toast-mcp"
],
"env": {
"TOAST_CLIENT_ID": "<YOUR_TOAST_CLIENT_ID>",
"TOAST_CLIENT_SECRET": "<YOUR_TOAST_CLIENT_SECRET>",
"TOAST_RESTAURANT_GUID": "<YOUR_TOAST_RESTAURANT_GUID>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"jam": {
"command": "npx",
"args": [
"-y",
"toast-mcp"
],
"env": {
"TOAST_CLIENT_ID": "<YOUR_TOAST_CLIENT_ID>",
"TOAST_CLIENT_SECRET": "<YOUR_TOAST_CLIENT_SECRET>",
"TOAST_RESTAURANT_GUID": "<YOUR_TOAST_RESTAURANT_GUID>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"jam": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"toast-mcp"
],
"env": {
"TOAST_CLIENT_ID": "<YOUR_TOAST_CLIENT_ID>",
"TOAST_CLIENT_SECRET": "<YOUR_TOAST_CLIENT_SECRET>",
"TOAST_RESTAURANT_GUID": "<YOUR_TOAST_RESTAURANT_GUID>"
}
}
}
}Claude Code
claude mcp add jam --env TOAST_CLIENT_ID=<YOUR_TOAST_CLIENT_ID> --env TOAST_CLIENT_SECRET=<YOUR_TOAST_CLIENT_SECRET> --env TOAST_RESTAURANT_GUID=<YOUR_TOAST_RESTAURANT_GUID> -- npx -y toast-mcpRelated MCP servers
🍀✨ MCP server for Clover POS — restaurant operations, inventory, orders, analytics, and retention
1
View repository →TypeScript
MIT