# com.formpaste/formpaste (remote · api.formpaste.com)

Create and wire up contact forms from your coding agent. Forms, snippets, and submissions.

- Trust score: 63/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `api.formpaste.com`: 63/100 (this document), [markdown](https://verifymcp.io/servers/com-formpaste-formpaste/api.md), [page](https://verifymcp.io/servers/com-formpaste-formpaste/api)
- npm · `formpaste-mcp`: 39/100, [markdown](https://verifymcp.io/servers/com-formpaste-formpaste/formpaste-mcp.md), [page](https://verifymcp.io/servers/com-formpaste-formpaste/formpaste-mcp)

## Channel facts

- Endpoint: `https://api.formpaste.com/mcp`
- Transports: `streamable-http`
- Auth: `required`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 49/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 6 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC is configured correctly; the domain's records validate against the full chain to the root.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 632 tokens (~105/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 20/100
  - Stability observed for 6 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http com-formpaste-formpaste https://api.formpaste.com/mcp
```

### Codex

```toml
[mcp_servers.com-formpaste-formpaste]
url = "https://api.formpaste.com/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-formpaste-formpaste": {
      "type": "remote",
      "url": "https://api.formpaste.com/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-formpaste-formpaste --url https://api.formpaste.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-formpaste-formpaste:
    url: "https://api.formpaste.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "com-formpaste-formpaste": {
      "type": "http",
      "url": "https://api.formpaste.com/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 63, +1)

No change was recorded against any check on this day. Stability & Change Management went from 13 to 17. That category is still filling its 30-day observation window: 4 days of observed history at the previous scan, 5 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-01 (score 62, −2)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-31 (score 64, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 63, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-29 (score 62, 0)

- [functional improvement] Stability: unverified → 0.03

### 2026-07-28 (score 62)

First indexed and scored.

## MCP tools (6)

### `create_form` (~113 tokens)

Create a Formpaste form and return its access key + a wired snippet. Triggers destination verification for a new address (the owner completes it in the dashboard); an already-verified destination delivers immediately. Errors with: unauthorized, upgrade_required.

Input parameters:

- `destinationEmail` (string, required): Where submissions are emailed. Must be verified before delivery starts.
- `framework` (string): Target framework for the returned snippet. Defaults to html.
- `name` (string, required): A human-readable name for the form, e.g. "Contact form".

### `get_snippet` (~95 tokens)

Return a copy-paste form snippet for a framework (html, react, nextjs, astro, vue, svelte). Pass formId to fill in a real access key; otherwise a placeholder is used. Errors with: unauthorized, invalid_framework.

Input parameters:

- `formId` (string): An owned form id to fill in the real access key; omit for a placeholder.
- `framework` (string, required): Target framework for the snippet.

### `list_submissions` (~129 tokens)

List submissions for one of your forms. Returns counts + per-submission metadata by default; set includeContent to include message bodies (third-party PII). Errors with: unauthorized, not_found, forbidden. Requires a full-access token.

Input parameters:

- `folder` (string): Which folder to list. Defaults to inbox.
- `formId` (string, required): A form id from create_form or list_forms, e.g. frm_...
- `includeContent` (boolean): Include full submission message bodies (third-party PII). Defaults to false.
- `limit` (number): Maximum number of submissions to return.

### `list_forms` (~51 tokens)

List all forms on your account, each with its id, name, access_key, and inbox/spam counts. Use this to discover form ids or confirm a form you just created exists. Errors with: unauthorized.

### `get_form` (~88 tokens)

Read one of your forms to verify it is wired correctly: returns its access_key, destination_email, destination_verified (whether submissions will be emailed yet), allowed_domains, and notification/autoresponder/webhook config. Never returns the webhook signing secret. Errors with: unauthorized, not_found.

Input parameters:

- `formId` (string, required): A form id from create_form or list_forms, e.g. frm_...

### `send_test_submission` (~156 tokens)

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.

Input parameters:

- `fields` (object): Optional sample form fields as a flat string map, e.g. { name, email, message }. Omit to use a default test payload.
- `formId` (string, required): A form id from create_form or list_forms, e.g. frm_...

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/com-formpaste-formpaste/api#diagnostics

## Score history

- 2026-08-03: 63
- 2026-08-02: 63
- 2026-08-01: 62
- 2026-07-31: 64
- 2026-07-30: 63
- 2026-07-29: 62
- 2026-07-28: 62

## Links

- Remote endpoint: https://api.formpaste.com/mcp
- Authorisation metadata: https://api.formpaste.com/.well-known/oauth-protected-resource/mcp
- Repository: https://github.com/webrating/formpaste-mcp
- Website: https://formpaste.com/
- Changelog RSS feed: https://verifymcp.io/servers/com-formpaste-formpaste/api/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-formpaste-formpaste/api/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-formpaste-formpaste/api
