package.jsonâĸ2.07 kB
{
"name": "@fr0ster/mcp-abap-adt",
"version": "1.1.7",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --passWithNoTests",
"build": "npx tsc -p tsconfig.json",
"start": "node ./dist/index.js",
"start:http": "node ./dist/index.js --transport streamable-http",
"start:sse": "node ./dist/index.js --transport sse",
"dev": "npx @modelcontextprotocol/inspector node ./dist/index.js",
"dev:http": "node ./tools/dev-http.js",
"dev:sse": "node ./tools/dev-sse.js",
"auth": "npx sap-abap-auth auth",
"clean": "make clean",
"docs:tools": "node ./tools/generate-tools-docs.js",
"prepublishOnly": "npm run build",
"package": "npm pack",
"package:build": "npm run build && npm pack"
},
"keywords": [
"abap",
"sap",
"adt",
"mcp",
"model-context-protocol"
],
"author": "Oleksii Kyslytsia <oleksij.kyslytsja@gmail.com>",
"description": "Embedded ABAP ADT MCP server tailored for the Cloud LLM Hub stack",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fr0ster/mcp-abap-adt.git"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^24.2.1",
"commander": "^14.0.2",
"express": "^5.1.0",
"jest": "^29.7.0",
"jest-util": "^29.7.0",
"open": "^11.0.0",
"ts-jest": "^29.2.0",
"typescript": "^5.9.2",
"yaml": "^2.8.1"
},
"dependencies": {
"@mcp-abap-adt/adt-clients": "^0.1.9",
"@mcp-abap-adt/connection": "^0.1.4",
"@modelcontextprotocol/sdk": "^1.17.2",
"axios": "^1.11.0",
"dotenv": "^17.2.1",
"fast-xml-parser": "^5.2.5",
"xml-js": "^1.6.11",
"zod": "^3.25.76"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"files": [
"dist/",
"bin/",
"doc/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"bin": {
"mcp-abap-adt": "./bin/mcp-abap-adt.js",
"mcp-abap-adt-http": "./bin/mcp-abap-adt-http.js",
"mcp-abap-adt-sse": "./bin/mcp-abap-adt-sse.js"
},
"private": true
}