Skip to main content
ClaudeWave

Create and wire up contact forms from your coding agent. Six tools for forms, snippets, and submissions.

MCP ServersRegistry oficial0 estrellas0 forksJavaScriptMITActualizado today
Install in Claude Code / Claude Desktop
Method: NPX · formpaste-mcp
Claude Code CLI
claude mcp add formpaste-mcp -- npx -y formpaste-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "formpaste-mcp": {
      "command": "npx",
      "args": ["-y", "formpaste-mcp"],
      "env": {
        "FORMPASTE_TOKEN": "<formpaste_token>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
FORMPASTE_TOKEN
Casos de uso

Resumen de MCP Servers

# formpaste-mcp

Create and wire up contact forms from your coding agent. Six tools for forms, snippets, and submissions.

## What this is

This package is a thin wrapper that launches `mcp-remote` pointed at the hosted Formpaste MCP server (`https://api.formpaste.com/mcp`, streamable-http transport). The equivalent manual `mcp-remote` config works identically; this package exists mainly so agents and clients can discover and install Formpaste's MCP server by name, not because it does anything the manual config cannot.

## Requirements

- Node.js 18 or later
- A Formpaste account
- An API token from Settings -> API & MCP in the Formpaste dashboard

## Install

Each client below is configured to talk to the hosted MCP endpoint at `https://api.formpaste.com/mcp`. Replace `fpat_YOUR_TOKEN` with a token minted from Settings -> API & MCP.

### Claude Code

```
claude mcp add formpaste --transport http https://api.formpaste.com/mcp \
  --header "Authorization: Bearer fpat_YOUR_TOKEN"
```

### Codex

```
# ~/.codex/config.toml
[mcp_servers.formpaste]
command = "npx"
args = ["mcp-remote", "https://api.formpaste.com/mcp", "--header", "Authorization: Bearer fpat_YOUR_TOKEN"]
```

### Cursor

```
// .cursor/mcp.json
{
  "mcpServers": {
    "formpaste": { "command": "npx", "args": ["mcp-remote", "https://api.formpaste.com/mcp", "--header", "Authorization: Bearer fpat_YOUR_TOKEN"] }
  }
}
```

### Claude Desktop

```
// claude_desktop_config.json
{
  "mcpServers": {
    "formpaste": { "command": "npx", "args": ["mcp-remote", "https://api.formpaste.com/mcp", "--header", "Authorization: Bearer fpat_YOUR_TOKEN"] }
  }
}
```

### VS Code

```
// .vscode/mcp.json
{
  "servers": {
    "formpaste": { "command": "npx", "args": ["mcp-remote", "https://api.formpaste.com/mcp", "--header", "Authorization: Bearer fpat_YOUR_TOKEN"] }
  }
}
```

### Any MCP client, via this package

```
FORMPASTE_TOKEN=fpat_YOUR_TOKEN npx formpaste-mcp
```

`formpaste-mcp` reads `FORMPASTE_TOKEN` from the environment (or a `--token` flag) and starts `mcp-remote` against the hosted endpoint for you.

## The six tools

| Tool | Purpose | Scope |
|---|---|---|
| `create_form` | Create a form, return its access key and a wired snippet | setup |
| `get_snippet` | Return a copy-paste snippet for html/react/nextjs/astro/vue/svelte | setup |
| `list_forms` | List all forms with ids, names, access keys, inbox/spam counts | setup |
| `get_form` | Read one form's config to verify it is wired correctly | setup |
| `send_test_submission` | Store a test submission to prove a form is live | setup |
| `list_submissions` | List submissions, optionally including message bodies | full |

## Token scopes

Formpaste API tokens have two scopes:

- **`full`** can do everything, including reading submission content via `list_submissions`.
- **`setup`** can do everything except `list_submissions`, so it never reads third-party submission content.

Use a `setup`-scoped token for agent use. It covers form creation, snippets, and verifying that a form is wired correctly, without granting access to the data your forms collect.

## Worked example

See [`examples/wire-a-form.md`](examples/wire-a-form.md) for a full walkthrough: create a form, get a snippet, paste it into a page, send a test submission, and confirm the form is wired correctly.

## Links

- Documentation: https://formpaste.com/docs
- MCP server docs: https://formpaste.com/docs/agents/mcp-server
- Install guide: https://formpaste.com/docs/agents/install
- Issues: https://github.com/webrating/formpaste-mcp/issues

Lo que la gente pregunta sobre formpaste-mcp

¿Qué es webrating/formpaste-mcp?

+

webrating/formpaste-mcp es mcp servers para el ecosistema de Claude AI. Create and wire up contact forms from your coding agent. Six tools for forms, snippets, and submissions. Tiene 0 estrellas en GitHub y se actualizó por última vez today.

¿Cómo se instala formpaste-mcp?

+

Puedes instalar formpaste-mcp clonando el repositorio (https://github.com/webrating/formpaste-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar webrating/formpaste-mcp?

+

webrating/formpaste-mcp aún no ha sido auditado por nuestro agente de seguridad. Revisa el repositorio original en GitHub antes de usarlo en producción.

¿Quién mantiene webrating/formpaste-mcp?

+

webrating/formpaste-mcp es mantenido por webrating. La última actividad registrada en GitHub es de today, con 0 issues abiertos.

¿Hay alternativas a formpaste-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega formpaste-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: webrating/formpaste-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/webrating-formpaste-mcp)](https://claudewave.com/repo/webrating-formpaste-mcp)
<a href="https://claudewave.com/repo/webrating-formpaste-mcp"><img src="https://claudewave.com/api/badge/webrating-formpaste-mcp" alt="Featured on ClaudeWave: webrating/formpaste-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a formpaste-mcp