@kadoa/mcp 0.1.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.
Files changed (3) hide show
  1. package/README.md +104 -0
  2. package/dist/index.js +34656 -0
  3. package/package.json +40 -0
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@kadoa/mcp",
3
+ "version": "0.1.0",
4
+ "description": "Kadoa MCP Server — manage workflows from Claude Desktop, Cursor, and other MCP clients",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "kadoa-mcp": "dist/index.js"
9
+ },
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "files": [
14
+ "dist",
15
+ "README.md"
16
+ ],
17
+ "scripts": {
18
+ "dev": "bun src/index.ts",
19
+ "build": "bun build src/index.ts --outdir=dist --target=node && sed -i '1s|#!/usr/bin/env bun|#!/usr/bin/env node|' dist/index.js",
20
+ "check-types": "tsc --noEmit",
21
+ "test": "bun test",
22
+ "test:unit": "bun test tests/unit --timeout=120000",
23
+ "prepublishOnly": "bun run check-types && bun run test:unit && bun run build"
24
+ },
25
+ "dependencies": {
26
+ "@kadoa/node-sdk": "^0.20.2",
27
+ "@modelcontextprotocol/sdk": "^1.26.0"
28
+ },
29
+ "devDependencies": {
30
+ "@types/node": "^25.0.3",
31
+ "bun-types": "^1.3.3",
32
+ "typescript": "^5.9.3"
33
+ },
34
+ "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
+ }
40
+ }