sopo-mcp 1.0.1 → 1.0.2
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 +7 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,16 +45,18 @@ npm install sopo-mcp
|
|
|
45
45
|
|
|
46
46
|
## Quick Start
|
|
47
47
|
|
|
48
|
-
### 1. Configure Environment
|
|
48
|
+
### 1. Configure Environment (Optional)
|
|
49
49
|
|
|
50
|
-
|
|
50
|
+
The server defaults to the production Sopo backend: `https://sopo-backend-ebbe5030f148.hosted.ghaymah.systems`
|
|
51
|
+
|
|
52
|
+
You only need to set `SOPO_BACKEND_URL` if you want to use a custom backend (e.g., local development):
|
|
51
53
|
|
|
52
54
|
```bash
|
|
53
55
|
# For Unix/Linux/macOS
|
|
54
|
-
export SOPO_BACKEND_URL=
|
|
56
|
+
export SOPO_BACKEND_URL=http://localhost:4000
|
|
55
57
|
|
|
56
58
|
# Windows PowerShell
|
|
57
|
-
$env:SOPO_BACKEND_URL="
|
|
59
|
+
$env:SOPO_BACKEND_URL="http://localhost:4000"
|
|
58
60
|
```
|
|
59
61
|
|
|
60
62
|
### 2. Usage
|
|
@@ -68,10 +70,7 @@ Add this to your `claude_desktop_config.json`:
|
|
|
68
70
|
"mcpServers": {
|
|
69
71
|
"sopo": {
|
|
70
72
|
"command": "npx",
|
|
71
|
-
"args": ["sopo-mcp"]
|
|
72
|
-
"env": {
|
|
73
|
-
"SOPO_BACKEND_URL": "https://sopo-backend-ebbe5030f148.hosted.ghaymah.systems"
|
|
74
|
-
}
|
|
73
|
+
"args": ["sopo-mcp"]
|
|
75
74
|
}
|
|
76
75
|
}
|
|
77
76
|
}
|