# send_test_submission

Store a TEST submission so you can prove a form is live and receiving. Stored only: it appears in the owner's Inbox with a Test badge but sends NO email, runs NO spam scoring, and never counts toward quota. Optionally pass sample fields; omit to use a default payload. Capped at the 5 newest test rows per form. Errors with: unauthorized, not_found, invalid_input, too_many_fields, field_too_large.

Agent View of the PolicyLayer registry record for `send_test_submission`. HTML page: https://policylayer.com/tools/com-formpaste-formpaste/send-test-submission

## Facts

- Tool: `send_test_submission`
- Server: Formpaste (`formpaste-mcp`) — https://policylayer.com/tools/com-formpaste-formpaste.md
- Install: `npx -y formpaste-mcp`
- Homepage: https://github.com/webrating/formpaste-mcp
- Risk category: Write (Medium risk)
- Registry record: grade C, identity unverified
- Server auth posture: open
- Server CORS policy: *
- Server rate-limited: no
- Parameters: 2 (1 required)
- Recommended policy verdict: Rate-limited

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `fields` | object | no | Optional sample form fields as a flat string map, e.g. { name, email, message }. Omit to use a default test payload. |
| `formId` | string | yes | A form id from create_form or list_forms, e.g. frm_... |

Parameters from the server's own tool schema.

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "send_test_submission",
    "arguments": {
      "formId": "<formId>"
    }
  }
}
```

## Why send_test_submission is rated Medium

This tool creates test submission records in a form system, which is a Write operation. It is reversible (limited to 5 rows per form, clearly marked as test data) and has minimal side effects (no email sending, no spam scoring, no quota impact). The scope is intentionally limited to non-production testing, making this low severity.

From the tool's own definition: "Tool description states 'Store a TEST submission' and 'Stored only: it appears in the owner's Inbox with a Test badge'. The word 'Store' indicates data creation/modification."

## Use case

AI agents use send_test_submission to create or update resources in Formpaste, usually the action step of a workflow, after the agent has gathered context. Every call changes real data in your Formpaste environment.

## Recommended policy (PolicyLayer)

Verdict: **Rate-limited**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches Formpaste:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "send_test_submission": {
      "limits": [
        {
          "counter": "send_test_submission_rate",
          "window": "minute",
          "max": 30,
          "scope": "grant"
        }
      ]
    }
  }
}
```

## Other tools on Formpaste (5)

- `get_form` — Read — https://policylayer.com/tools/com-formpaste-formpaste/get-form.md
- `get_snippet` — Read — https://policylayer.com/tools/com-formpaste-formpaste/get-snippet.md
- `list_forms` — Read — https://policylayer.com/tools/com-formpaste-formpaste/list-forms.md
- `list_submissions` — Read — https://policylayer.com/tools/com-formpaste-formpaste/list-submissions.md
- `create_form` — Write — https://policylayer.com/tools/com-formpaste-formpaste/create-form.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=com-formpaste-formpaste · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/com-formpaste-formpaste
