-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@itechsmart/mcp-server",
"version": "2.0.3",
"mcpName": "io.github.Iteksmart/mcp-server",
"description": "iTechSmart UAIO MCP Server - connect any AI agent to ProofLink verification and autonomous IT operations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"itechsmart-mcp-server": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node -e \"require('fs').copyFileSync('src/tools.json','dist/tools.json');require('fs').chmodSync('dist/index.js',0o755)\"",
"prepublishOnly": "npm run build",
"test": "npm run build && node --test tests/*.test.mjs"
},
"keywords": [
"mcp",
"model-context-protocol",
"itechsmart",
"uaio",
"prooflink",
"ai-agent",
"claude",
"anthropic"
],
"author": "iTechSmart Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Iteksmart/mcp-server.git"
},
"bugs": {
"url": "https://github.com/Iteksmart/mcp-server/issues"
},
"homepage": "https://github.com/Iteksmart/mcp-server#readme",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.4.0"
}
}