Parsley MCP Server v0.1.0

Access your Parsley recipes, menus, ingredients, and events from any MCP client.

Remote (Hosted)

Point your MCP client at the hosted endpoint. You'll need a Parsley API token as the bearer token.

{
  "mcpServers": {
    "parsley": {
      "type": "streamable-http",
      "url": "https://parsley.vein.io/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_PARSLEY_API_TOKEN"
      }
    }
  }
}

To enable write operations (create/update events, manage users), use /mcp/write instead of /mcp.

Local (stdio)

Run the server locally via npx:

{
  "mcpServers": {
    "parsley": {
      "command": "npx",
      "args": ["-y", "parsley-mcp"],
      "env": {
        "PARSLEY_API_TOKEN": "YOUR_PARSLEY_API_TOKEN"
      }
    }
  }
}

Add --enable-writes to args to enable write operations.

Endpoints