31 lines
732 B
JSON
31 lines
732 B
JSON
{
|
|
"name": "wms-mcp-server",
|
|
"version": "1.0.0",
|
|
"description": "MCP Server for WMS debugging and analysis",
|
|
"main": "src/index.js",
|
|
"bin": {
|
|
"wms-mcp-server": "./src/index.js"
|
|
},
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"test": "node test-connection.js",
|
|
"build": "pkg . --targets node18-win-x64 --output dist/wms-mcp-server.exe"
|
|
},
|
|
"keywords": ["mcp", "wms", "debugging"],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "commonjs",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
"axios": "^1.6.0",
|
|
"dotenv": "^17.2.4"
|
|
},
|
|
"pkg": {
|
|
"assets": [
|
|
"node_modules/@modelcontextprotocol/**/*"
|
|
],
|
|
"targets": ["node18-win-x64"],
|
|
"outputPath": "dist"
|
|
}
|
|
}
|