cursor-config-examples.json•3.66 kB
{
  "_说明": "这是 Cursor MCP 配置示例集合,选择一个复制到你的 Cursor MCP 配置中",
  
  "_示例1_标准30分钟": {
    "mcpServers": {
      "health-reminder": {
        "command": "node",
        "args": [
          "C:\\Users\\WB-bw0017\\Desktop\\MyMCP\\health\\dist\\server\\index.js"
        ],
        "env": {
          "REMINDER_INTERVAL": "30",
          "REMINDER_MESSAGE": "该起身活动一下了!💪",
          "REMINDER_TITLE": "健康提醒"
        }
      }
    }
  },
  "_示例2_番茄工作法25分钟": {
    "mcpServers": {
      "health-reminder": {
        "command": "node",
        "args": [
          "C:\\Users\\WB-bw0017\\Desktop\\MyMCP\\health\\dist\\server\\index.js"
        ],
        "env": {
          "REMINDER_INTERVAL": "25",
          "REMINDER_MESSAGE": "🍅 番茄时间到!休息 5 分钟吧!",
          "REMINDER_TITLE": "番茄钟",
          "REMINDER_SOUND": "true"
        }
      }
    }
  },
  "_示例3_程序员60分钟": {
    "mcpServers": {
      "health-reminder": {
        "command": "node",
        "args": [
          "C:\\Users\\WB-bw0017\\Desktop\\MyMCP\\health\\dist\\server\\index.js"
        ],
        "env": {
          "REMINDER_INTERVAL": "60",
          "REMINDER_MESSAGE": "已经编程一小时了!👨💻 站起来活动活动,保护颈椎和眼睛。",
          "REMINDER_TITLE": "编程休息提醒"
        }
      }
    }
  },
  "_示例4_学习45分钟": {
    "mcpServers": {
      "health-reminder": {
        "command": "node",
        "args": [
          "C:\\Users\\WB-bw0017\\Desktop\\MyMCP\\health\\dist\\server\\index.js"
        ],
        "env": {
          "REMINDER_INTERVAL": "45",
          "REMINDER_MESSAGE": "学习 45 分钟了!📚 该休息一下了。",
          "REMINDER_TITLE": "学习提醒"
        }
      }
    }
  },
  "_示例5_静音模式": {
    "mcpServers": {
      "health-reminder": {
        "command": "node",
        "args": [
          "C:\\Users\\WB-bw0017\\Desktop\\MyMCP\\health\\dist\\server\\index.js"
        ],
        "env": {
          "REMINDER_INTERVAL": "30",
          "REMINDER_MESSAGE": "温馨提示:该活动一下了",
          "REMINDER_TITLE": "提醒",
          "REMINDER_SOUND": "false"
        }
      }
    }
  },
  "_完整配置模板": {
    "mcpServers": {
      "health-reminder": {
        "command": "node",
        "args": [
          "C:\\Users\\WB-bw0017\\Desktop\\MyMCP\\health\\dist\\server\\index.js"
        ],
        "disabled": false,
        "alwaysAllow": [
          "start_reminder",
          "stop_reminder",
          "get_status",
          "send_immediate_reminder"
        ],
        "timeout": 60000,
        "env": {
          "REMINDER_INTERVAL": "30",
          "REMINDER_MESSAGE": "该起身活动一下了!",
          "REMINDER_TITLE": "健康提醒",
          "REMINDER_SOUND": "true"
        }
      }
    }
  },
  "_环境变量说明": {
    "REMINDER_INTERVAL": "提醒间隔时间(分钟),如: 25, 30, 45, 60",
    "REMINDER_MESSAGE": "提醒消息内容,支持中文和 Emoji",
    "REMINDER_TITLE": "系统通知的标题",
    "REMINDER_SOUND": "是否播放提示音,true 或 false"
  },
  "_使用说明": [
    "1. 选择上面的一个示例配置",
    "2. 复制 mcpServers 部分",
    "3. 粘贴到 Cursor 的 MCP 配置文件中",
    "4. 修改路径为你的实际路径",
    "5. 根据需要调整环境变量值",
    "6. 重启 Cursor 使配置生效"
  ]
}