package.json•1.24 kB
{
"name": "excel-mcp-server",
"version": "1.0.0",
"description": "Model Context Protocol server for Excel automation",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"server:start": "node scripts/server-manager.js --start",
"server:stop": "node scripts/server-manager.js --stop",
"server:status": "node scripts/server-manager.js --status",
"server:list": "node scripts/server-manager.js --list",
"server:kill": "node scripts/server-manager.js --kill",
"test": "npm run test:basic && npm run test:integration && npm run test:tools",
"test:basic": "node test/mcp-basic-test.js",
"test:integration": "node test/excel-integration-test.js",
"test:tools": "node test/tool-individual-test.js",
"test:all": "npm run build && npm test"
},
"keywords": [
"mcp",
"excel",
"automation",
"spreadsheet"
],
"author": "",
"license": "ISC",
"devDependencies": {
"typescript": "^5.9.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.1",
"@types/node": "^24.1.0",
"exceljs": "^4.4.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.6"
}
}