supermemory/apps/mcp/wrangler.jsonc
MaheshtheDev 1423bd7004 feat: mobile responsive, lint formats, toast, render issue fix (#688)
- Mobile responsive
- new toast design
- web document render issue fix
- posthog analytics
- ui improvements
2026-01-21 03:11:53 +00:00

37 lines
620 B
JSON

{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "supermemory-mcp",
"main": "src/index.ts",
"compatibility_date": "2025-01-01",
"compatibility_flags": ["nodejs_compat"],
"vars": {
"API_URL": "https://api.supermemory.ai"
},
"routes": [
{
"pattern": "mcp.supermemory.ai",
"zone_name": "supermemory.ai",
"custom_domain": true
}
],
"durable_objects": {
"bindings": [
{
"name": "MCP_SERVER",
"class_name": "SupermemoryMCP"
}
]
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": ["SupermemoryMCP"]
}
],
"observability": {
"enabled": true
}
}