feat(scaffold): initialize project with TypeScript, vitest, MCP SDK

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-Claude)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-03-10 16:40:43 +00:00
commit b02dff9808
8 changed files with 2899 additions and 0 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "sage-mcp-server",
"version": "1.0.0",
"description": "MCP server for Sage X3 ERP integration",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"fast-xml-parser": "^5.5.1",
"soap": "^1.8.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.4.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}