@fractary/faber-mcp 1.1.2 → 1.1.5
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.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/server.js +1 -1
- package/package.json +71 -71
package/dist/index.d.ts
CHANGED
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
export { createWorkflowTools, createEventTools } from './tools/index.js';
|
|
7
7
|
export { LocalFilesBackend } from './backends/local-files.js';
|
|
8
8
|
export * from './types.js';
|
|
9
|
-
export declare const version = "1.
|
|
9
|
+
export declare const version = "1.1.5";
|
|
10
10
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
package/dist/server.js
CHANGED
package/package.json
CHANGED
|
@@ -1,71 +1,71 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@fractary/faber-mcp",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "MCP Server for FABER workflow orchestration - run, status, events, and run management",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"bin": {
|
|
9
|
-
"fractary-faber-mcp": "./dist/server.js"
|
|
10
|
-
},
|
|
11
|
-
"files": [
|
|
12
|
-
"dist",
|
|
13
|
-
"README.md",
|
|
14
|
-
"LICENSE"
|
|
15
|
-
],
|
|
16
|
-
"scripts": {
|
|
17
|
-
"dev": "tsx src/server.ts",
|
|
18
|
-
"build": "tsc",
|
|
19
|
-
"start": "node dist/server.js",
|
|
20
|
-
"watch": "tsc --watch",
|
|
21
|
-
"test": "vitest run",
|
|
22
|
-
"test:watch": "vitest",
|
|
23
|
-
"test:coverage": "vitest run --coverage",
|
|
24
|
-
"lint": "eslint src --ext .ts",
|
|
25
|
-
"typecheck": "tsc --noEmit",
|
|
26
|
-
"prepublishOnly": "npm run build",
|
|
27
|
-
"clean": "rm -rf dist"
|
|
28
|
-
},
|
|
29
|
-
"keywords": [
|
|
30
|
-
"faber",
|
|
31
|
-
"mcp",
|
|
32
|
-
"model-context-protocol",
|
|
33
|
-
"workflow",
|
|
34
|
-
"orchestration",
|
|
35
|
-
"events",
|
|
36
|
-
"ai",
|
|
37
|
-
"development"
|
|
38
|
-
],
|
|
39
|
-
"author": "Fractary Team",
|
|
40
|
-
"license": "MIT",
|
|
41
|
-
"publishConfig": {
|
|
42
|
-
"access": "public"
|
|
43
|
-
},
|
|
44
|
-
"dependencies": {
|
|
45
|
-
"@fractary/faber": "*",
|
|
46
|
-
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
47
|
-
"ajv": "^8.12.0",
|
|
48
|
-
"ajv-formats": "^2.1.1"
|
|
49
|
-
},
|
|
50
|
-
"devDependencies": {
|
|
51
|
-
"@types/node": "^20.10.0",
|
|
52
|
-
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
53
|
-
"@typescript-eslint/parser": "^6.19.0",
|
|
54
|
-
"eslint": "^8.56.0",
|
|
55
|
-
"tsx": "^4.7.0",
|
|
56
|
-
"typescript": "^5.3.0",
|
|
57
|
-
"vitest": "^1.0.0"
|
|
58
|
-
},
|
|
59
|
-
"engines": {
|
|
60
|
-
"node": ">=18.0.0"
|
|
61
|
-
},
|
|
62
|
-
"repository": {
|
|
63
|
-
"type": "git",
|
|
64
|
-
"url": "git+https://github.com/fractary/faber.git",
|
|
65
|
-
"directory": "mcp/server"
|
|
66
|
-
},
|
|
67
|
-
"bugs": {
|
|
68
|
-
"url": "https://github.com/fractary/faber/issues"
|
|
69
|
-
},
|
|
70
|
-
"homepage": "https://github.com/fractary/faber/tree/main/mcp/server#readme"
|
|
71
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@fractary/faber-mcp",
|
|
3
|
+
"version": "1.1.5",
|
|
4
|
+
"description": "MCP Server for FABER workflow orchestration - run, status, events, and run management",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"fractary-faber-mcp": "./dist/server.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"dev": "tsx src/server.ts",
|
|
18
|
+
"build": "tsc",
|
|
19
|
+
"start": "node dist/server.js",
|
|
20
|
+
"watch": "tsc --watch",
|
|
21
|
+
"test": "vitest run",
|
|
22
|
+
"test:watch": "vitest",
|
|
23
|
+
"test:coverage": "vitest run --coverage",
|
|
24
|
+
"lint": "eslint src --ext .ts",
|
|
25
|
+
"typecheck": "tsc --noEmit",
|
|
26
|
+
"prepublishOnly": "npm run build",
|
|
27
|
+
"clean": "rm -rf dist"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"faber",
|
|
31
|
+
"mcp",
|
|
32
|
+
"model-context-protocol",
|
|
33
|
+
"workflow",
|
|
34
|
+
"orchestration",
|
|
35
|
+
"events",
|
|
36
|
+
"ai",
|
|
37
|
+
"development"
|
|
38
|
+
],
|
|
39
|
+
"author": "Fractary Team",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@fractary/faber": "*",
|
|
46
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
47
|
+
"ajv": "^8.12.0",
|
|
48
|
+
"ajv-formats": "^2.1.1"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/node": "^20.10.0",
|
|
52
|
+
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
53
|
+
"@typescript-eslint/parser": "^6.19.0",
|
|
54
|
+
"eslint": "^8.56.0",
|
|
55
|
+
"tsx": "^4.7.0",
|
|
56
|
+
"typescript": "^5.3.0",
|
|
57
|
+
"vitest": "^1.0.0"
|
|
58
|
+
},
|
|
59
|
+
"engines": {
|
|
60
|
+
"node": ">=18.0.0"
|
|
61
|
+
},
|
|
62
|
+
"repository": {
|
|
63
|
+
"type": "git",
|
|
64
|
+
"url": "git+https://github.com/fractary/faber.git",
|
|
65
|
+
"directory": "mcp/server"
|
|
66
|
+
},
|
|
67
|
+
"bugs": {
|
|
68
|
+
"url": "https://github.com/fractary/faber/issues"
|
|
69
|
+
},
|
|
70
|
+
"homepage": "https://github.com/fractary/faber/tree/main/mcp/server#readme"
|
|
71
|
+
}
|