@mwturnbull/papi-mcp 0.1.0 → 0.1.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 +37 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,32 +14,33 @@ MCP server for Akamai Property Manager (PAPI) configurations. Gives AI assistant
14
14
 
15
15
  ## Quick Start
16
16
 
17
- ### Installation
17
+ ### Install from npm
18
18
 
19
19
  ```bash
20
- npm install
21
- npm run build
20
+ npm install -g @mwturnbull/papi-mcp
21
+ ```
22
+
23
+ Or run directly with npx:
24
+
25
+ ```bash
26
+ npx @mwturnbull/papi-mcp
22
27
  ```
23
28
 
24
29
  ### Claude Code
25
30
 
26
- Add to your MCP settings (`.cursor/claude_config.json` or Claude settings):
31
+ Add to your Claude Code MCP settings:
27
32
 
28
33
  ```json
29
34
  {
30
35
  "mcpServers": {
31
36
  "papi-mcp": {
32
- "command": "node",
33
- "args": ["path/to/papi-mcp/dist/server.js"]
37
+ "command": "npx",
38
+ "args": ["@mwturnbull/papi-mcp"]
34
39
  }
35
40
  }
36
41
  }
37
42
  ```
38
43
 
39
- ### VS Code Copilot Chat
40
-
41
- Add the same MCP configuration to your VS Code settings.
42
-
43
44
  ### Claude Desktop
44
45
 
45
46
  Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
@@ -48,13 +49,37 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
48
49
  {
49
50
  "mcpServers": {
50
51
  "papi-mcp": {
51
- "command": "node",
52
- "args": ["path/to/papi-mcp/dist/server.js"]
52
+ "command": "npx",
53
+ "args": ["@mwturnbull/papi-mcp"]
53
54
  }
54
55
  }
55
56
  }
56
57
  ```
57
58
 
59
+ ### VS Code Copilot Chat
60
+
61
+ Add to your VS Code MCP settings:
62
+
63
+ ```json
64
+ {
65
+ "mcpServers": {
66
+ "papi-mcp": {
67
+ "command": "npx",
68
+ "args": ["@mwturnbull/papi-mcp"]
69
+ }
70
+ }
71
+ }
72
+ ```
73
+
74
+ ### From source
75
+
76
+ ```bash
77
+ git clone https://github.com/m-w-turnbull/papi-mcp.git
78
+ cd papi-mcp
79
+ npm install
80
+ npm run build
81
+ ```
82
+
58
83
  ## Tools
59
84
 
60
85
  ### Read & Analyse (5 tools)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mwturnbull/papi-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for Akamai Property Manager (PAPI) configurations",
5
5
  "type": "module",
6
6
  "main": "dist/server.js",