Parsely MCP Server v0.1.0

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

Remote (Hosted)

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.

Local (stdio)

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.

Endpoints