Access your Parsely recipes, menus, ingredients, and events from any MCP client.
Point your MCP client at the hosted endpoint. You'll need a Parsely API token as the bearer token.
{
"mcpServers": {
"parsely": {
"type": "streamable-http",
"url": "https://parsely.vein.io/mcp",
"headers": {
"Authorization": "Bearer YOUR_PARSELY_API_TOKEN"
}
}
}
}
To enable write operations (create/update events, manage users), use /mcp/write instead of /mcp.
Run the server locally via npx:
{
"mcpServers": {
"parsely": {
"command": "npx",
"args": ["-y", "parsely-mcp"],
"env": {
"PARSELY_API_TOKEN": "YOUR_PARSELY_API_TOKEN"
}
}
}
}
Add --enable-writes to args to enable write operations.
/mcp — read-only MCP endpoint/mcp/write — read-write MCP endpoint/mcp/demo — demo endpoint (no auth required)