@mapled/mcp 0.9.1 → 0.9.2

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 (2) hide show
  1. package/dist/tools.js +1 -1
  2. package/package.json +2 -2
package/dist/tools.js CHANGED
@@ -379,7 +379,7 @@ export function createTools(api) {
379
379
  },
380
380
  {
381
381
  name: "create_form",
382
- description: "Create a form the site can post submissions to. Returns the public submit endpoint; submissions are posted as flat JSON with the project delivery key in the X-Mapled-Key header. Include an empty hidden _gotcha honeypot field in the HTML form.",
382
+ description: "Create a form the site can post submissions to. Returns the public submit endpoint; submissions are posted as flat JSON with the project delivery key in the X-Mapled-Key header. Include an empty hidden _gotcha honeypot field in the HTML form. When the form has a consent checkbox, post its exact label as _consent — Mapled keeps it with the submission as consent evidence.",
383
383
  schema: {
384
384
  displayName: z.string().min(1).max(80),
385
385
  key: z
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mapled/mcp",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "Mapled MCP server: lets AI agents build schema and content for one Mapled project.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://mapled.io",
@@ -35,7 +35,7 @@
35
35
  },
36
36
  "devDependencies": {
37
37
  "typescript": "^5.8.0",
38
- "vitest": "^3.2.0"
38
+ "vitest": "^4.1.11"
39
39
  },
40
40
  "exports": {
41
41
  ".": "./dist/index.js",