@clipform/mcp-server 1.10.0 → 1.10.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
CHANGED
|
@@ -23,7 +23,7 @@ Use this for stdio-based MCP clients. Pass your API key to authenticate with you
|
|
|
23
23
|
**Claude Code:**
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
claude mcp add clipform -e CLIPFORM_API_KEY=
|
|
26
|
+
claude mcp add clipform -e CLIPFORM_API_KEY=cf_xxx -- npx -y @clipform/mcp-server
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
**Claude Desktop / Cursor / Windsurf / OpenClaw** - add to your MCP config:
|
|
@@ -35,7 +35,7 @@ claude mcp add clipform -e CLIPFORM_API_KEY=cf_live_xxx -- npx -y @clipform/mcp-
|
|
|
35
35
|
"command": "npx",
|
|
36
36
|
"args": ["-y", "@clipform/mcp-server"],
|
|
37
37
|
"env": {
|
|
38
|
-
"CLIPFORM_API_KEY": "
|
|
38
|
+
"CLIPFORM_API_KEY": "cf_xxx"
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -44,7 +44,7 @@ claude mcp add clipform -e CLIPFORM_API_KEY=cf_live_xxx -- npx -y @clipform/mcp-
|
|
|
44
44
|
|
|
45
45
|
Generate an API key in your Clipform dashboard under **Settings > API Keys**.
|
|
46
46
|
|
|
47
|
-
You can also pass the key as a CLI flag: `npx -y @clipform/mcp-server --api-key=
|
|
47
|
+
You can also pass the key as a CLI flag: `npx -y @clipform/mcp-server --api-key=cf_xxx`
|
|
48
48
|
|
|
49
49
|
**Anonymous mode** (no API key): Forms go into a shared workspace with the free-tier 3-node limit. You'll get a claim URL to move forms into your account.
|
|
50
50
|
|
|
@@ -22109,7 +22109,6 @@ var CONTACT_FIELDS = [
|
|
|
22109
22109
|
var CONTACT_FIELDS_MAP = Object.fromEntries(
|
|
22110
22110
|
CONTACT_FIELDS.map((f) => [f.id, f])
|
|
22111
22111
|
);
|
|
22112
|
-
var API_KEY_PREFIX = ENV.isProduction ? "cf_live_" : "cf_test_";
|
|
22113
22112
|
|
|
22114
22113
|
// src/lib/schemas.ts
|
|
22115
22114
|
var ACTIVE_NODE_TYPES = Object.entries(NODE_TYPES).filter(([, def]) => def.is_active && !def.is_system).map(([type]) => type);
|
|
@@ -24796,4 +24795,4 @@ export {
|
|
|
24796
24795
|
setApiKey,
|
|
24797
24796
|
createServer
|
|
24798
24797
|
};
|
|
24799
|
-
//# sourceMappingURL=chunk-
|
|
24798
|
+
//# sourceMappingURL=chunk-MWNHJLHD.js.map
|