From 04501fea22d7f91c0692be7fd7e2fcd1d62cad3b Mon Sep 17 00:00:00 2001 From: steven_li Date: Mon, 16 Mar 2026 17:01:08 +0800 Subject: [PATCH] =?UTF-8?q?feat(outlook):=20=E6=B7=BB=E5=8A=A0=20Outlook?= =?UTF-8?q?=20MCP=20=E9=9B=86=E6=88=90=E5=92=8C=E5=88=86=E9=A1=B5=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增 NANO_OUTLOOK_MCP_URL 和 NANO_OUTLOOK_MCP_SERVER_ID 环境变量配置 - 实现 Outlook 邮件和日历的分页查询功能,添加 list_messages 和 list_events API - 在前端 Outlook 页面中集成消息列表和日历事件的分页浏览 - 支持上一页/下一页导航和周视图切换功能 - 修复容器挂载路径问题,确保 deploy-control 创建 app-instance 时路径正确 - 更新 MCP 服务器配置,自动注册 Outlook 工具集 --- app-instance/runtime/registry/instances.json | 4 ---- router-proxy/runtime/conf.d/instances.conf | 24 -------------------- 2 files changed, 28 deletions(-) delete mode 100644 app-instance/runtime/registry/instances.json delete mode 100644 router-proxy/runtime/conf.d/instances.conf diff --git a/app-instance/runtime/registry/instances.json b/app-instance/runtime/registry/instances.json deleted file mode 100644 index 5a0871a..0000000 --- a/app-instance/runtime/registry/instances.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "version": 1, - "instances": [] -} diff --git a/router-proxy/runtime/conf.d/instances.conf b/router-proxy/runtime/conf.d/instances.conf deleted file mode 100644 index 45fe472..0000000 --- a/router-proxy/runtime/conf.d/instances.conf +++ /dev/null @@ -1,24 +0,0 @@ -server { - listen 80 default_server; - server_name _; - return 404; -} - -server { - listen 80; - server_name deploy-smoke-001.127.0.0.1.nip.io; - - location / { - proxy_http_version 1.1; - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - proxy_set_header X-Forwarded-Host $host; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection $connection_upgrade; - proxy_read_timeout 3600s; - proxy_send_timeout 3600s; - proxy_pass http://app-instance-deploy-smoke-001:8080; - } -}