aem-mcp-server 1.1.0 → 1.1.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 +18 -24
- package/docs/CHANGELOG.md +14 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,24 +1,29 @@
|
|
|
1
1
|
# AEM MCP Server (aem-mcp-server)
|
|
2
2
|
|
|
3
|
+
[](https://npmjs.org/package/@easingthemes/aem-mcp-server)
|
|
4
|
+
[](https://github.com/easingthemes/aem-mcp-server/actions/workflows/release.yml)
|
|
5
|
+
[](https://github.com/easingthemes/aem-mcp-server/actions)
|
|
6
|
+
[](https://github.com/semantic-release/semantic-release)
|
|
3
7
|
[](LICENSE)
|
|
4
|
-
[](https://nodejs.org/)
|
|
5
|
-
[](https://www.adobe.com/marketing-cloud/experience-manager.html)
|
|
6
8
|
|
|
7
|
-
AEM MCP Server is a full-featured
|
|
8
|
-
It provides a
|
|
9
|
-
This project is designed for
|
|
9
|
+
AEM MCP Server is a full-featured Model Context Protocol (MCP) server for Adobe Experience Manager (AEM).
|
|
10
|
+
It provides a simple integration with any AI Agent.
|
|
11
|
+
This project is designed for non-technical persons who want to manage AEM via natural language.
|
|
10
12
|
|
|
11
13
|
---
|
|
12
14
|
|
|
13
15
|
## Overview
|
|
16
|
+
|
|
17
|
+
- **Chat with your AEM instance** for content, component, and asset operations.
|
|
18
|
+
- **AI IDEs integration** (Cursor, Copilot, Webstorm, VS Code, etc.)
|
|
19
|
+
- **Production-ready, modular, and configurable**
|
|
14
20
|
- **Modern, TypeScript-based AEM MCP server**
|
|
15
|
-
- **REST/JSON-RPC API**
|
|
16
|
-
- **AI/LLM integration** (OpenAI, Anthropic, Ollama, custom HTTP APIs)
|
|
17
|
-
- **Production-ready, modular, and extensible**
|
|
21
|
+
- **REST/JSON-RPC API** with latest MCP features.
|
|
18
22
|
|
|
19
23
|
---
|
|
20
24
|
|
|
21
25
|
## Features
|
|
26
|
+
|
|
22
27
|
- **AEM Page & Asset Management**: Create, update, delete, activate, deactivate, and replicate pages and assets
|
|
23
28
|
- **Component Operations**: Validate, update, scan, and manage AEM components (including Experience Fragments)
|
|
24
29
|
- **Advanced Search**: QueryBuilder, fulltext, fuzzy, and enhanced page search
|
|
@@ -62,22 +67,21 @@ Options:
|
|
|
62
67
|
```
|
|
63
68
|
---
|
|
64
69
|
|
|
65
|
-
## AI IDE Integration (Cursor,
|
|
70
|
+
## AI IDE Integration (Cursor, Copilot, etc.)
|
|
66
71
|
|
|
67
|
-
AEM MCP Server is compatible with modern AI IDEs and code editors that support MCP protocol, such as **Cursor** and **
|
|
72
|
+
AEM MCP Server is compatible with modern AI IDEs and code editors that support MCP protocol, such as **Cursor** and **Copilot** (eg in WebStorm or VS Code).
|
|
68
73
|
|
|
69
74
|
### How to Connect:
|
|
70
75
|
1. **Install and run the AEM MCP Server** as described above.
|
|
71
|
-
2. **Configure your IDE** to connect to the MCP server
|
|
76
|
+
2. **Configure your IDE** to connect to the MCP server:
|
|
72
77
|
- Open your IDE's MCP server settings.
|
|
73
78
|
- Add a new server with:
|
|
74
79
|
- **Type:** Custom MCP
|
|
75
80
|
- **url:** `http://127.0.0.1:3000/mcp`
|
|
76
81
|
|
|
77
|
-
3. **Restart your IDE**
|
|
82
|
+
3. **Restart your IDE** if needed. The IDE will now be able to:
|
|
78
83
|
- List, search, and manage AEM content
|
|
79
84
|
- Run MCP methods (CRUD, search, rollout, etc.)
|
|
80
|
-
- Use AI/LLM features if enabled
|
|
81
85
|
|
|
82
86
|
Sample for AI-based code editors or custom clients:
|
|
83
87
|
|
|
@@ -95,20 +99,10 @@ Sample for AI-based code editors or custom clients:
|
|
|
95
99
|
|
|
96
100
|
## Usage
|
|
97
101
|
|
|
98
|
-
@[TOOL_NAME]() params
|
|
99
|
-
|
|
100
102
|
```
|
|
101
|
-
|
|
103
|
+
List all components on MyPage
|
|
102
104
|
```
|
|
103
105
|
|
|
104
106
|
## API Documentation
|
|
105
107
|
|
|
106
108
|
For detailed API documentation, please refer to the [API Docs](docs/API.md).
|
|
107
|
-
|
|
108
|
-
## Contribution
|
|
109
|
-
Contributions are welcome! Please open issues or pull requests for bug fixes, features, or documentation improvements.
|
|
110
|
-
|
|
111
|
-
---
|
|
112
|
-
|
|
113
|
-
## License
|
|
114
|
-
[MIT](LICENSE)
|
package/docs/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.1.2](https://github.com/easingthemes/aem-mcp-server/compare/v1.1.1...v1.1.2) (2025-07-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* [docs] simplify Readme ([c9af9e6](https://github.com/easingthemes/aem-mcp-server/commit/c9af9e67043ced9e54a6bbf83cd1527026ae0c69))
|
|
7
|
+
|
|
8
|
+
## [1.1.1](https://github.com/easingthemes/aem-mcp-server/compare/v1.1.0...v1.1.1) (2025-07-19)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* [docs] simplify Readme ([3d70ee2](https://github.com/easingthemes/aem-mcp-server/commit/3d70ee2acbdc7cdca291adc326bacf804fd7700c))
|
|
14
|
+
|
|
1
15
|
# [1.1.0](https://github.com/easingthemes/aem-mcp-server/compare/v1.0.12...v1.1.0) (2025-07-19)
|
|
2
16
|
|
|
3
17
|
|