@cutpro/mcp 1.0.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/LICENSE +21 -0
- package/README.md +117 -0
- package/dist/index.js +379 -0
- package/package.json +49 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cutpro/mcp",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "CutPro MCP server — wraps the public v1 API as MCP tools for AI clients",
|
|
5
|
+
"author": "Lucas Toledo",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"packageManager": "bun@1.3.14",
|
|
9
|
+
"keywords": ["mcp", "model-context-protocol", "cutpro", "ai", "clipping"],
|
|
10
|
+
"homepage": "https://cut.pro/docs/api-reference/mcp",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/getcutpro/cutpro-mcp.git"
|
|
14
|
+
},
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/getcutpro/cutpro-mcp/issues"
|
|
17
|
+
},
|
|
18
|
+
"bin": {
|
|
19
|
+
"cutpro-mcp": "dist/index.js"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=18"
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"dev": "bun run src/index.ts",
|
|
32
|
+
"start": "node dist/index.js",
|
|
33
|
+
"start:http": "MCP_TRANSPORT=http node dist/index.js",
|
|
34
|
+
"build": "rm -rf dist && bun build src/index.ts --outdir dist --target node --minify",
|
|
35
|
+
"typecheck": "bun x tsc --noEmit",
|
|
36
|
+
"prepublishOnly": "bun run build"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
40
|
+
"express": "^5.2.1",
|
|
41
|
+
"zod": "^4.0.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/bun": "^1.2.0",
|
|
45
|
+
"@types/express": "^5.0.0",
|
|
46
|
+
"@types/node": "^22.0.0",
|
|
47
|
+
"typescript": "^5.6.0"
|
|
48
|
+
}
|
|
49
|
+
}
|