Survey

Surveys for every project you ship.

Hosted survey service for builders running portfolios, not products. One install line per project, typed SDK, multi-project dashboard, MCP server for agent workflows. Pricing per response volume — unlimited members, unlimited agents, no per-seat licensing.

One install line
Typed responses
MCP server day oneagent

Built for the agent buyer.

Coding agents are increasingly the buyer of dev tools. Survey is designed to be integrated in fewer tokens than building a survey system in-house. The MCP server, the SDK, and the docs are designed for agents to provision, integrate, and read insights back end-to-end.

  • • Provision a project in one MCP call.
  • • Drop a single component into the customer app.
  • • Read structured summaries back via summarizeResponses.
  • • Metered pricing on response volume — no seat licensing.
// 1. Provision (MCP)
provisionProject({ name: "my-app" })
// → { projectId, publishableKey, integrationSnippet }

// 2. Render
import { Survey } from "survey";
<Survey projectId="proj_..." surveyId="srv_..." />

// 3. Summarize (MCP)
summarizeResponses({ projectId, surveyId })
// → { questions: [...], totalResponses: ... }