supermemory/apps/mcp/wrangler.jsonc
2026-08-26 12:30:14 -07:00

52 lines
888 B
JSON

{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "supermemory-mcp",
"build": {
"command": "bun run build:widget"
},
"main": "src/server/index.ts",
"compatibility_date": "2025-01-01",
"compatibility_flags": ["nodejs_compat"],
"rules": [{ "type": "Text", "globs": ["**/*.html"], "fallthrough": false }],
"vars": {
"API_URL": "https://api.supermemory.ai"
},
"routes": [
{
"pattern": "mcp.supermemory.ai",
"zone_name": "supermemory.ai",
"custom_domain": true
}
],
"durable_objects": {
"bindings": [
{
"name": "SPACE_STATE",
"class_name": "SpaceState"
}
]
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": ["SupermemoryMCP"]
},
{
"tag": "v2",
"new_sqlite_classes": ["SpaceState"]
},
{
"tag": "v3",
"deleted_classes": ["SupermemoryMCP"]
}
],
"observability": {
"enabled": true
}
}