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.
Files changed (3) hide show
  1. package/README.md +29 -0
  2. package/index.js +1 -1
  3. 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
@@ -32,7 +32,7 @@ if (!API_KEY) {
32
32
 
33
33
  // --- Server Definition ---
34
34
  const mcp = new FastMCP("suarify-mcp-server", {
35
- version: "0.1.0"
35
+ version: "0.1.1"
36
36
  });
37
37
 
38
38
  const apiClient = axios.create({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "suarify-mcp-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Suarify MCP Server for voice calling and lead management",
5
5
  "main": "index.js",
6
6
  "type": "module",