aem-mcp-server 1.0.8 → 1.0.9

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.
Files changed (2) hide show
  1. package/README.md +20 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -47,6 +47,19 @@ npm install aem-mcp-server -g
47
47
  aem-mcp
48
48
  ```
49
49
 
50
+ ### Configuration
51
+ ```
52
+ Options:
53
+ --version Show version number [boolean]
54
+ -H, --host Author instance URL [string] [default: "http://localhost:4502"]
55
+ -P, --publisher Publisher instance URL [string] [default: "http://localhost:4503"]
56
+ -u, --user Username for authentication [string] [default: "admin"]
57
+ -p, --pass Password for authentication [string] [default: "admin"]
58
+ -m, --mcpPort Port for MCP server [number] [default: 3000]
59
+ -e, --explorer Enable Swagger API explorer [boolean] [default: false]
60
+ -h, --help Show help [boolean]
61
+
62
+ ```
50
63
  ---
51
64
 
52
65
  ## AI IDE Integration (Cursor, Cline, etc.)
@@ -88,6 +101,13 @@ Sample for AI-based code editors or custom clients:
88
101
  @scanPageComponents() /content/path/to/page
89
102
  ```
90
103
 
104
+ ## API Documentation
105
+
106
+ For detailed API documentation, please refer to the [API Docs](docs/API.md).
107
+ - Enable the API explorer with the `-e` flag to access Swagger UI:
108
+ ```aem-mcp -e```
109
+ - Open http://localhost:3000/api-docs to explore the API endpoints.
110
+
91
111
  ## Contribution
92
112
  Contributions are welcome! Please open issues or pull requests for bug fixes, features, or documentation improvements.
93
113
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aem-mcp-server",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "AEM Model Context Protocol (MCP) server",
5
5
  "private": false,
6
6
  "publishConfig": {