@kadoa/mcp 0.1.2 → 0.2.0
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/README.md +119 -22
- package/dist/index.js +51606 -32717
- package/package.json +10 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kadoa/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Kadoa MCP Server — manage workflows from Claude Desktop, Cursor, and other MCP clients",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -16,25 +16,27 @@
|
|
|
16
16
|
],
|
|
17
17
|
"scripts": {
|
|
18
18
|
"dev": "bun src/index.ts",
|
|
19
|
-
"
|
|
19
|
+
"dev:http": "MCP_HTTP=1 bun src/index.ts",
|
|
20
|
+
"build": "bun build src/index.ts --outdir=dist --target=node --external express && node -e \"const f='dist/index.js';require('fs').writeFileSync(f,require('fs').readFileSync(f,'utf8').replace('#!/usr/bin/env bun','#!/usr/bin/env node'))\"",
|
|
20
21
|
"check-types": "tsc --noEmit",
|
|
21
22
|
"test": "BUN_TEST=1 bun test",
|
|
22
23
|
"test:unit": "BUN_TEST=1 bun test tests/unit --timeout=120000",
|
|
24
|
+
"test:e2e": "BUN_TEST=1 bun test tests/e2e --timeout=600000",
|
|
25
|
+
"test:eval": "BUN_TEST=1 bun test tests/evals --timeout=300000",
|
|
23
26
|
"prepublishOnly": "bun run check-types && bun run test:unit && bun run build"
|
|
24
27
|
},
|
|
25
28
|
"dependencies": {
|
|
26
29
|
"@kadoa/node-sdk": "^0.20.2",
|
|
27
|
-
"@modelcontextprotocol/sdk": "^1.26.0"
|
|
30
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
31
|
+
"express": "^5.2.1",
|
|
32
|
+
"zod": "^4.3.6"
|
|
28
33
|
},
|
|
29
34
|
"devDependencies": {
|
|
35
|
+
"@anthropic-ai/sdk": "^0.78.0",
|
|
30
36
|
"@types/node": "^25.0.3",
|
|
31
37
|
"bun-types": "^1.3.3",
|
|
32
38
|
"typescript": "^5.9.3"
|
|
33
39
|
},
|
|
34
40
|
"keywords": ["kadoa", "mcp", "model-context-protocol", "web-scraping", "data-extraction"],
|
|
35
|
-
"license": "MIT"
|
|
36
|
-
"repository": {
|
|
37
|
-
"type": "git",
|
|
38
|
-
"url": "git+https://github.com/kadoa-org/kadoa-mcp.git"
|
|
39
|
-
}
|
|
41
|
+
"license": "MIT"
|
|
40
42
|
}
|