elastic-apm-mcp-server 1.0.0 → 1.0.1

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 +11 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,7 +13,17 @@ Claude Desktop 또는 Claude Code 설정에 다음을 추가합니다. 별도
13
13
 
14
14
  ### Claude Code
15
15
 
16
- `~/.claude/settings.json` 또는 프로젝트의 `.claude/settings.json`에 추가:
16
+ CLI로 바로 추가:
17
+
18
+ ```bash
19
+ claude mcp add --transport stdio \
20
+ --env KIBANA_URL=http://your-kibana-host:5601 \
21
+ --env KIBANA_USERNAME=your-username \
22
+ --env KIBANA_PASSWORD=your-password \
23
+ elastic-apm -- npx -y elastic-apm-mcp-server
24
+ ```
25
+
26
+ 또는 `~/.claude/settings.json`에 직접 추가:
17
27
 
18
28
  ```json
19
29
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elastic-apm-mcp-server",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MCP server for monitoring Elastic APM via Kibana API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",