@netpad/mcp-server 2.4.2 → 2.4.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 +82 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,40 @@
|
|
|
1
1
|
# @netpad/mcp-server
|
|
2
2
|
|
|
3
|
-
An MCP (Model Context Protocol) server for AI-assisted NetPad application development. This comprehensive toolkit provides **
|
|
3
|
+
An MCP (Model Context Protocol) server for AI-assisted NetPad application development. This comprehensive toolkit provides **80+ tools** for building forms, workflows, applications, and data-driven experiences with the NetPad platform.
|
|
4
|
+
|
|
5
|
+
> **Build forms in minutes, not hours.** Describe what you need to Claude, get a working form with one click.
|
|
6
|
+
>
|
|
7
|
+
> Learn more at [netpad.io/mcp](https://netpad.io/mcp)
|
|
8
|
+
|
|
9
|
+
## Build from Claude
|
|
10
|
+
|
|
11
|
+
The most powerful way to use NetPad is through conversational building with Claude:
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
You: "I need a customer feedback form with rating, comments, and contact info"
|
|
15
|
+
|
|
16
|
+
Claude: I've generated your feedback form with:
|
|
17
|
+
- Star rating field (1-5)
|
|
18
|
+
- Comments textarea with 500 character limit
|
|
19
|
+
- Email and phone fields with validation
|
|
20
|
+
|
|
21
|
+
Click to import: https://netpad.io/import/imp_abc123
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
**That's it.** One conversation, one click, working form.
|
|
25
|
+
|
|
26
|
+
### How It Works
|
|
27
|
+
|
|
28
|
+
1. **Describe** - Tell Claude what form you need in plain English
|
|
29
|
+
2. **Generate** - Claude uses `generate_form` to create the configuration
|
|
30
|
+
3. **Import** - Click the link or use `create_import_link` for a shareable URL
|
|
31
|
+
4. **Customize** - Fine-tune in NetPad's visual builder if needed
|
|
32
|
+
|
|
33
|
+
## What's New in v2.4.0
|
|
34
|
+
|
|
35
|
+
- **One-Click Import Links**: `create_import_link` tool generates shareable URLs for instant form import
|
|
36
|
+
- **Import URLs in Output**: `generate_form` now includes a direct import link in the response
|
|
37
|
+
- **Deep Link Integration**: Forms created in Claude can be imported to NetPad Cloud with one click
|
|
4
38
|
|
|
5
39
|
## What's New in v2.0.0
|
|
6
40
|
|
|
@@ -97,7 +131,13 @@ Add to `~/.cursor/mcp.json`:
|
|
|
97
131
|
}
|
|
98
132
|
```
|
|
99
133
|
|
|
100
|
-
## Available Tools (
|
|
134
|
+
## Available Tools (80+ total)
|
|
135
|
+
|
|
136
|
+
### Import & Sharing Tools (1) - NEW
|
|
137
|
+
|
|
138
|
+
| Tool | Description |
|
|
139
|
+
|------|-------------|
|
|
140
|
+
| `create_import_link` | Generate a shareable one-click import URL for any form configuration |
|
|
101
141
|
|
|
102
142
|
### Form Building Tools (6)
|
|
103
143
|
|
|
@@ -298,6 +338,44 @@ The server exposes documentation as MCP resources:
|
|
|
298
338
|
|
|
299
339
|
## Example Interactions
|
|
300
340
|
|
|
341
|
+
### Build a Form with One Click
|
|
342
|
+
|
|
343
|
+
```
|
|
344
|
+
User: I need a job application form with resume upload, experience level,
|
|
345
|
+
and availability
|
|
346
|
+
|
|
347
|
+
Claude: [Uses generate_form tool]
|
|
348
|
+
I've generated your job application form with:
|
|
349
|
+
- Resume file upload (PDF, DOC, DOCX - max 10MB)
|
|
350
|
+
- Experience level dropdown (Entry, Mid, Senior, Executive)
|
|
351
|
+
- Availability date picker
|
|
352
|
+
- Cover letter textarea
|
|
353
|
+
- Contact information section
|
|
354
|
+
|
|
355
|
+
Click to import: https://netpad.io/import/imp_xyz789
|
|
356
|
+
|
|
357
|
+
The form is ready to use - just click the link to add it to your NetPad workspace.
|
|
358
|
+
```
|
|
359
|
+
|
|
360
|
+
### Generate and Share an Import Link
|
|
361
|
+
|
|
362
|
+
```
|
|
363
|
+
User: Can you create a patient intake form and give me a link I can share
|
|
364
|
+
with my team?
|
|
365
|
+
|
|
366
|
+
Claude: [Uses generate_form, then create_import_link]
|
|
367
|
+
Here's your patient intake form with:
|
|
368
|
+
- Personal information section
|
|
369
|
+
- Medical history fields
|
|
370
|
+
- Insurance details
|
|
371
|
+
- Emergency contact
|
|
372
|
+
|
|
373
|
+
Shareable import link: https://netpad.io/import/imp_abc123
|
|
374
|
+
|
|
375
|
+
This link expires in 7 days. Anyone with a NetPad account can click it
|
|
376
|
+
to import this form into their workspace.
|
|
377
|
+
```
|
|
378
|
+
|
|
301
379
|
### Create an Application
|
|
302
380
|
|
|
303
381
|
```
|
|
@@ -386,9 +464,11 @@ echo '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"list_form_
|
|
|
386
464
|
|
|
387
465
|
## Related Packages
|
|
388
466
|
|
|
467
|
+
- [@netpad/mcp-server-remote](https://www.npmjs.com/package/@netpad/mcp-server-remote) - Remote HTTP MCP server for Claude custom connectors
|
|
389
468
|
- [@netpad/forms](https://www.npmjs.com/package/@netpad/forms) - React form renderer library
|
|
390
469
|
- [@netpad/workflows](https://www.npmjs.com/package/@netpad/workflows) - Workflow automation client
|
|
391
470
|
- [NetPad Platform](https://netpad.io) - Full form builder platform with database integration
|
|
471
|
+
- [NetPad MCP Guide](https://netpad.io/mcp) - Learn more about building with Claude
|
|
392
472
|
|
|
393
473
|
## License
|
|
394
474
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netpad/mcp-server",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.3",
|
|
4
4
|
"description": "MCP server for AI-assisted NetPad application development - 75 tools for forms, workflows, applications, marketplace, npm, conversational forms, search interfaces, 25+ templates, and MongoDB data browser",
|
|
5
5
|
"author": "Michael Lynn",
|
|
6
6
|
"license": "Apache-2.0",
|