Files
th-hotel-simple/docs/project/integrations/superagent-mcp/mcp-client-config.example.json

37 lines
1.2 KiB
JSON

{
"format": "th-hotel-superagent-mcp-client-config/v1",
"mcpServers": {
"th-hotel-simple-superagent": {
"transport": "http",
"protocolVersion": "2025-06-18",
"url": "https://<server-domain>/mcp",
"method": "POST",
"headers": {
"Authorization": "Bearer ${MCP_AUTH_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json"
},
"requestLimits": {
"maxBodyBytes": 10485760
},
"tools": {
"allow": [
"th_hotel_query_case_context",
"th_hotel_query_object_detail",
"th_hotel_list_message_conversation_tasks",
"th_hotel_list_message_conversation_messages",
"th_hotel_submit_task_results"
],
"writeTools": [
"th_hotel_submit_task_results"
]
},
"runtimeNotes": {
"authTokenSource": "Use a per-environment high-entropy secret. Do not commit the real token.",
"submitTaskResultsServerSwitch": "MCP_ENABLE_SUBMIT_TASK_RESULTS must be true before using write tools.",
"messageBodyPolicy": "Conversation message tools return controlled body only, not attachments or raw HTML."
}
}
}
}