mcp-system-info
Version:
基于MCP规范实现的系统信息获取工具
62 lines (61 loc) • 1.65 kB
JSON
{
"name": "mcp-system-info",
"version": "0.3.0",
"type": "module",
"description": "基于MCP规范实现的系统信息获取工具",
"main": "index.js",
"bin": {
"mcp-system-info": "./index.js"
},
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js",
"test": "node test.js",
"prepack": "npm test",
"prepublishOnly": "npm test",
"version:patch": "npm version patch && git push --follow-tags",
"version:minor": "npm version minor && git push --follow-tags",
"version:major": "npm version major && git push --follow-tags",
"publish:dry": "npm publish --dry-run",
"publish:npm": "npm publish",
"release:patch": "npm run version:patch && npm run publish:npm",
"release:minor": "npm run version:minor && npm run publish:npm",
"release:major": "npm run version:major && npm run publish:npm",
"release": "node release.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"system-info",
"system-monitoring",
"ai-tools",
"nodejs",
"system-administration"
],
"author": "Ryan",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/cooderamily/system-tool-mcp.git"
},
"bugs": {
"url": "https://github.com/cooderamily/system-tool-mcp/issues"
},
"files": [
"index.js",
"README.md",
"package.json",
"CHANGELOG.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"systeminformation": "^5.27.7"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}