strapi-mcp-connect 1.0.6 β 1.0.7
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 +228 -85
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,51 +1,94 @@
|
|
|
1
|
-
# strapi-connect
|
|
1
|
+
# strapi-mcp-connect
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/strapi-mcp-connect)
|
|
4
|
+
[](https://www.npmjs.com/package/strapi-mcp-connect)
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
6
|
[](https://nodejs.org)
|
|
7
7
|
[](https://strapi.io)
|
|
8
8
|
[](https://modelcontextprotocol.io)
|
|
9
9
|
|
|
10
|
-
An enterprise-ready **Model Context Protocol (MCP)
|
|
10
|
+
An enterprise-ready **Model Context Protocol (MCP) server** that connects AI assistants such as **Claude Desktop, Cursor, VS Code, Windsurf, Claude Code, and Antigravity** directly to your **Strapi Headless CMS**.
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
Use natural-language requests to work with Strapi content through MCP tools for CRUD operations, Single Types, Collection Types, filtering, pagination, relations, media population, and draft/published content workflows.
|
|
13
13
|
|
|
14
14
|
---
|
|
15
15
|
|
|
16
16
|
## ποΈ Architecture & How It Works
|
|
17
17
|
|
|
18
|
-
```
|
|
18
|
+
```text
|
|
19
19
|
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
20
20
|
β AI Client / Assistant β
|
|
21
|
-
β
|
|
21
|
+
β Claude Desktop β’ Cursor β’ VS Code β’ Windsurf β’ etc. β
|
|
22
22
|
ββββββββββββββββββββββββββββββββ¬βββββββββββββββββββββββββββββββ
|
|
23
23
|
β Standard I/O (stdio)
|
|
24
24
|
β JSON-RPC MCP Protocol
|
|
25
25
|
βΌ
|
|
26
26
|
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
27
|
-
β
|
|
28
|
-
β
|
|
27
|
+
β strapi-mcp-connect β
|
|
28
|
+
β Type-Safe Zod Schema & Validation Engine β
|
|
29
29
|
ββββββββββββββββββββββββββββββββ¬βββββββββββββββββββββββββββββββ
|
|
30
30
|
β Authenticated REST API
|
|
31
|
-
β
|
|
31
|
+
β Bearer Token / API Token
|
|
32
32
|
βΌ
|
|
33
33
|
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
34
34
|
β Strapi CMS (v4 / v5) β
|
|
35
|
-
β
|
|
35
|
+
β http://localhost:1337 β
|
|
36
36
|
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
+
### Request Flow
|
|
40
|
+
|
|
41
|
+
```text
|
|
42
|
+
Natural-language request
|
|
43
|
+
β
|
|
44
|
+
AI Client / Assistant
|
|
45
|
+
β
|
|
46
|
+
MCP Tool Selection
|
|
47
|
+
β
|
|
48
|
+
Schema Validation
|
|
49
|
+
β
|
|
50
|
+
Strapi REST API
|
|
51
|
+
β
|
|
52
|
+
Create / Read / Update / Delete / Publish
|
|
53
|
+
β
|
|
54
|
+
Result returned to the AI client
|
|
55
|
+
```
|
|
56
|
+
|
|
39
57
|
---
|
|
40
58
|
|
|
41
59
|
## β¨ Key Highlights
|
|
42
60
|
|
|
43
|
-
- β‘ **Zero
|
|
44
|
-
- π¦ **Full Collection CRUD**: Complete create, read, update, and delete support across
|
|
45
|
-
- π **Native Single Types**: First-class support for
|
|
46
|
-
- π **Strapi
|
|
47
|
-
- π **Deep Population & Filters**:
|
|
48
|
-
- π‘οΈ **Type-Safe Validation**: Built
|
|
61
|
+
- β‘ **Zero-Clone Setup with `npx`**: Run the MCP server directly without manually downloading or cloning the repository.
|
|
62
|
+
- π¦ **Full Collection CRUD**: Complete create, read, update, and delete support across Collection Types.
|
|
63
|
+
- π **Native Single Types**: First-class support for Single Types such as `homepage`, `navigation`, `footer`, and `global`.
|
|
64
|
+
- π **Strapi v4 & v5 Ready**: Supports Strapi v4 numeric IDs and Strapi v5 `documentId`-based content workflows.
|
|
65
|
+
- π **Deep Population & Filters**: Supports filtering, sorting, pagination, relations, and media population such as `populate=*`.
|
|
66
|
+
- π‘οΈ **Type-Safe Validation**: Built with the Model Context Protocol TypeScript SDK and Zod schemas.
|
|
67
|
+
- π **Token-Based Authentication**: Uses a Strapi API Token for authenticated REST API access.
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## π¦ Installation
|
|
72
|
+
|
|
73
|
+
### Install from npm
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
npm install strapi-mcp-connect
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### Run directly with `npx`
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
npx -y strapi-mcp-connect
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### CLI command
|
|
86
|
+
|
|
87
|
+
The executable exposed by the package is:
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
strapi-connect-mcp
|
|
91
|
+
```
|
|
49
92
|
|
|
50
93
|
---
|
|
51
94
|
|
|
@@ -53,18 +96,37 @@ Empower your LLM to perform CRUD operations, inspect and update Single & Collect
|
|
|
53
96
|
|
|
54
97
|
| Variable | Required | Default | Description |
|
|
55
98
|
|---|---|---|---|
|
|
56
|
-
| `STRAPI_URL` | **Yes** | `http://localhost:1337` |
|
|
57
|
-
| `STRAPI_API_TOKEN` | **Yes** |
|
|
99
|
+
| `STRAPI_URL` | **Yes** | `http://localhost:1337` | Base URL of your Strapi CMS. |
|
|
100
|
+
| `STRAPI_API_TOKEN` | **Yes** | β | Strapi API Token used to authenticate REST API requests. |
|
|
101
|
+
|
|
102
|
+
Example:
|
|
103
|
+
|
|
104
|
+
```env
|
|
105
|
+
STRAPI_URL=http://localhost:1337
|
|
106
|
+
STRAPI_API_TOKEN=YOUR_STRAPI_API_TOKEN
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
> **Security:** Never commit real Strapi API tokens to GitHub or hard-code them in source code. Use environment variables or your AI client's secure environment configuration.
|
|
58
110
|
|
|
59
111
|
---
|
|
60
112
|
|
|
61
|
-
|
|
113
|
+
# π Quick Setup Guide
|
|
114
|
+
|
|
115
|
+
## 1. Claude Desktop
|
|
116
|
+
|
|
117
|
+
Add this configuration to your Claude Desktop configuration file.
|
|
62
118
|
|
|
63
|
-
|
|
119
|
+
**Windows**
|
|
64
120
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
121
|
+
```text
|
|
122
|
+
%APPDATA%\Claude\claude_desktop_config.json
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
**macOS**
|
|
126
|
+
|
|
127
|
+
```text
|
|
128
|
+
~/Library/Application Support/Claude/claude_desktop_config.json
|
|
129
|
+
```
|
|
68
130
|
|
|
69
131
|
```json
|
|
70
132
|
{
|
|
@@ -73,7 +135,7 @@ Add this configuration to your Claude Desktop config:
|
|
|
73
135
|
"command": "npx",
|
|
74
136
|
"args": [
|
|
75
137
|
"-y",
|
|
76
|
-
"strapi-connect
|
|
138
|
+
"strapi-mcp-connect"
|
|
77
139
|
],
|
|
78
140
|
"env": {
|
|
79
141
|
"STRAPI_URL": "http://localhost:1337",
|
|
@@ -84,11 +146,13 @@ Add this configuration to your Claude Desktop config:
|
|
|
84
146
|
}
|
|
85
147
|
```
|
|
86
148
|
|
|
149
|
+
Restart Claude Desktop after changing the configuration.
|
|
150
|
+
|
|
87
151
|
---
|
|
88
152
|
|
|
89
|
-
|
|
153
|
+
## 2. Cursor IDE
|
|
90
154
|
|
|
91
|
-
|
|
155
|
+
Open **Cursor Settings β Features β MCP**, or configure MCP in your project using `.cursor/mcp.json`.
|
|
92
156
|
|
|
93
157
|
```json
|
|
94
158
|
{
|
|
@@ -97,7 +161,7 @@ Add this configuration to your Claude Desktop config:
|
|
|
97
161
|
"command": "npx",
|
|
98
162
|
"args": [
|
|
99
163
|
"-y",
|
|
100
|
-
"strapi-connect
|
|
164
|
+
"strapi-mcp-connect"
|
|
101
165
|
],
|
|
102
166
|
"env": {
|
|
103
167
|
"STRAPI_URL": "http://localhost:1337",
|
|
@@ -110,9 +174,13 @@ Add this configuration to your Claude Desktop config:
|
|
|
110
174
|
|
|
111
175
|
---
|
|
112
176
|
|
|
113
|
-
|
|
177
|
+
## 3. Windsurf IDE
|
|
178
|
+
|
|
179
|
+
Add the server to:
|
|
114
180
|
|
|
115
|
-
|
|
181
|
+
```text
|
|
182
|
+
~/.codeium/windsurf/mcp_config.json
|
|
183
|
+
```
|
|
116
184
|
|
|
117
185
|
```json
|
|
118
186
|
{
|
|
@@ -121,7 +189,7 @@ Add to `~/.codeium/windsurf/mcp_config.json`:
|
|
|
121
189
|
"command": "npx",
|
|
122
190
|
"args": [
|
|
123
191
|
"-y",
|
|
124
|
-
"strapi-connect
|
|
192
|
+
"strapi-mcp-connect"
|
|
125
193
|
],
|
|
126
194
|
"env": {
|
|
127
195
|
"STRAPI_URL": "http://localhost:1337",
|
|
@@ -134,9 +202,9 @@ Add to `~/.codeium/windsurf/mcp_config.json`:
|
|
|
134
202
|
|
|
135
203
|
---
|
|
136
204
|
|
|
137
|
-
|
|
205
|
+
## 4. VS Code
|
|
138
206
|
|
|
139
|
-
|
|
207
|
+
For MCP-compatible VS Code clients or extensions, configure the server in `.vscode/mcp.json` when supported:
|
|
140
208
|
|
|
141
209
|
```json
|
|
142
210
|
{
|
|
@@ -146,7 +214,7 @@ Add to your workspace `.vscode/mcp.json` or settings:
|
|
|
146
214
|
"command": "npx",
|
|
147
215
|
"args": [
|
|
148
216
|
"-y",
|
|
149
|
-
"strapi-connect
|
|
217
|
+
"strapi-mcp-connect"
|
|
150
218
|
],
|
|
151
219
|
"env": {
|
|
152
220
|
"STRAPI_URL": "http://localhost:1337",
|
|
@@ -159,9 +227,13 @@ Add to your workspace `.vscode/mcp.json` or settings:
|
|
|
159
227
|
|
|
160
228
|
---
|
|
161
229
|
|
|
162
|
-
|
|
230
|
+
## 5. Antigravity IDE
|
|
163
231
|
|
|
164
|
-
Add to your global or workspace configuration
|
|
232
|
+
Add to your global or workspace MCP configuration:
|
|
233
|
+
|
|
234
|
+
```text
|
|
235
|
+
~/.gemini/config/mcp_config.json
|
|
236
|
+
```
|
|
165
237
|
|
|
166
238
|
```json
|
|
167
239
|
{
|
|
@@ -170,7 +242,7 @@ Add to your global or workspace configuration (`~/.gemini/config/mcp_config.json
|
|
|
170
242
|
"command": "npx",
|
|
171
243
|
"args": [
|
|
172
244
|
"-y",
|
|
173
|
-
"strapi-connect
|
|
245
|
+
"strapi-mcp-connect"
|
|
174
246
|
],
|
|
175
247
|
"env": {
|
|
176
248
|
"STRAPI_URL": "http://localhost:1337",
|
|
@@ -183,35 +255,38 @@ Add to your global or workspace configuration (`~/.gemini/config/mcp_config.json
|
|
|
183
255
|
|
|
184
256
|
---
|
|
185
257
|
|
|
186
|
-
|
|
258
|
+
## 6. Claude Code CLI
|
|
259
|
+
|
|
260
|
+
Add the MCP server with:
|
|
187
261
|
|
|
188
262
|
```bash
|
|
189
|
-
claude mcp add strapi -- npx -y strapi-connect
|
|
263
|
+
claude mcp add strapi -- npx -y strapi-mcp-connect
|
|
190
264
|
```
|
|
191
265
|
|
|
192
|
-
|
|
193
266
|
---
|
|
194
267
|
|
|
195
|
-
|
|
268
|
+
# π οΈ Available MCP Tools & Parameters
|
|
196
269
|
|
|
197
270
|
| Tool | Purpose | Parameters |
|
|
198
271
|
|---|---|---|
|
|
199
|
-
| **`test_connection`** | Verifies Strapi
|
|
200
|
-
| **`get_entries`** |
|
|
201
|
-
| **`get_entry`** |
|
|
202
|
-
| **`get_single_type`** |
|
|
203
|
-
| **`update_single_type`** |
|
|
204
|
-
| **`create_entry`** |
|
|
205
|
-
| **`update_entry`** |
|
|
206
|
-
| **`delete_entry`** |
|
|
207
|
-
| **`raw_query`** |
|
|
272
|
+
| **`test_connection`** | Verifies Strapi availability and token authentication. | None |
|
|
273
|
+
| **`get_entries`** | Fetches Collection Type entries with pagination, sorting, filters, population, and status. | `pluralApiId`, `page`, `pageSize`, `filters`, `populate`, `sort`, `status` |
|
|
274
|
+
| **`get_entry`** | Fetches a Collection Type entry by `id` or `documentId`. | `pluralApiId`, `id`, `populate`, `status` |
|
|
275
|
+
| **`get_single_type`** | Fetches Single Type content such as `homepage` or `footer`. | `singularApiId`, `populate`, `status` |
|
|
276
|
+
| **`update_single_type`** | Updates Single Type content. | `singularApiId`, `data` |
|
|
277
|
+
| **`create_entry`** | Creates a new Collection Type entry. | `pluralApiId`, `data`, `status` |
|
|
278
|
+
| **`update_entry`** | Updates an existing Collection Type entry. | `pluralApiId`, `id`, `data` |
|
|
279
|
+
| **`delete_entry`** | Deletes a Collection Type entry. | `pluralApiId`, `id` |
|
|
280
|
+
| **`raw_query`** | Sends a direct request to a custom Strapi endpoint. | `endpoint`, `method`, `body` |
|
|
208
281
|
|
|
209
282
|
---
|
|
210
283
|
|
|
211
|
-
|
|
284
|
+
# π‘ Practical Examples
|
|
285
|
+
|
|
286
|
+
## 1. Fetch entries with relations
|
|
212
287
|
|
|
213
|
-
### 1. Fetching Entries with Relations
|
|
214
288
|
**Tool:** `get_entries`
|
|
289
|
+
|
|
215
290
|
```json
|
|
216
291
|
{
|
|
217
292
|
"pluralApiId": "articles",
|
|
@@ -221,8 +296,10 @@ claude mcp add strapi -- npx -y strapi-connect-mcp
|
|
|
221
296
|
}
|
|
222
297
|
```
|
|
223
298
|
|
|
224
|
-
|
|
299
|
+
## 2. Create a published entry
|
|
300
|
+
|
|
225
301
|
**Tool:** `create_entry`
|
|
302
|
+
|
|
226
303
|
```json
|
|
227
304
|
{
|
|
228
305
|
"pluralApiId": "pages",
|
|
@@ -235,8 +312,10 @@ claude mcp add strapi -- npx -y strapi-connect-mcp
|
|
|
235
312
|
}
|
|
236
313
|
```
|
|
237
314
|
|
|
238
|
-
|
|
315
|
+
## 3. Fetch a Single Type
|
|
316
|
+
|
|
239
317
|
**Tool:** `get_single_type`
|
|
318
|
+
|
|
240
319
|
```json
|
|
241
320
|
{
|
|
242
321
|
"singularApiId": "homepage",
|
|
@@ -246,61 +325,125 @@ claude mcp add strapi -- npx -y strapi-connect-mcp
|
|
|
246
325
|
|
|
247
326
|
---
|
|
248
327
|
|
|
249
|
-
|
|
328
|
+
# π Generating Your Strapi API Token
|
|
329
|
+
|
|
330
|
+
1. Open your Strapi Admin Panel:
|
|
331
|
+
```text
|
|
332
|
+
http://localhost:1337/admin
|
|
333
|
+
```
|
|
334
|
+
2. Go to **Settings β API Tokens**.
|
|
335
|
+
3. Click **Create new API Token**.
|
|
336
|
+
4. Use a name such as:
|
|
337
|
+
```text
|
|
338
|
+
MCP Connector
|
|
339
|
+
```
|
|
340
|
+
5. Choose the permissions required for your content operations.
|
|
341
|
+
6. Save the token and copy it securely.
|
|
342
|
+
|
|
343
|
+
Then configure:
|
|
344
|
+
|
|
345
|
+
```env
|
|
346
|
+
STRAPI_API_TOKEN=YOUR_STRAPI_API_TOKEN
|
|
347
|
+
```
|
|
348
|
+
|
|
349
|
+
> For production environments, use the minimum permissions required for the workflow instead of granting unnecessary access.
|
|
350
|
+
|
|
351
|
+
---
|
|
352
|
+
|
|
353
|
+
# π¬ Natural Language Prompt Examples
|
|
354
|
+
|
|
355
|
+
After configuration, you can ask your AI assistant:
|
|
356
|
+
|
|
357
|
+
```text
|
|
358
|
+
List all entries from my articles collection in Strapi.
|
|
359
|
+
```
|
|
360
|
+
|
|
361
|
+
```text
|
|
362
|
+
Fetch the homepage single type content and summarize it.
|
|
363
|
+
```
|
|
364
|
+
|
|
365
|
+
```text
|
|
366
|
+
Create a new product in Strapi with title "Wireless Headphones" and price 149.
|
|
367
|
+
```
|
|
368
|
+
|
|
369
|
+
```text
|
|
370
|
+
Update the about-page entry and change the contact email.
|
|
371
|
+
```
|
|
372
|
+
|
|
373
|
+
```text
|
|
374
|
+
Find all draft pages in Strapi.
|
|
375
|
+
```
|
|
250
376
|
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
- **Name:** `MCP Connector`
|
|
255
|
-
- **Token duration:** `Unlimited`
|
|
256
|
-
- **Token type:** `Full access` *(or configure granular permissions)*
|
|
257
|
-
4. Click **Save** and copy the generated token into your MCP configuration.
|
|
377
|
+
```text
|
|
378
|
+
Create a 2BHK property in Ahmedabad with a price of 45 lakh.
|
|
379
|
+
```
|
|
258
380
|
|
|
259
381
|
---
|
|
260
382
|
|
|
261
|
-
|
|
383
|
+
# π Security & Permissions
|
|
262
384
|
|
|
263
|
-
|
|
385
|
+
This MCP server communicates with Strapi through authenticated REST API requests.
|
|
264
386
|
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
-
|
|
268
|
-
-
|
|
269
|
-
-
|
|
387
|
+
Recommended practices:
|
|
388
|
+
|
|
389
|
+
- Never hard-code Strapi API tokens in source code.
|
|
390
|
+
- Never commit `.env` files containing real credentials.
|
|
391
|
+
- Grant only the Strapi permissions required by your workflow.
|
|
392
|
+
- Keep production credentials separate from local development credentials.
|
|
393
|
+
- Review `raw_query` usage carefully because it can access custom endpoints supported by the configured token.
|
|
270
394
|
|
|
271
395
|
---
|
|
272
396
|
|
|
273
|
-
|
|
397
|
+
# β Troubleshooting & FAQs
|
|
274
398
|
|
|
275
399
|
| Issue | Root Cause | Solution |
|
|
276
400
|
|---|---|---|
|
|
277
|
-
| **401 Unauthorized** | Invalid, expired, or missing Strapi API Token. | Generate a
|
|
278
|
-
| **
|
|
279
|
-
| **
|
|
280
|
-
| **
|
|
401
|
+
| **401 Unauthorized** | Invalid, expired, or missing Strapi API Token. | Generate a valid API token and update `STRAPI_API_TOKEN`. |
|
|
402
|
+
| **403 Forbidden** | The token does not have sufficient permissions. | Update the token permissions for the required content type/action. |
|
|
403
|
+
| **404 Not Found** | Incorrect Collection Type name, Single Type name, or endpoint. | Verify the exact API ID in Strapi. |
|
|
404
|
+
| **Connection Refused** | Strapi is not running or `STRAPI_URL` is incorrect. | Start Strapi and verify the configured URL. |
|
|
405
|
+
| **Tools Not Showing** | MCP configuration is incorrect or the AI client has not reloaded the server. | Check the JSON configuration and restart the AI client. |
|
|
406
|
+
| **Invalid Data** | Request fields do not match the Strapi content-type schema. | Check the content-type schema and provide the correct fields. |
|
|
407
|
+
|
|
408
|
+
---
|
|
409
|
+
|
|
410
|
+
# πΊοΈ Roadmap
|
|
411
|
+
|
|
412
|
+
- [ ] Automated Schema & Content-Type Discovery
|
|
413
|
+
- [ ] GraphQL query execution support
|
|
414
|
+
- [ ] Advanced Strapi Media Library management
|
|
415
|
+
- [ ] Batch entry creation & bulk updates
|
|
416
|
+
- [ ] More granular permission-aware tool discovery
|
|
281
417
|
|
|
282
418
|
---
|
|
283
419
|
|
|
284
|
-
|
|
420
|
+
# β οΈ Known Limitations
|
|
285
421
|
|
|
286
|
-
-
|
|
287
|
-
-
|
|
288
|
-
-
|
|
289
|
-
-
|
|
422
|
+
- **REST API Dependency:** This MCP server communicates with Strapi through the REST API.
|
|
423
|
+
- **Permissions:** Available operations depend on the permissions assigned to the configured Strapi API Token.
|
|
424
|
+
- **Custom Plugins:** Custom plugins with non-standard route structures can be accessed using `raw_query` when the token has sufficient permissions.
|
|
425
|
+
- **Schema Discovery:** Automated schema and Content-Type discovery is planned for a future release.
|
|
290
426
|
|
|
291
427
|
---
|
|
292
428
|
|
|
293
|
-
|
|
429
|
+
# π€ Contributing
|
|
430
|
+
|
|
431
|
+
Contributions, issues, and feature requests are welcome.
|
|
294
432
|
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
433
|
+
1. Fork the repository.
|
|
434
|
+
2. Create a feature branch.
|
|
435
|
+
3. Make your changes.
|
|
436
|
+
4. Run the build.
|
|
437
|
+
5. Verify the MCP server locally.
|
|
438
|
+
6. Open a pull request.
|
|
298
439
|
|
|
299
440
|
---
|
|
300
441
|
|
|
301
|
-
|
|
442
|
+
# π License
|
|
302
443
|
|
|
303
444
|
Distributed under the **MIT License**.
|
|
304
445
|
|
|
305
|
-
Authored with β€οΈ by **
|
|
446
|
+
Authored with β€οΈ by **Kevin Patel**
|
|
306
447
|
|
|
448
|
+
- GitHub: https://github.com/kevinpateldevelopment
|
|
449
|
+
- npm: https://www.npmjs.com/package/strapi-mcp-connect
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name":"strapi-mcp-connect",
|
|
3
|
-
"version": "1.0.
|
|
2
|
+
"name": "strapi-mcp-connect",
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "Model Context Protocol (MCP) server for Strapi CMS. Connects Claude Desktop, Cursor, VS Code, and AI IDEs to Strapi REST API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "build/index.js",
|