lexic-mcp 0.2.19 → 0.2.21

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/index.js CHANGED
@@ -33,6 +33,7 @@ import { createTaskCreateTool, createTaskNextTool, createTaskCompleteTool, creat
33
33
  import { createWorkflowExecuteTool } from './tools/workflow-execute.js';
34
34
  import { createWorkflowTemplateListTool, createWorkflowTemplateGetTool, createWorkflowTemplateCreateFromRunTool, createWorkflowTemplateConfirmCreateTool } from './tools/workflow-templates.js';
35
35
  import { createWorkflowStatusToolV2 } from './tools/workflow-status.js';
36
+ import { createWorkflowCreateTool } from './tools/workflow-create.js';
36
37
  import { createHttpServer } from './server/http-server.js';
37
38
  import { logger } from './utils/logger.js';
38
39
  import { getTriggers, invalidateCache as invalidateTriggerCache } from './utils/trigger-cache.js';
@@ -120,6 +121,7 @@ async function registerTools(lexicClient, triggers, domains) {
120
121
  createWorkflowTemplateCreateFromRunTool(lexicClient),
121
122
  createWorkflowTemplateConfirmCreateTool(lexicClient),
122
123
  createWorkflowStatusToolV2(lexicClient),
124
+ createWorkflowCreateTool(lexicClient),
123
125
  ];
124
126
  for (const tool of autonomousTools) {
125
127
  tools.set(tool.name, tool);
package/package.json CHANGED
@@ -1,56 +1,56 @@
1
- {
2
- "name": "lexic-mcp",
3
- "version": "0.2.19",
4
- "description": "MCP server connecting Claude Code to Lexic knowledge management",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "bin": {
8
- "lexic-mcp": "dist/bundle.cjs"
9
- },
10
- "scripts": {
11
- "build": "tsc",
12
- "bundle": "npm run build && node scripts/bundle.cjs",
13
- "dev": "tsc --watch",
14
- "start": "node dist/index.js",
15
- "test": "vitest",
16
- "test:unit": "vitest run tests/unit",
17
- "test:integration": "vitest run tests/integration",
18
- "lint": "eslint src --ext .ts",
19
- "lint:fix": "eslint src --ext .ts --fix",
20
- "format": "prettier --write \"src/**/*.ts\"",
21
- "clean": "rimraf dist",
22
- "prepublishOnly": "npm run bundle"
23
- },
24
- "keywords": [
25
- "mcp",
26
- "lexic",
27
- "claude",
28
- "knowledge-management",
29
- "ai-development"
30
- ],
31
- "author": "Parul Bhargava <parulb@lexic.io>",
32
- "license": "MIT",
33
- "dependencies": {
34
- "@modelcontextprotocol/sdk": "^1.0.0",
35
- "express": "^5.2.1"
36
- },
37
- "devDependencies": {
38
- "@types/express": "^5.0.6",
39
- "@types/node": "^20.10.0",
40
- "@typescript-eslint/eslint-plugin": "^6.13.0",
41
- "@typescript-eslint/parser": "^6.13.0",
42
- "esbuild": "^0.20.0",
43
- "eslint": "^8.55.0",
44
- "prettier": "^3.1.0",
45
- "rimraf": "^5.0.0",
46
- "typescript": "^5.3.0",
47
- "vitest": "^4.0.17"
48
- },
49
- "engines": {
50
- "node": ">=18.0.0"
51
- },
52
- "files": [
53
- "dist/bundle.cjs",
54
- "README.md"
55
- ]
56
- }
1
+ {
2
+ "name": "lexic-mcp",
3
+ "version": "0.2.21",
4
+ "description": "MCP server connecting Claude Code to Lexic knowledge management",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "lexic-mcp": "dist/bundle.cjs"
9
+ },
10
+ "scripts": {
11
+ "build": "tsc",
12
+ "bundle": "npm run build && node scripts/bundle.cjs",
13
+ "dev": "tsc --watch",
14
+ "start": "node dist/index.js",
15
+ "test": "vitest",
16
+ "test:unit": "vitest run tests/unit",
17
+ "test:integration": "vitest run tests/integration",
18
+ "lint": "eslint src --ext .ts",
19
+ "lint:fix": "eslint src --ext .ts --fix",
20
+ "format": "prettier --write \"src/**/*.ts\"",
21
+ "clean": "rimraf dist",
22
+ "prepublishOnly": "npm run bundle"
23
+ },
24
+ "keywords": [
25
+ "mcp",
26
+ "lexic",
27
+ "claude",
28
+ "knowledge-management",
29
+ "ai-development"
30
+ ],
31
+ "author": "Parul Bhargava <parulb@lexic.io>",
32
+ "license": "MIT",
33
+ "dependencies": {
34
+ "@modelcontextprotocol/sdk": "^1.0.0",
35
+ "express": "^5.2.1"
36
+ },
37
+ "devDependencies": {
38
+ "@types/express": "^5.0.6",
39
+ "@types/node": "^20.10.0",
40
+ "@typescript-eslint/eslint-plugin": "^6.13.0",
41
+ "@typescript-eslint/parser": "^6.13.0",
42
+ "esbuild": "^0.20.0",
43
+ "eslint": "^8.55.0",
44
+ "prettier": "^3.1.0",
45
+ "rimraf": "^5.0.0",
46
+ "typescript": "^5.3.0",
47
+ "vitest": "^4.0.17"
48
+ },
49
+ "engines": {
50
+ "node": ">=18.0.0"
51
+ },
52
+ "files": [
53
+ "dist/bundle.cjs",
54
+ "README.md"
55
+ ]
56
+ }