mirror of
https://github.com/coleam00/context-engineering-intro.git
synced 2025-12-18 02:05:25 +00:00
48 lines
873 B
JSON
48 lines
873 B
JSON
/**
|
|
* Taskmaster PRP Parser MCP Server Configuration
|
|
* 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": "taskmaster-mcp-server",
|
|
"main": "src/taskmaster.ts",
|
|
"compatibility_date": "2025-03-10",
|
|
"compatibility_flags": [
|
|
"nodejs_compat"
|
|
],
|
|
"migrations": [
|
|
{
|
|
"new_sqlite_classes": [
|
|
"TaskmasterMCP"
|
|
],
|
|
"tag": "v1"
|
|
}
|
|
],
|
|
"durable_objects": {
|
|
"bindings": [
|
|
{
|
|
"class_name": "TaskmasterMCP",
|
|
"name": "MCP_OBJECT"
|
|
}
|
|
]
|
|
},
|
|
"kv_namespaces": [
|
|
{
|
|
"binding": "OAUTH_KV",
|
|
"id": "06998ca39ffb4273a10747065041347b"
|
|
}
|
|
],
|
|
"ai": {
|
|
"binding": "AI"
|
|
},
|
|
"observability": {
|
|
"enabled": true
|
|
},
|
|
"dev": {
|
|
"port": 8792
|
|
},
|
|
"vars": {
|
|
"ANTHROPIC_MODEL": "claude-3-5-haiku-latest"
|
|
}
|
|
} |