@aiconnect/agentjobs-mcp 1.0.8
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/.env.example +11 -0
- package/README.md +311 -0
- package/build/cancel_job.js +71 -0
- package/build/config.js +6 -0
- package/build/create_job.js +151 -0
- package/build/get_job.js +62 -0
- package/build/index.js +83 -0
- package/build/list_jobs.js +88 -0
- package/docs/agent-jobs-api.md +336 -0
- package/docs/guidelines.md +267 -0
- package/package.json +68 -0
package/package.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aiconnect/agentjobs-mcp",
|
|
3
|
+
"version": "1.0.8",
|
|
4
|
+
"description": "MCP (Model Context Protocol) server for managing Agent Jobs in the AI Connect platform. Developed by AI Connect - Advanced AI automation and integration solutions.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "build/index.js",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/aiconnect-cloud/agentjobs-mcp.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://aiconnect.cloud",
|
|
12
|
+
"organization": "AI Connect",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"mcp",
|
|
15
|
+
"model-context-protocol",
|
|
16
|
+
"anthropic",
|
|
17
|
+
"aiconnect",
|
|
18
|
+
"agent-jobs",
|
|
19
|
+
"typescript",
|
|
20
|
+
"automation"
|
|
21
|
+
],
|
|
22
|
+
"author": "Eric Santos",
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"bin": {
|
|
25
|
+
"agentjobs-mcp": "./build/index.js"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "tsc && chmod +x build/index.js",
|
|
29
|
+
"start": "node build/index.js",
|
|
30
|
+
"dev": "tsc && node build/index.js",
|
|
31
|
+
"clean": "rm -rf build",
|
|
32
|
+
"typecheck": "tsc --noEmit",
|
|
33
|
+
"lint": "echo 'Linting not configured yet'",
|
|
34
|
+
"test": "echo 'Tests not configured yet'",
|
|
35
|
+
"prepare": "npm run build",
|
|
36
|
+
"version:patch": "npm version patch",
|
|
37
|
+
"version:minor": "npm version minor",
|
|
38
|
+
"version:major": "npm version major",
|
|
39
|
+
"publish:patch": "npm run version:patch && npm publish",
|
|
40
|
+
"publish:minor": "npm run version:minor && npm publish",
|
|
41
|
+
"publish:major": "npm run version:major && npm publish",
|
|
42
|
+
"release": "npm run clean && npm run build && npm run typecheck && npm publish",
|
|
43
|
+
"prepublishOnly": "npm run clean && npm run build && npm run typecheck",
|
|
44
|
+
"cli:help": "npm run build && node build/index.js --help",
|
|
45
|
+
"cli:version": "npm run build && node build/index.js --version",
|
|
46
|
+
"cli:config": "npm run build && node build/index.js --config"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@modelcontextprotocol/sdk": "^1.1.0",
|
|
50
|
+
"axios": "^1.9.0",
|
|
51
|
+
"dotenv": "^16.5.0",
|
|
52
|
+
"zod": "^3.22.4"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@types/node": "^22.10.5",
|
|
56
|
+
"typescript": "^5.7.2"
|
|
57
|
+
},
|
|
58
|
+
"engines": {
|
|
59
|
+
"node": ">=18.0.0"
|
|
60
|
+
},
|
|
61
|
+
"files": [
|
|
62
|
+
"build/**/*",
|
|
63
|
+
"docs/**/*",
|
|
64
|
+
"README.md",
|
|
65
|
+
"package.json",
|
|
66
|
+
".env.example"
|
|
67
|
+
]
|
|
68
|
+
}
|