suarify-mcp-server 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.
- package/README.md +29 -0
- package/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,6 +21,35 @@ Set the following environment variables:
|
|
|
21
21
|
- `SUARIFY_API_KEY`: (Required) Your API key for authentication.
|
|
22
22
|
- `SUARIFY_BASE_URL`: (Optional) Defaults to `https://suarify1.my`.
|
|
23
23
|
|
|
24
|
+
## Setup in AI Clients
|
|
25
|
+
|
|
26
|
+
### Claude Desktop
|
|
27
|
+
|
|
28
|
+
Add the following to your `claude_desktop_config.json` (usually located in `%APPDATA%\Claude\claude_desktop_config.json` on Windows or `~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
|
|
29
|
+
|
|
30
|
+
```json
|
|
31
|
+
{
|
|
32
|
+
"mcpServers": {
|
|
33
|
+
"suarify": {
|
|
34
|
+
"command": "npx",
|
|
35
|
+
"args": ["-y", "suarify-mcp-server"],
|
|
36
|
+
"env": {
|
|
37
|
+
"SUARIFY_API_KEY": "your_api_key_here"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### Cursor
|
|
45
|
+
|
|
46
|
+
1. Go to **Settings** -> **Features** -> **MCP**.
|
|
47
|
+
2. Click **+ Add New MCP Server**.
|
|
48
|
+
3. Name: `Suarify`.
|
|
49
|
+
4. Type: `command`.
|
|
50
|
+
5. Command: `npx -y suarify-mcp-server`.
|
|
51
|
+
6. Add environment variable `SUARIFY_API_KEY` with your key.
|
|
52
|
+
|
|
24
53
|
## Usage
|
|
25
54
|
|
|
26
55
|
### Local Development
|
package/index.js
CHANGED