wrangler.jsonc•811 B
/**
* Cloudflare Workers configuration for MCP Server with Clerk Authentication
* 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": "your-mcp-server",
"main": "src/index.ts",
"compatibility_date": "2025-04-01",
"compatibility_flags": ["nodejs_compat"],
"migrations": [
{
"new_sqlite_classes": ["ClerkAppMCP"],
"tag": "v1",
},
],
"durable_objects": {
"bindings": [
{
"class_name": "ClerkAppMCP",
"name": "MCP_OBJECT",
},
],
},
"kv_namespaces": [
{
"binding": "OAUTH_KV",
"id": "your-kv-namespace-id",
},
],
"ai": {
"binding": "AI",
},
"observability": {
"enabled": true,
},
"dev": {
"port": 8788,
},
}