trustee 0.1.62

A general-purpose agent that can morph into different specialized agents using WASM lifecycle plugins
# Trustee User Configuration
#
# Only include settings you want to override from defaults.
# All defaults are embedded in the binary (config/trustee_default.toml).

# MCP (Model Context Protocol) Server Configuration
[mcp]
enabled = true
timeout_seconds = 30

[[mcp.servers]]
name = "pdt"
url = "http://127.0.0.1:8001"
transport = "http"
auto_init = true

[[mcp.servers]]
name = "nghr"
url = "http://127.0.0.1:8002"
transport = "http"
auto_init = true


[[mcp.servers]]
name = "trp"
url = "http://127.0.0.1:8010"
transport = "http"
auto_init = true


# Uncomment below to override checkpoint storage to DocumentDB:
# [checkpointing.storage_backend]
# backend_type = "documentdb"
# storage_mode = "remote"
# connection_url = "${DOCUMENTDB_URL}"
# database = "${DOCUMENTDB_DATABASE}"
# collection = "checkpoints"
# username = "${DOCUMENTDB_USERNAME}"
# password = "${DOCUMENTDB_PASSWORD}"
# tls_enabled = true
# tls_allow_invalid_certs = true
# connection_timeout_secs = 30