docker-compose.yml gains healthchecks and depends_on/condition chains for the litellm/langfuse/postgres tier so dependants wait for a genuinely ready service instead of a started container. Also plumbs AGAP_MCP_TOKEN into the adolf and adolf-llm containers, sourced from openai/.env (gitignored), for the kb#180 bearer auth on the agap MCP server; shared-mcp.json consumes it via bearerTokenEnvVar so the Kimi backbone authenticates too. agent-registry.yaml / agent_registry.py: the version-controlled source of truth for agent identities and trust classes -- the same ids the agap-mcp token map resolves to (`adolf`, `claude-coder`; note `claude-code-cli` is the runtime entry, not an agent identity). model-registry.yaml, litellm-config.yaml, auto-router-routes.json and provision_litellm_keys.py: model tiering, virtual-key provisioning and auto-router routes. tei-reranker/ is the local reranker service backing Hindsight recall. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
31 lines
1.9 KiB
JSON
31 lines
1.9 KiB
JSON
{
|
|
"mcpServers": {
|
|
"hindsight": {
|
|
"type": "http",
|
|
"url": "http://hindsight:8888/mcp/adolf-shared/",
|
|
"enabledTools": ["recall", "retain", "reflect", "list_memories", "get_memory", "update_memory", "list_directives", "create_directive", "delete_directive"]
|
|
},
|
|
"openclaw-tools": {
|
|
"type": "http",
|
|
"url": "http://openclaw-tools:8020/mcp"
|
|
},
|
|
"kanboard": {
|
|
"type": "http",
|
|
"url": "http://host.docker.internal:3104/mcp",
|
|
"enabledTools": ["kanboard_list_projects", "kanboard_get_project", "kanboard_list_tasks", "kanboard_my_tasks", "kanboard_get_task", "kanboard_search_tasks", "kanboard_list_users", "kanboard_project_activity", "kanboard_create_task", "kanboard_update_task", "kanboard_move_task", "kanboard_change_task_status", "kanboard_assign_task", "kanboard_add_comment"]
|
|
},
|
|
"agap": {
|
|
"type": "http",
|
|
"url": "http://host.docker.internal:3100/mcp",
|
|
"bearerTokenEnvVar": "AGAP_MCP_TOKEN",
|
|
"enabledTools": ["vw_get_password", "vw_get_item", "vw_list_items", "vw_create_login", "vw_update_password", "ha_get_state", "ha_list_entities", "ha_call_service", "ha_get_history", "zabbix_get_problems", "zabbix_get_hosts", "zabbix_get_items", "zabbix_get_triggers", "radicale_list_calendars", "radicale_list_events", "radicale_get_event", "radicale_put_event", "radicale_delete_event", "radicale_move_event", "todoist_list_tasks", "todoist_list_projects", "todoist_create_task", "todoist_update_task", "todoist_complete_task", "todoist_capture_idea", "wiki_search", "wiki_read", "wiki_edit"]
|
|
},
|
|
"marketplace": {
|
|
"type": "http",
|
|
"url": "http://host.docker.internal:3101/mcp",
|
|
"bearerTokenEnvVar": "MARKETPLACE_MCP_TOKEN",
|
|
"enabledTools": ["marketplace_find_best", "marketplace_search", "marketplace_get_product", "marketplace_get_recommendations", "marketplace_get_reviews", "marketplace_compare_prices", "marketplace_status"]
|
|
}
|
|
}
|
|
}
|