mcp-log-query-server 2.1.0 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +4 -4
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -72,7 +72,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
72
72
  },
73
73
  env: {
74
74
  type: 'string',
75
- description: '环境标识。指定 prod/cms/生产 等查询生产环境日志(走 Loki API),不指定则查询测试环境(走 SSH)'
75
+ description: '环境标识,不指定则查询测试环境(走 SSH)。可选值:cms/prod/生产(CMS生产环境)、城阳/cy/chengyang、临颖/ly/linying、漯河/lh/luohe、德阳/dy/deyang(私有化环境)'
76
76
  },
77
77
  from: {
78
78
  type: 'string',
@@ -116,7 +116,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
116
116
  },
117
117
  env: {
118
118
  type: 'string',
119
- description: '环境标识。指定 prod/cms/生产 等查询生产环境日志(走 Loki API),不指定则查询测试环境(走 SSH)'
119
+ description: '环境标识,不指定则查询测试环境(走 SSH)。可选值:cms/prod/生产(CMS生产环境)、城阳/cy/chengyang、临颖/ly/linying、漯河/lh/luohe、德阳/dy/deyang(私有化环境)'
120
120
  },
121
121
  from: {
122
122
  type: 'string',
@@ -257,7 +257,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
257
257
  },
258
258
  env: {
259
259
  type: 'string',
260
- description: '环境标识。指定 prod/cms/生产 等查询生产环境日志(走 Loki API),不指定则查询测试环境(走 SSH)'
260
+ description: '环境标识,不指定则查询测试环境(走 SSH)。可选值:cms/prod/生产(CMS生产环境)、城阳/cy/chengyang、临颖/ly/linying、漯河/lh/luohe、德阳/dy/deyang(私有化环境)'
261
261
  },
262
262
  from: {
263
263
  type: 'string',
@@ -303,7 +303,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
303
303
  properties: {
304
304
  env: {
305
305
  type: 'string',
306
- description: '环境标识,如 prod、cms、生产',
306
+ description: '环境标识。可选值:cms/prod/生产(CMS生产环境)、城阳/cy/chengyang、临颖/ly/linying、漯河/lh/luohe、德阳/dy/deyang(私有化环境)',
307
307
  default: 'cms'
308
308
  },
309
309
  project: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-log-query-server",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "MCP Server for querying server logs via SSH jump host and Grafana Loki API",
5
5
  "main": "index.js",
6
6
  "type": "module",