version mise à jour par claude , à tester

This commit is contained in:
Arthur Ria
2026-05-20 09:38:07 +02:00
commit b59cbb3546
58 changed files with 24548 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{
"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"
}
}