What is the WebCake Storefront MCP server?
Build pages and manage products, orders, and content on the WebCake/StoreCake storefront builder.
How to install WebCake Storefront
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
WEBCAKE_TOKENsecretStorefront JWT Bearer token (the builder's `jwt` cookie / store_jwt).
WEBCAKE_SESSION_IDsecretSession id sent as the x-session-id header (the builder's `wsid` cookie).
WEBCAKE_ENVNamed environment preset that fills the API + app base URLs (default prod).
PEXELS_API_KEYsecretOptional Pexels API key for the search_images tool.
x-webcake-jwtsecretStorefront Bearer JWT (or authenticate via the OAuth flow / ?jwt= link).
x-webcake-session-idsecretSession id (the builder's wsid).
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"webcake-storefront-mcp": {
"command": "npx",
"args": [
"-y",
"webcake-storefront-mcp"
],
"env": {
"WEBCAKE_TOKEN": "<YOUR_WEBCAKE_TOKEN>",
"WEBCAKE_SESSION_ID": "<YOUR_WEBCAKE_SESSION_ID>",
"WEBCAKE_ENV": "<YOUR_WEBCAKE_ENV>",
"PEXELS_API_KEY": "<YOUR_PEXELS_API_KEY>",
"x-webcake-jwt": "<YOUR_X_WEBCAKE_JWT>",
"x-webcake-session-id": "<YOUR_X_WEBCAKE_SESSION_ID>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"webcake-storefront-mcp": {
"command": "npx",
"args": [
"-y",
"webcake-storefront-mcp"
],
"env": {
"WEBCAKE_TOKEN": "<YOUR_WEBCAKE_TOKEN>",
"WEBCAKE_SESSION_ID": "<YOUR_WEBCAKE_SESSION_ID>",
"WEBCAKE_ENV": "<YOUR_WEBCAKE_ENV>",
"PEXELS_API_KEY": "<YOUR_PEXELS_API_KEY>",
"x-webcake-jwt": "<YOUR_X_WEBCAKE_JWT>",
"x-webcake-session-id": "<YOUR_X_WEBCAKE_SESSION_ID>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"webcake-storefront-mcp": {
"command": "npx",
"args": [
"-y",
"webcake-storefront-mcp"
],
"env": {
"WEBCAKE_TOKEN": "<YOUR_WEBCAKE_TOKEN>",
"WEBCAKE_SESSION_ID": "<YOUR_WEBCAKE_SESSION_ID>",
"WEBCAKE_ENV": "<YOUR_WEBCAKE_ENV>",
"PEXELS_API_KEY": "<YOUR_PEXELS_API_KEY>",
"x-webcake-jwt": "<YOUR_X_WEBCAKE_JWT>",
"x-webcake-session-id": "<YOUR_X_WEBCAKE_SESSION_ID>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"webcake-storefront-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"webcake-storefront-mcp"
],
"env": {
"WEBCAKE_TOKEN": "<YOUR_WEBCAKE_TOKEN>",
"WEBCAKE_SESSION_ID": "<YOUR_WEBCAKE_SESSION_ID>",
"WEBCAKE_ENV": "<YOUR_WEBCAKE_ENV>",
"PEXELS_API_KEY": "<YOUR_PEXELS_API_KEY>",
"x-webcake-jwt": "<YOUR_X_WEBCAKE_JWT>",
"x-webcake-session-id": "<YOUR_X_WEBCAKE_SESSION_ID>"
}
}
}
}Claude Code
claude mcp add webcake-storefront-mcp --env WEBCAKE_TOKEN=<YOUR_WEBCAKE_TOKEN> --env WEBCAKE_SESSION_ID=<YOUR_WEBCAKE_SESSION_ID> --env WEBCAKE_ENV=<YOUR_WEBCAKE_ENV> --env PEXELS_API_KEY=<YOUR_PEXELS_API_KEY> --env x-webcake-jwt=<YOUR_X_WEBCAKE_JWT> --env x-webcake-session-id=<YOUR_X_WEBCAKE_SESSION_ID> -- npx -y webcake-storefront-mcpRelated MCP servers
Build, validate, and persist Webcake landing-page source JSON: element schemas plus AI usage hints.
View repository →