tca-mcp-server 1.3.1 → 1.3.2

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.
package/dist/api/oplog.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import TcaClient from './client.js';
2
- const opPluginType = 1;
2
+ const opPluginType = 2;
3
3
  // 操作类型枚举,目前只有scan_remote
4
4
  export var LogType;
5
5
  (function (LogType) {
package/dist/stdio.js CHANGED
@@ -5,7 +5,7 @@ import { registerTools } from './tools/index.js';
5
5
  // Create an MCP server
6
6
  const server = new McpServer({
7
7
  name: '腾讯云代码分析(TCA)',
8
- version: '1.3.1',
8
+ version: '1.3.2',
9
9
  });
10
10
  // 从命令行获取参数,如果 --oa参数存在,则表示运行在OA环境,否则运行在SaaS环境
11
11
  const env = process.argv.includes('--oa') ? 'oa' : 'saas';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tca-mcp-server",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "",
5
5
  "main": "./dist/stdio.js",
6
6
  "scripts": {
package/src/api/oplog.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import TcaClient from './client.js';
2
2
 
3
- const opPluginType = 1;
3
+ const opPluginType = 2;
4
4
 
5
5
  // 操作类型枚举,目前只有scan_remote
6
6
  export enum LogType {
package/src/stdio.ts CHANGED
@@ -7,7 +7,7 @@ import { registerTools } from './tools/index.js';
7
7
  // Create an MCP server
8
8
  const server = new McpServer({
9
9
  name: '腾讯云代码分析(TCA)',
10
- version: '1.3.1',
10
+ version: '1.3.2',
11
11
  });
12
12
 
13
13
  // 从命令行获取参数,如果 --oa参数存在,则表示运行在OA环境,否则运行在SaaS环境