@mybe/contensa-mcp 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 +40 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,11 +14,19 @@ MCP (Model Context Protocol) server for Contensa CMS. This enables AI assistants
14
14
 
15
15
  ## Installation
16
16
 
17
+ Install globally to use with MCP clients like Cursor or Claude Desktop:
18
+
19
+ ```bash
20
+ npm install -g @mybe/contensa-mcp
21
+ ```
22
+
23
+ Or use directly with npx (no installation needed):
24
+
17
25
  ```bash
18
- npm install @mybe/contensa-mcp
26
+ npx @mybe/contensa-mcp
19
27
  ```
20
28
 
21
- Or if using the monorepo:
29
+ **For development** (if using the monorepo):
22
30
 
23
31
  ```bash
24
32
  cd packages/mcp-server
@@ -32,6 +40,21 @@ npm run build
32
40
 
33
41
  Add to your Cursor MCP settings (`~/.cursor/mcp.json` or workspace `.cursor/mcp.json`):
34
42
 
43
+ ```json
44
+ {
45
+ "mcpServers": {
46
+ "contensa": {
47
+ "command": "contensa-mcp",
48
+ "env": {
49
+ "CONTENSA_API_KEY": "your-api-key-here",
50
+ "CONTENSA_PROJECT_ID": "your-default-project-id"
51
+ }
52
+ }
53
+ }
54
+ }
55
+ ```
56
+
57
+ **Alternative** (if not installed globally, use npx):
35
58
  ```json
36
59
  {
37
60
  "mcpServers": {
@@ -68,6 +91,21 @@ Or if running from the monorepo:
68
91
 
69
92
  Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
70
93
 
94
+ ```json
95
+ {
96
+ "mcpServers": {
97
+ "contensa": {
98
+ "command": "contensa-mcp",
99
+ "env": {
100
+ "CONTENSA_API_KEY": "your-api-key-here",
101
+ "CONTENSA_PROJECT_ID": "your-default-project-id"
102
+ }
103
+ }
104
+ }
105
+ }
106
+ ```
107
+
108
+ **Alternative** (if not installed globally, use npx):
71
109
  ```json
72
110
  {
73
111
  "mcpServers": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mybe/contensa-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MCP (Model Context Protocol) server for Contensa CMS - enables AI assistants to interact with your CMS",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",