aboutsummaryrefslogtreecommitdiff
path: root/apps/mcp/wrangler.jsonc
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mcp/wrangler.jsonc')
-rw-r--r--apps/mcp/wrangler.jsonc31
1 files changed, 31 insertions, 0 deletions
diff --git a/apps/mcp/wrangler.jsonc b/apps/mcp/wrangler.jsonc
new file mode 100644
index 00000000..74d67179
--- /dev/null
+++ b/apps/mcp/wrangler.jsonc
@@ -0,0 +1,31 @@
+{
+ "$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"
+ },
+
+ "durable_objects": {
+ "bindings": [
+ {
+ "name": "MCP_SERVER",
+ "class_name": "SupermemoryMCP"
+ }
+ ]
+ },
+
+ "migrations": [
+ {
+ "tag": "v1",
+ "new_sqlite_classes": ["SupermemoryMCP"]
+ }
+ ],
+
+ "observability": {
+ "enabled": true
+ }
+}