aem-mcp-server 1.3.1 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -29,7 +29,7 @@ This project is designed for non-technical persons who want to manage AEM via na
29
29
  - Access to an AEM instance (local or remote)
30
30
 
31
31
  ### Add AEM MCP to AI IDE
32
- [![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en/install-mcp?name=AEM&config=JTdCJTIydXJsJTIyJTNBJTIyaHR0cCUzQSUyRiUyRjEyNy4wLjAuMSUzQTg1MDIlMkZtY3AlMjIlN0Q%3D)
32
+ [![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en/install-mcp?name=AEM&config=eyJ1cmwiOiJodHRwOi8vMTI3LjAuMC4xOjg1MDIvbWNwIn0%3D)
33
33
 
34
34
  OR:
35
35
 
@@ -51,7 +51,7 @@ Options:
51
51
  -P, --publisher Publisher instance URL [string] [default: "http://localhost:4503"]
52
52
  -u, --user Username for authentication [string] [default: "admin"]
53
53
  -p, --pass Password for authentication [string] [default: "admin"]
54
- -m, --mcpPort Port for MCP server [number] [default: 3000]
54
+ -m, --mcpPort Port for MCP server [number] [default: 8502]
55
55
  -h, --help Show help [boolean]
56
56
 
57
57
  ```
@@ -82,7 +82,7 @@ AEM MCP Server is compatible with modern AI IDEs and code editors that support M
82
82
  - Open your IDE's MCP server settings.
83
83
  - Add a new server with:
84
84
  - **Type:** Custom MCP
85
- - **url:** `http://127.0.0.1:3000/mcp`
85
+ - **url:** `http://127.0.0.1:8502/mcp`
86
86
 
87
87
  3. **Restart your IDE** if needed. The IDE will now be able to:
88
88
  - List, search, and manage AEM content
@@ -94,7 +94,7 @@ Sample for AI-based code editors or custom clients:
94
94
  {
95
95
  "mcpServers": {
96
96
  "AEM": {
97
- "url": "http://127.0.0.1:3000/mcp"
97
+ "url": "http://127.0.0.1:8502/mcp"
98
98
  }
99
99
  }
100
100
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aem-mcp-server",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "AEM Model Context Protocol (MCP) server",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -25,8 +25,6 @@
25
25
  },
26
26
  "files": [
27
27
  "dist/**/*.js",
28
- "build/**/*.d.ts",
29
- "docs/",
30
28
  "README.md",
31
29
  "LICENSE"
32
30
  ],
package/docs/API.md DELETED
@@ -1,286 +0,0 @@
1
- ```json
2
- {
3
- "methods": [
4
- {
5
- "name": "validateComponent",
6
- "description": "Validate component changes before applying them",
7
- "parameters": [
8
- "locale",
9
- "page_path",
10
- "component",
11
- "props"
12
- ]
13
- },
14
- {
15
- "name": "updateComponent",
16
- "description": "Update component properties in AEM",
17
- "parameters": [
18
- "componentPath",
19
- "properties"
20
- ]
21
- },
22
- {
23
- "name": "undoChanges",
24
- "description": "Undo the last component changes",
25
- "parameters": [
26
- "job_id"
27
- ]
28
- },
29
- {
30
- "name": "scanPageComponents",
31
- "description": "Scan a page to discover all components and their properties",
32
- "parameters": [
33
- "pagePath"
34
- ]
35
- },
36
- {
37
- "name": "fetchSites",
38
- "description": "Get all available sites in AEM",
39
- "parameters": []
40
- },
41
- {
42
- "name": "fetchLanguageMasters",
43
- "description": "Get language masters for a specific site",
44
- "parameters": [
45
- "site"
46
- ]
47
- },
48
- {
49
- "name": "fetchAvailableLocales",
50
- "description": "Get available locales for a site and language master",
51
- "parameters": [
52
- "site",
53
- "languageMasterPath"
54
- ]
55
- },
56
- {
57
- "name": "replicateAndPublish",
58
- "description": "Replicate and publish content to selected locales",
59
- "parameters": [
60
- "selectedLocales",
61
- "componentData",
62
- "localizedOverrides"
63
- ]
64
- },
65
- {
66
- "name": "getAllTextContent",
67
- "description": "Get all text content from a page including titles, text components, and descriptions",
68
- "parameters": [
69
- "pagePath"
70
- ]
71
- },
72
- {
73
- "name": "getPageTextContent",
74
- "description": "Get text content from a specific page",
75
- "parameters": [
76
- "pagePath"
77
- ]
78
- },
79
- {
80
- "name": "getPageImages",
81
- "description": "Get all images from a page, including those within Experience Fragments",
82
- "parameters": [
83
- "pagePath"
84
- ]
85
- },
86
- {
87
- "name": "updateImagePath",
88
- "description": "Update the image path for an image component and verify the update",
89
- "parameters": [
90
- "componentPath",
91
- "newImagePath"
92
- ]
93
- },
94
- {
95
- "name": "getPageContent",
96
- "description": "Get all content from a page including Experience Fragments and Content Fragments",
97
- "parameters": [
98
- "pagePath"
99
- ]
100
- },
101
- {
102
- "name": "listPages",
103
- "description": "List all pages under a site root",
104
- "parameters": [
105
- "siteRoot",
106
- "depth",
107
- "limit"
108
- ]
109
- },
110
- {
111
- "name": "getNodeContent",
112
- "description": "Legacy: Get JCR node content",
113
- "parameters": [
114
- "path",
115
- "depth"
116
- ]
117
- },
118
- {
119
- "name": "listChildren",
120
- "description": "Legacy: List child nodes",
121
- "parameters": [
122
- "path"
123
- ]
124
- },
125
- {
126
- "name": "getPageProperties",
127
- "description": "Get page properties",
128
- "parameters": [
129
- "pagePath"
130
- ]
131
- },
132
- {
133
- "name": "searchContent",
134
- "description": "Search content using Query Builder",
135
- "parameters": [
136
- "type",
137
- "fulltext",
138
- "path",
139
- "limit"
140
- ]
141
- },
142
- {
143
- "name": "executeJCRQuery",
144
- "description": "Execute JCR query",
145
- "parameters": [
146
- "query",
147
- "limit"
148
- ]
149
- },
150
- {
151
- "name": "getAssetMetadata",
152
- "description": "Get asset metadata",
153
- "parameters": [
154
- "assetPath"
155
- ]
156
- },
157
- {
158
- "name": "getStatus",
159
- "description": "Get workflow status by ID",
160
- "parameters": [
161
- "workflowId"
162
- ]
163
- },
164
- {
165
- "name": "listMethods",
166
- "description": "Get list of available MCP methods",
167
- "parameters": []
168
- },
169
- {
170
- "name": "enhancedPageSearch",
171
- "description": "Intelligent page search with comprehensive fallback strategies and cross-section search",
172
- "parameters": [
173
- "searchTerm",
174
- "basePath",
175
- "includeAlternateLocales"
176
- ]
177
- },
178
- {
179
- "name": "createPage",
180
- "description": "Create a new page in AEM",
181
- "parameters": [
182
- "parentPath",
183
- "title",
184
- "template",
185
- "name",
186
- "properties"
187
- ]
188
- },
189
- {
190
- "name": "deletePage",
191
- "description": "Delete a page from AEM",
192
- "parameters": [
193
- "pagePath",
194
- "force"
195
- ]
196
- },
197
- {
198
- "name": "createComponent",
199
- "description": "Create a new component on a page",
200
- "parameters": [
201
- "pagePath",
202
- "componentType",
203
- "resourceType",
204
- "properties",
205
- "name"
206
- ]
207
- },
208
- {
209
- "name": "deleteComponent",
210
- "description": "Delete a component from AEM",
211
- "parameters": [
212
- "componentPath",
213
- "force"
214
- ]
215
- },
216
- {
217
- "name": "unpublishContent",
218
- "description": "Unpublish content from the publish environment",
219
- "parameters": [
220
- "contentPaths",
221
- "unpublishTree"
222
- ]
223
- },
224
- {
225
- "name": "activatePage",
226
- "description": "Activate (publish) a single page",
227
- "parameters": [
228
- "pagePath",
229
- "activateTree"
230
- ]
231
- },
232
- {
233
- "name": "deactivatePage",
234
- "description": "Deactivate (unpublish) a single page",
235
- "parameters": [
236
- "pagePath",
237
- "deactivateTree"
238
- ]
239
- },
240
- {
241
- "name": "uploadAsset",
242
- "description": "Upload a new asset to AEM DAM",
243
- "parameters": [
244
- "parentPath",
245
- "fileName",
246
- "fileContent",
247
- "mimeType",
248
- "metadata"
249
- ]
250
- },
251
- {
252
- "name": "updateAsset",
253
- "description": "Update an existing asset in AEM DAM",
254
- "parameters": [
255
- "assetPath",
256
- "metadata",
257
- "fileContent",
258
- "mimeType"
259
- ]
260
- },
261
- {
262
- "name": "deleteAsset",
263
- "description": "Delete an asset from AEM DAM",
264
- "parameters": [
265
- "assetPath",
266
- "force"
267
- ]
268
- },
269
- {
270
- "name": "getTemplates",
271
- "description": "Get available page templates",
272
- "parameters": [
273
- "sitePath"
274
- ]
275
- },
276
- {
277
- "name": "getTemplateStructure",
278
- "description": "Get detailed structure of a specific template",
279
- "parameters": [
280
- "templatePath"
281
- ]
282
- }
283
- ],
284
- "total": 35
285
- }
286
- ```
package/docs/CHANGELOG.md DELETED
@@ -1,154 +0,0 @@
1
- ## [1.3.1](https://github.com/easingthemes/aem-mcp-server/compare/v1.3.0...v1.3.1) (2025-08-19)
2
-
3
-
4
- ### Bug Fixes
5
-
6
- * add AEMaaCS auth params ([3b2cbbf](https://github.com/easingthemes/aem-mcp-server/commit/3b2cbbf9e5b6b6c827b497a3f184e8cd55bed452))
7
-
8
- # [1.3.0](https://github.com/easingthemes/aem-mcp-server/compare/v1.2.0...v1.3.0) (2025-08-10)
9
-
10
-
11
- ### Features
12
-
13
- * add logger, change port ([f4ee48b](https://github.com/easingthemes/aem-mcp-server/commit/f4ee48b32fde2034b53f29fb2efa3aef9ba20f39))
14
-
15
- # [1.2.0](https://github.com/easingthemes/aem-mcp-server/compare/v1.1.5...v1.2.0) (2025-08-10)
16
-
17
-
18
- ### Features
19
-
20
- * add AEMaaCS OAuth support, add fetch retry on 401 ([0f53d1a](https://github.com/easingthemes/aem-mcp-server/commit/0f53d1a4bc8bc622f018f68c021d95e4a0791e78))
21
-
22
- ## [1.1.5](https://github.com/easingthemes/aem-mcp-server/compare/v1.1.4...v1.1.5) (2025-08-08)
23
-
24
-
25
- ### Bug Fixes
26
-
27
- * remove invalid empty `prompts` ([92c64d3](https://github.com/easingthemes/aem-mcp-server/commit/92c64d3d2db3ff32ce0e2b651b22697940761dd0))
28
-
29
- ## [1.1.4](https://github.com/easingthemes/aem-mcp-server/compare/v1.1.3...v1.1.4) (2025-07-19)
30
-
31
-
32
- ### Bug Fixes
33
-
34
- * [docs] simplify Readme ([6e00bef](https://github.com/easingthemes/aem-mcp-server/commit/6e00bef7a498d872573549cc7d35206affe98bba))
35
-
36
- ## [1.1.3](https://github.com/easingthemes/aem-mcp-server/compare/v1.1.2...v1.1.3) (2025-07-19)
37
-
38
-
39
- ### Bug Fixes
40
-
41
- * [docs] simplify Readme ([12d6753](https://github.com/easingthemes/aem-mcp-server/commit/12d6753d214de6eb49451595025de95df170f66b))
42
-
43
- ## [1.1.2](https://github.com/easingthemes/aem-mcp-server/compare/v1.1.1...v1.1.2) (2025-07-19)
44
-
45
-
46
- ### Bug Fixes
47
-
48
- * [docs] simplify Readme ([c9af9e6](https://github.com/easingthemes/aem-mcp-server/commit/c9af9e67043ced9e54a6bbf83cd1527026ae0c69))
49
-
50
- ## [1.1.1](https://github.com/easingthemes/aem-mcp-server/compare/v1.1.0...v1.1.1) (2025-07-19)
51
-
52
-
53
- ### Bug Fixes
54
-
55
- * [docs] simplify Readme ([3d70ee2](https://github.com/easingthemes/aem-mcp-server/commit/3d70ee2acbdc7cdca291adc326bacf804fd7700c))
56
-
57
- # [1.1.0](https://github.com/easingthemes/aem-mcp-server/compare/v1.0.12...v1.1.0) (2025-07-19)
58
-
59
-
60
- ### Features
61
-
62
- * [deps] remove swagger ([6cfa01a](https://github.com/easingthemes/aem-mcp-server/commit/6cfa01ac1d8336fb2a5de300cedcc5581726512f))
63
-
64
- ## [1.0.12](https://github.com/easingthemes/aem-mcp-server/compare/v1.0.11...v1.0.12) (2025-07-18)
65
-
66
-
67
- ### Bug Fixes
68
-
69
- * [aem] remove component type check ([6dbf89c](https://github.com/easingthemes/aem-mcp-server/commit/6dbf89c39f78b24e33b3e34992f886c761e6f572))
70
-
71
- ## [1.0.11](https://github.com/easingthemes/aem-mcp-server/compare/v1.0.10...v1.0.11) (2025-07-18)
72
-
73
-
74
- ### Bug Fixes
75
-
76
- * [build] minify ([4760bdc](https://github.com/easingthemes/aem-mcp-server/commit/4760bdcccf6c38b10df4f472c6900279bc09cacb))
77
-
78
- ## [1.0.10](https://github.com/easingthemes/aem-mcp-server/compare/v1.0.9...v1.0.10) (2025-07-18)
79
-
80
-
81
- ### Bug Fixes
82
-
83
- * [docs] add docs dir ([d8e6f04](https://github.com/easingthemes/aem-mcp-server/commit/d8e6f04dc8963d559d258d1491d5ea81e4b9d9e0))
84
-
85
- ## [1.0.9](https://github.com/easingthemes/aem-mcp-server/compare/v1.0.8...v1.0.9) (2025-07-18)
86
-
87
-
88
- ### Bug Fixes
89
-
90
- * [docs] add params info ([b4f128d](https://github.com/easingthemes/aem-mcp-server/commit/b4f128db6aed5d159cd18aa93692e2948c99ffb0))
91
-
92
- ## [1.0.8](https://github.com/easingthemes/aem-mcp-server/compare/v1.0.7...v1.0.8) (2025-07-18)
93
-
94
-
95
- ### Bug Fixes
96
-
97
- * [config] remove dotenv ([2c0ddcd](https://github.com/easingthemes/aem-mcp-server/commit/2c0ddcdb9b5b2c60bb27bfad8dcfeebe39275510))
98
-
99
- ## [1.0.7](https://github.com/easingthemes/aem-mcp-server/compare/v1.0.6...v1.0.7) (2025-07-18)
100
-
101
-
102
- ### Bug Fixes
103
-
104
- * [cli] npm pkg fix ([34dc243](https://github.com/easingthemes/aem-mcp-server/commit/34dc243d1064120b595bc0eb242e3c446bb4c54c))
105
-
106
- ## [1.0.6](https://github.com/easingthemes/aem-mcp-server/compare/v1.0.5...v1.0.6) (2025-07-18)
107
-
108
-
109
- ### Bug Fixes
110
-
111
- * [cli] add node bin ([50d73f4](https://github.com/easingthemes/aem-mcp-server/commit/50d73f4a1ee1ee037366aa8a0d42639c8602a2fe))
112
-
113
- ## [1.0.5](https://github.com/easingthemes/aem-mcp-server/compare/v1.0.4...v1.0.5) (2025-07-18)
114
-
115
-
116
- ### Bug Fixes
117
-
118
- * [cli] remove test script ([e9d2325](https://github.com/easingthemes/aem-mcp-server/commit/e9d2325e46976965df6fa4e04bfda2047a0927d5))
119
- * [cli] use es6 ([ef3327c](https://github.com/easingthemes/aem-mcp-server/commit/ef3327c9c6f78e459e756c0f41c13b6002c19193))
120
-
121
- ## [1.0.4](https://github.com/easingthemes/aem-mcp-server/compare/v1.0.3...v1.0.4) (2025-07-18)
122
-
123
-
124
- ### Bug Fixes
125
-
126
- * [cli] fix cli params ([6405d05](https://github.com/easingthemes/aem-mcp-server/commit/6405d0584586bf2e06c6333757ccee292dceac38))
127
-
128
- ## [1.0.3](https://github.com/easingthemes/aem-mcp-server/compare/v1.0.2...v1.0.3) (2025-07-18)
129
-
130
-
131
- ### Bug Fixes
132
-
133
- * [build] fix build path ([683b87f](https://github.com/easingthemes/aem-mcp-server/commit/683b87fb3cad42867baa851cce766ec956c1c637))
134
-
135
- ## [1.0.2](https://github.com/easingthemes/aem-mcp-server/compare/v1.0.1...v1.0.2) (2025-07-18)
136
-
137
-
138
- ### Bug Fixes
139
-
140
- * [cli] add cli params ([59c6a5e](https://github.com/easingthemes/aem-mcp-server/commit/59c6a5ef72ea2fe5f16278655af433b3a17843fc))
141
-
142
- ## [1.0.1](https://github.com/easingthemes/aem-mcp-server/compare/v1.0.0...v1.0.1) (2025-07-18)
143
-
144
-
145
- ### Bug Fixes
146
-
147
- * [cli] simplify usage ([3e5981c](https://github.com/easingthemes/aem-mcp-server/commit/3e5981c49a8a843eda16482f041a2c291051d68e))
148
-
149
- # 1.0.0 (2025-07-17)
150
-
151
-
152
- ### Bug Fixes
153
-
154
- * [npm] enable npm release ([3165378](https://github.com/easingthemes/aem-mcp-server/commit/3165378659357d060c03e0798ad50eb44328d429))
@@ -1,74 +0,0 @@
1
- # Netcentric Code of Conduct
2
-
3
- ## Our Pledge
4
-
5
- In the interest of fostering an open and welcoming environment, we as
6
- contributors and maintainers pledge to making participation in our project and
7
- our community a harassment-free experience for everyone, regardless of age, body
8
- size, disability, ethnicity, gender identity and expression, level of experience,
9
- nationality, personal appearance, race, religion, or sexual identity and
10
- orientation.
11
-
12
- ## Our Standards
13
-
14
- Examples of behavior that contributes to creating a positive environment
15
- include:
16
-
17
- * Using welcoming and inclusive language
18
- * Being respectful of differing viewpoints and experiences
19
- * Gracefully accepting constructive criticism
20
- * Focusing on what is best for the community
21
- * Showing empathy towards other community members
22
-
23
- Examples of unacceptable behavior by participants include:
24
-
25
- * The use of sexualized language or imagery and unwelcome sexual attention or
26
- advances
27
- * Trolling, insulting/derogatory comments, and personal or political attacks
28
- * Public or private harassment
29
- * Publishing others' private information, such as a physical or electronic
30
- address, without explicit permission
31
- * Other conduct which could reasonably be considered inappropriate in a
32
- professional setting
33
-
34
- ## Our Responsibilities
35
-
36
- Project maintainers are responsible for clarifying the standards of acceptable
37
- behavior and are expected to take appropriate and fair corrective action in
38
- response to any instances of unacceptable behavior.
39
-
40
- Project maintainers have the right and responsibility to remove, edit, or
41
- reject comments, commits, code, wiki edits, issues, and other contributions
42
- that are not aligned to this Code of Conduct, or to ban temporarily or
43
- permanently any contributor for other behaviors that they deem inappropriate,
44
- threatening, offensive, or harmful.
45
-
46
- ## Scope
47
-
48
- This Code of Conduct applies both within project spaces and in public spaces
49
- when an individual is representing the project or its community. Examples of
50
- representing a project or community include using an official project e-mail
51
- address, posting via an official social media account, or acting as an appointed
52
- representative at an online or offline event. Representation of a project may be
53
- further defined and clarified by project maintainers.
54
-
55
- ## Enforcement
56
-
57
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at Grp-opensourceoffice@adobe.com. All
59
- complaints will be reviewed and investigated and will result in a response that
60
- is deemed necessary and appropriate to the circumstances. The project team is
61
- obligated to maintain confidentiality with regard to the reporter of an incident.
62
- Further details of specific enforcement policies may be posted separately.
63
-
64
- Project maintainers who do not follow or enforce the Code of Conduct in good
65
- faith may face temporary or permanent repercussions as determined by other
66
- members of the project's leadership.
67
-
68
- ## Attribution
69
-
70
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
- available at [http://contributor-covenant.org/version/1/4][version]
72
-
73
- [homepage]: https://contributor-covenant.org
74
- [version]: https://contributor-covenant.org/version/1/4/
@@ -1,25 +0,0 @@
1
- # Contributing
2
-
3
- Thanks for choosing to contribute!
4
-
5
- The following are a set of guidelines to follow when contributing to this project.
6
-
7
- ## Code Of Conduct
8
-
9
- This project adheres to the <COMPANY> [code of conduct](CODE_OF_CONDUCT.md). By participating,
10
- you are expected to uphold this code.
11
-
12
- ## Have A Question?
13
-
14
- Start by filing an issue. The existing committers on this project work to reach
15
- consensus around project direction and issue solutions within issue threads
16
- (when appropriate).
17
-
18
- ## Code Reviews
19
-
20
- All submissions should come in the form of pull requests and need to be reviewed
21
- by project committers. Read [GitHub's pull request documentation](https://help.github.com/articles/about-pull-requests/)
22
- for more information on sending pull requests.
23
-
24
- Lastly, please follow the [pull request template](../.github/PULL_REQUEST_TEMPLATE.md) when
25
- submitting a pull request!
package/docs/cursor.png DELETED
Binary file