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 CHANGED
@@ -1,24 +1,29 @@
1
1
  # AEM MCP Server (aem-mcp-server)
2
2
 
3
+ [![Version](https://img.shields.io/npm/v/@easingthemes/aem-mcp-server.svg)](https://npmjs.org/package/@easingthemes/aem-mcp-server)
4
+ [![Release Status](https://github.com/easingthemes/aem-mcp-server/actions/workflows/release.yml/badge.svg)](https://github.com/easingthemes/aem-mcp-server/actions/workflows/release.yml)
5
+ [![CodeQL Analysis](https://github.com/easingthemes/aem-mcp-server/workflows/CodeQL/badge.svg?branch=main)](https://github.com/easingthemes/aem-mcp-server/actions)
6
+ [![semver: semantic-release](https://img.shields.io/badge/semver-semantic--release-blue.svg)](https://github.com/semantic-release/semantic-release)
3
7
  [![MIT License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
4
- [![Node.js CI](https://img.shields.io/badge/node-%3E=18-blue.svg)](https://nodejs.org/)
5
- [![AEM Compatible](https://img.shields.io/badge/aem-6.5%2B-blue.svg)](https://www.adobe.com/marketing-cloud/experience-manager.html)
6
8
 
7
- AEM MCP Server is a full-featured, extensible Model Context Protocol (MCP) server for Adobe Experience Manager (AEM).
8
- It provides a robust REST/JSON-RPC API for content, component, and asset management, with advanced integrations for AI, chatbots, and automation.
9
- This project is designed for AEM developers, content teams, and automation engineers who want to manage AEM programmatically or via natural language.
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** for AEM content, component, and asset operations
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, Cline, etc.)
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 **Cline**.
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. Example for Cursor/Cline:
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** and connect. The IDE will now be able to:
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
- @scanPageComponents() /content/path/to/page
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aem-mcp-server",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "AEM Model Context Protocol (MCP) server",
5
5
  "private": false,
6
6
  "publishConfig": {