/**
* For more details on how to configure Wrangler, refer to:
* https://developers.cloudflare.com/workers/wrangler/configuration/
*/
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "web-crawler-mcp",
"main": "src/index.ts",
"compatibility_date": "2025-03-10",
"migrations": [
{
"new_sqlite_classes": ["MyMCP"],
"tag": "v1"
}
],
"compatibility_flags": ["nodejs_compat"],
"durable_objects": {
"bindings": [
{
"class_name": "MyMCP",
"name": "MCP_OBJECT"
}
]
},
"kv_namespaces": [
{
"binding": "OAUTH_KV",
"id": "2361e3bffe8146afbb3c3ba94e2addbf"
}
],
"ai": {
"binding": "AI"
},
"observability": {
"enabled": true
},
"dev": {
"port": 8788
}
}