/**
* 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": "google-tag-manager-mcp-server",
"main": "src/index.ts",
"compatibility_date": "2025-03-10",
"compatibility_flags": [
"nodejs_compat"
],
"routes": [
{
"pattern": "gtm-mcp.stape.ai",
"custom_domain": true
}
],
"migrations": [
{
"new_sqlite_classes": [
"GoogleTagManagerMCPServer"
],
"tag": "v1"
}
],
"durable_objects": {
"bindings": [
{
"class_name": "GoogleTagManagerMCPServer",
"name": "MCP_OBJECT"
}
]
},
"kv_namespaces": [
{
"binding": "OAUTH_KV",
"id": "a2bbe0a0645e44bf83b5dc450d8a9496"
}
],
"observability": {
"enabled": true
},
"dev": {
"port": 8788
}
}