@respira/wordpress-mcp-server 1.4.0 → 1.4.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 +57 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,12 +4,22 @@ MCP (Model Context Protocol) server for connecting AI coding assistants to WordP
4
4
 
5
5
  ## Installation
6
6
 
7
- ### From npm (Coming Soon)
7
+ ### From npm (Recommended)
8
+
9
+ The easiest way to install the MCP server is via npm:
8
10
 
9
11
  ```bash
10
12
  npm install -g @respira/wordpress-mcp-server
11
13
  ```
12
14
 
15
+ Or use it directly with npx (no installation needed):
16
+
17
+ ```bash
18
+ npx -y @respira/wordpress-mcp-server
19
+ ```
20
+
21
+ **Note:** When using npx, you don't need to install the package globally. It will automatically download and run the latest version.
22
+
13
23
  ### From GitHub Releases
14
24
 
15
25
  Since the repository is private, download the MCP server from GitHub releases:
@@ -59,8 +69,39 @@ WP_API_KEY=respira_your-api-key-here
59
69
 
60
70
  ### With Cursor
61
71
 
72
+ **Option 1: Using npm (Recommended)**
73
+
62
74
  Add to your Cursor settings (`.cursor/mcp.json`):
63
75
 
76
+ ```json
77
+ {
78
+ "mcpServers": {
79
+ "respira-wordpress": {
80
+ "command": "npx",
81
+ "args": ["-y", "@respira/wordpress-mcp-server"]
82
+ }
83
+ }
84
+ }
85
+ ```
86
+
87
+ **Option 2: Using global installation**
88
+
89
+ If you installed globally with `npm install -g`, use:
90
+
91
+ ```json
92
+ {
93
+ "mcpServers": {
94
+ "respira-wordpress": {
95
+ "command": "respira-wordpress-mcp"
96
+ }
97
+ }
98
+ }
99
+ ```
100
+
101
+ **Option 3: Using local installation**
102
+
103
+ If you downloaded from GitHub releases, add to your Cursor settings (`.cursor/mcp.json`):
104
+
64
105
  ```json
65
106
  {
66
107
  "mcpServers": {
@@ -76,6 +117,21 @@ Add to your Cursor settings (`.cursor/mcp.json`):
76
117
 
77
118
  Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
78
119
 
120
+ **Using npm (Recommended):**
121
+
122
+ ```json
123
+ {
124
+ "mcpServers": {
125
+ "respira-wordpress": {
126
+ "command": "npx",
127
+ "args": ["-y", "@respira/wordpress-mcp-server"]
128
+ }
129
+ }
130
+ }
131
+ ```
132
+
133
+ **Using local installation:**
134
+
79
135
  ```json
80
136
  {
81
137
  "mcpServers": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@respira/wordpress-mcp-server",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "MCP server for connecting AI coding assistants to WordPress sites",
5
5
  "main": "dist/index.js",
6
6
  "bin": {