aem-mcp-server
Version:
AEM Model Context Protocol (MCP) server
55 lines (54 loc) • 1.44 kB
JSON
{
"name": "aem-mcp-server",
"version": "1.3.8",
"description": "AEM Model Context Protocol (MCP) server",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/easingthemes/aem-mcp-server.git"
},
"keywords": [
"AEM",
"MCP",
"Model Context Protocol",
"LLM",
"Adobe Experience Manager",
"TypeScript"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"aem-mcp": "dist/cli.js"
},
"files": [
"dist/**/*.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:types && npm run build:ts",
"build:ts": "esbuild src/**/*.ts src/*.ts --outdir=dist --platform=node --minify",
"build:types": "tsc --emitDeclarationOnly",
"start": "MCP_LOGGER=true node dist/cli.js",
"test:dev": "node ./dist/cli.js",
"test:npm": "npm pack && npm install -g ./aem-mcp-server-$npm_package_version.tgz && aem-mcp -e -H=http://localhost:5502"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.3",
"cors": "^2.8.5",
"express": "^5.1.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.3.0",
"@types/yargs": "^17.0.33",
"esbuild": "^0.25.9",
"typescript": "^5.9.2"
},
"type": "module"
}