feat: 初次提交

This commit is contained in:
ethan.chen
2026-01-06 17:35:52 +08:00
commit 372b52b214
24 changed files with 4645 additions and 0 deletions

32
package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "cloud-mcp",
"version": "1.0.0",
"description": "Personal MCP server with programming, DevOps, family, and hobby tools",
"type": "module",
"main": "src/index.ts",
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun",
"start": "bun run dist/index.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"personal-assistant"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.7",
"ssh2": "^1.15.0"
},
"devDependencies": {
"@types/node": "^22.7.9",
"@types/ssh2": "^1.15.4",
"typescript": "^5.6.3"
},
"engines": {
"bun": ">=1.0.0"
}
}