answer-book-mcp
Version: 
智能问答和决策辅助的 MCP (Model Context Protocol) 服务器
31 lines (30 loc) • 655 B
JSON
{
  "server": {
    "name": "answer-book-mcp",
    "version": "1.0.0",
    "description": "智能问答和决策辅助 MCP 服务器"
  },
  "features": {
    "smart_matching": true,
    "history_tracking": true,
    "multilingual": true,
    "personalization": false
  },
  "data": {
    "answers_path": "./data/answers/",
    "history_path": "./data/history.json",
    "max_history_records": 1000
  },
  "matching": {
    "min_confidence": 0.3,
    "fallback_to_random": true,
    "keyword_weight": 0.7,
    "category_weight": 0.3
  },
  "logging": {
    "level": "info",
    "file": "./logs/server.log",
    "max_files": 5,
    "max_size": "10m"
  }
}