init: scaffold with PLAN.md, package.json, tsconfig.json

This commit is contained in:
2026-09-07 16:25:07 -04:00
commit 15dce68efe
3 changed files with 321 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"name": "komodo-mcp-server",
"version": "1.0.0",
"description": "MCP server for Komodo build/deploy platform — full API coverage",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}