Files
sage-mcp-server/package.json

32 lines
741 B
JSON

{
"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",
"start:http": "MCP_TRANSPORT=http node dist/index.js"
},
"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"
}
}