Compare/Lanes Forms/Lanes Forms vs Basin

Lanes Forms vs Basin

Basin is a hosted form backend with email notifications and spam filtering. Lanes Forms adds agent provisioning over MCP and no-signup creation.

Basin and Lanes Forms are both form backends: point a form at an endpoint and submissions are captured, filtered, and delivered. The difference is how the form is created and who can create it.

This page is about that creation story, and where each tool earns its keep.

At a glance

DimensionLanes FormsBasin
Create a formOne POST or an MCP tool callSet up in the dashboard
Account to startNot required; claim by email laterRequired up front
Agent friendlyYes, provision over MCP mid-taskManual setup
Spam defenseHoneypot, rate limits, disposable-email rejectionSpam filtering
DestinationsEmail and Lanes storage with CSV export today; webhooks on the roadmapEmail and integrations
Origin rulesYesYes
Unclaimed formsHold up to 25 submissions, claim within 7 daysNot applicable; account comes first
Form snippetsGenerated as HTML or React over MCPCopied from the dashboard
DocsLanes Forms docsusebasin.com

Where Lanes Forms fits

Lanes Forms wins on time to first submission and on agent workflows. There is no signup to start, and an agent can provision the endpoint itself while it builds your site. You claim it into a dashboard later.

Provisioning is one POST /v1/forms where only a schema is required; the response returns a live endpoint_url and a claim link, and an optional Idempotency-Key header makes retries safe, so a retried call never duplicates a form. See provisioning. While unclaimed, a form holds up to 25 submissions, forwards nothing, and expires after 7 days if never claimed, so an endpoint born mid-build waits safely for its owner. The agent path is a hosted MCP server whose create_form and submit_form tools work with no key at all, covered in agents and MCP.

Where Basin fits

Basin is a focused, friendly form backend with solid spam handling and notifications, managed from its dashboard. If a straightforward hosted backend set up by hand is what you want, Basin does that well. When the person setting up the form is a human with an account, the two are close; the gap opens when the creator is an agent, or the account does not exist yet.

How Lanes does it

  • Forms are born from an API call. POST /v1/forms with a schema returns a working endpoint, anonymously or with an lfk_ workspace key that makes the form born claimed with no claim step. Claiming an anonymous form releases its held submissions and turns forwarding on. See provisioning.
  • Two security axes. An allowed_origins hostname allowlist governs browser posts, and an optional submission_auth of api_key requires an lfk_ key from servers and other no-origin callers. Per-form CORS echoes the exact allowed origin, never a wildcard. See securing your endpoints.
  • Delivery is explicit about what is live. Email forwarding to verified recipients (up to 5) and Lanes-hosted storage with CSV export work today; webhook and custom-store delivery are on the roadmap and return 422 action_not_available until they ship. See integrating.

Choose Lanes Forms if

  • You want no-signup creation or agent provisioning over MCP.
  • You want email forwarding and stored submissions with CSV export now, and webhook routing when it ships.
  • You want a form an agent can create mid-task and hand off with a claim link.
  • You want origin allowlisting and an optional API-key mode on the same endpoint.

Choose Basin if

  • You prefer to set up and manage forms in an established dashboard.
  • Every form you need is created once, by a person, and managed by hand.

Both are honest tools for the same job. The difference is who, or what, creates the form.

Further reading

See Lanes Forms