mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +00:00
Functionality unchanged; just the name. The DO class is now SupermemoryMCP, which matches the existing supermemory-mcp worker's v1 migration -> the cutover is a no-op, no DO session reset. Demo/mock 'enterprise buyers' text left as-is. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
48 lines
853 B
JSON
48 lines
853 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
|
|
}
|
|
],
|
|
|
|
"kv_namespaces": [
|
|
{ "binding": "AUTH_CACHE", "id": "REPLACE_WITH_KV_NAMESPACE_ID" }
|
|
],
|
|
|
|
"durable_objects": {
|
|
"bindings": [
|
|
{
|
|
"name": "MCP_SERVER",
|
|
"class_name": "SupermemoryMCP"
|
|
}
|
|
]
|
|
},
|
|
|
|
"migrations": [
|
|
{
|
|
"tag": "v1",
|
|
"new_sqlite_classes": ["SupermemoryMCP"]
|
|
}
|
|
],
|
|
|
|
"observability": {
|
|
"enabled": true
|
|
}
|
|
}
|