npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@innerkore/formproxy-mcp

v1.0.4

Published

MCP skill for FormProxy — lets AI agents create and manage form endpoints natively

Readme

FormProxy MCP

An MCP (Model Context Protocol) server that lets Claude, Cursor, Windsurf, and any MCP-compatible AI create and manage FormProxy form endpoints natively during code generation.

What it does

Whenever an AI generates an HTML page with a <form> element, it can call create_form to get a real backend endpoint URL and wire it directly into the HTML — no placeholder action="#" needed.

<!-- Without FormProxy MCP -->
<form method="POST" action="#">  <!-- broken — goes nowhere -->

<!-- With FormProxy MCP -->
<form method="POST" action="https://api.formproxy.com/f/xK9mP2qRt">  <!-- real, working backend -->

Installation

Claude Code / Cursor / Windsurf

Add to your MCP config (e.g. ~/.claude/settings.json or .cursor/mcp.json):

{
  "mcpServers": {
    "formproxy": {
      "command": "npx",
      "args": ["@innerkore/formproxy-mcp"],
      "env": {
        "FORMPROXY_API_KEY": "fp_live_your_key_here"
      }
    }
  }
}

Get your API key at app.formproxy.com/settingsAPI Keys tab.

Note: API keys start with fp_live_. The server won't authenticate without this prefix.

Environment variables

| Variable | Required | Default | Description | |---|---|---|---| | FORMPROXY_API_KEY | Yes | — | Your fp_live_* API key | | FORMPROXY_API_URL | No | https://api.formproxy.com | Override for self-hosted or staging |


Tools

create_form

Creates a new form and returns its endpoint URL and an embed snippet.

create_form({
  name: "Early Access Signup",
  fields: [
    { name: "email", type: "email", required: true, label: "Work email" },
    { name: "company", type: "text", label: "Company" }
  ],
  settings: {
    notify_email: "[email protected]",
    success_title: "You're on the list!",
    success_description: "We'll be in touch soon."
  }
})

Response:

{
  "form_uid": "xK9mP2qRt",
  "endpoint_url": "https://api.formproxy.com/f/xK9mP2qRt",
  "embed_snippet": "<form method=\"POST\" action=\"https://api.formproxy.com/f/xK9mP2qRt\">..."
}

Field types: text, email, phone/tel, number, date, url, file, textarea, checkbox, hidden

Settings:

| Key | Description | |---|---| | notify_email | Email address to notify on each new submission | | redirect_url | URL to redirect to after submission (use ?format=redirect on the form) | | honeypot_field | Field name for spam honeypot (bots fill it, humans don't) | | success_title | Title shown on the HTML success page (?format=html) | | success_description | Body text shown on the HTML success page | | success_icon | Icon for success page: check-circle-2, heart, sparkles, rocket, etc. |


get_form

Retrieves full details for an existing form by UID.

get_form({ uid: "xK9mP2qRt" })

list_forms

Lists all forms in the workspace.

list_forms({ limit: 20, offset: 0 })

Returns { items, total, limit, offset } — use offset to paginate.


get_submissions

Fetches raw submission data for a form.

get_submissions({
  form_uid: "xK9mP2qRt",
  limit: 50,
  status: "unread",   // "unread" | "read" | "starred" | "spam"
  cursor: "..."       // from next_cursor in a previous response
})

Returns { items, next_cursor, columns }. Each item has id, data, status, created_at, file_keys.


summarize_submissions

Fetches up to 200 submissions and aggregates them locally — no external AI call.

summarize_submissions({
  form_uid: "xK9mP2qRt",
  period: "this_week"   // "today" | "this_week" | "this_month" | "all"
})

Returns total count, status breakdown (read/unread/starred), top field-value frequencies, date range, and starred entries.


add_integration

Attaches an integration to an existing form.

add_integration({
  form_uid: "xK9mP2qRt",
  type: "slack",
  config: { webhook_url: "https://hooks.slack.com/services/..." }
})

Integration types and required config:

| Type | Required config keys | |---|---| | webhook | url; optional: secret | | slack | webhook_url | | smtp | to; optional: subject | | google_sheets | spreadsheet_id; optional: sheet_name | | zapier | webhook_url | | airtable | base_id, table_name, api_key |


generate_form_html

Generates styled HTML markup for a form without making an API call. Use after create_form.

generate_form_html({
  form_uid: "xK9mP2qRt",
  style: "tailwind",   // "plain" | "tailwind" | "minimal"
  fields: [
    { name: "email", type: "email", required: true, label: "Email" },
    { name: "message", type: "textarea", label: "Message" }
  ],
  submit_label: "Send message",
  redirect_url: "https://example.com/thanks"
})

| Style | Description | |---|---| | plain | Inline CSS styles, no dependencies | | tailwind | Tailwind CSS utility classes | | minimal | Bare HTML, no styles |


Resources

The server also exposes two MCP resources:

  • formproxy://workspace/current/forms — all forms in the workspace as JSON
  • formproxy://form/{uid}/schema — full schema + endpoint URL for a specific form

Submission endpoint

The submission endpoint that HTML forms post to is:

POST https://api.formproxy.com/f/{uid}

Supported content types:

  • application/x-www-form-urlencoded (standard HTML form)
  • multipart/form-data (file uploads)
  • application/json

Query parameters:

  • ?format=json (default) — returns { ok: true, id: "..." }
  • ?format=html — returns a branded success page
  • ?format=redirect — redirects to the form's redirect_url setting

Development

# Install dependencies
npm install

# Build
npm run build

# Watch mode
npm run dev

# Run built server
npm start

The server communicates over stdio (standard MCP transport). It has no HTTP port.


License

MIT — © Innerkore Technologies Private Limited