23 lines
460 B
TOML
23 lines
460 B
TOML
name = "honcho-mcp"
|
|
main = "src/index.ts"
|
|
compatibility_date = "2024-12-09"
|
|
compatibility_flags = ["nodejs_compat"]
|
|
|
|
# Bundle Markdown (e.g. instructions.md) as text strings so it can be imported.
|
|
rules = [
|
|
{ type = "Text", globs = ["**/*.md"], fallthrough = true },
|
|
]
|
|
|
|
# Executes the scheduled() handler
|
|
[triggers]
|
|
crons = ["*/5 * * * *"]
|
|
|
|
[env.production]
|
|
name = "honcho-mcp"
|
|
|
|
[env.staging]
|
|
name = "honcho-mcp-staging"
|
|
|
|
[observability.logs]
|
|
enabled = true
|