multify-mcp 0.1.2 → 0.1.3
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 +6 -6
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ This is not Claude-specific. Any client, agent runtime, or connector platform th
|
|
|
13
13
|
The fixed hosted endpoint is:
|
|
14
14
|
|
|
15
15
|
```text
|
|
16
|
-
https://
|
|
16
|
+
https://app.multifyco.com/mcp
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
For normal usage, the user should only need one secret:
|
|
@@ -43,7 +43,7 @@ Use this connection contract:
|
|
|
43
43
|
```text
|
|
44
44
|
Name: multify-mcp
|
|
45
45
|
Transport: http
|
|
46
|
-
URL: https://
|
|
46
|
+
URL: https://app.multifyco.com/mcp
|
|
47
47
|
Authorization: Bearer YOUR_MULTIFY_MCP_KEY
|
|
48
48
|
```
|
|
49
49
|
|
|
@@ -54,7 +54,7 @@ If your client uses a config file instead of a CLI, the shape is usually equival
|
|
|
54
54
|
"mcpServers": {
|
|
55
55
|
"multify-mcp": {
|
|
56
56
|
"transport": "http",
|
|
57
|
-
"url": "https://
|
|
57
|
+
"url": "https://app.multifyco.com/mcp",
|
|
58
58
|
"headers": {
|
|
59
59
|
"Authorization": "Bearer YOUR_MULTIFY_MCP_KEY"
|
|
60
60
|
}
|
|
@@ -65,7 +65,7 @@ If your client uses a config file instead of a CLI, the shape is usually equival
|
|
|
65
65
|
|
|
66
66
|
Field names vary between clients, but the invariants do not:
|
|
67
67
|
|
|
68
|
-
- use the fixed URL `https://
|
|
68
|
+
- use the fixed URL `https://app.multifyco.com/mcp`
|
|
69
69
|
- use remote HTTP MCP transport
|
|
70
70
|
- send `Authorization: Bearer ...`
|
|
71
71
|
|
|
@@ -80,7 +80,7 @@ That helper wraps the fixed hosted URL for you and runs the Claude Code command.
|
|
|
80
80
|
Raw Claude Code command:
|
|
81
81
|
|
|
82
82
|
```bash
|
|
83
|
-
claude mcp add --transport http multify-mcp https://
|
|
83
|
+
claude mcp add --transport http multify-mcp https://app.multifyco.com/mcp \
|
|
84
84
|
--header "Authorization: Bearer YOUR_MULTIFY_MCP_KEY"
|
|
85
85
|
```
|
|
86
86
|
|
|
@@ -91,7 +91,7 @@ Claude Code expects auth for remote HTTP MCP servers through `--header`, so the
|
|
|
91
91
|
Endpoint:
|
|
92
92
|
|
|
93
93
|
```text
|
|
94
|
-
https://
|
|
94
|
+
https://app.multifyco.com/mcp
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
Header:
|
package/dist/cli.js
CHANGED
|
@@ -12,7 +12,7 @@ Options:
|
|
|
12
12
|
--token <value> Workspace MCP key from Multify
|
|
13
13
|
--scope <value> Claude config scope: local, user, or project
|
|
14
14
|
--server-name <value> Claude MCP server name (default: multify-mcp)
|
|
15
|
-
--url <value> Override hosted MCP URL (default: https://
|
|
15
|
+
--url <value> Override hosted MCP URL (default: https://app.multifyco.com/mcp)
|
|
16
16
|
--print Print the underlying claude command instead of executing it
|
|
17
17
|
-h, --help Show help
|
|
18
18
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
export declare const DEFAULT_MULTIFY_MCP_URL = "https://
|
|
2
|
+
export declare const DEFAULT_MULTIFY_MCP_URL = "https://app.multifyco.com/mcp";
|
|
3
3
|
export declare const mcpScopeValues: readonly ["contacts.read", "contacts.create", "contacts.update", "contacts.bulk_create", "contacts.bulk_update", "lists.read", "lists.create", "lists.update", "lists.bulk_create", "lists.bulk_update", "lists.membership.write"];
|
|
4
4
|
export declare const mcpScopeSchema: z.ZodEnum<["contacts.read", "contacts.create", "contacts.update", "contacts.bulk_create", "contacts.bulk_update", "lists.read", "lists.create", "lists.update", "lists.bulk_create", "lists.bulk_update", "lists.membership.write"]>;
|
|
5
5
|
export type McpScope = z.infer<typeof mcpScopeSchema>;
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { randomUUID } from "node:crypto";
|
|
2
2
|
import { z } from "zod";
|
|
3
|
-
export const DEFAULT_MULTIFY_MCP_URL = "https://
|
|
3
|
+
export const DEFAULT_MULTIFY_MCP_URL = "https://app.multifyco.com/mcp";
|
|
4
4
|
export const mcpScopeValues = [
|
|
5
5
|
"contacts.read",
|
|
6
6
|
"contacts.create",
|