sunsiyuan/human-survey

๐Ÿข Workplace & Productivity
0 Views
0 Installs

๐Ÿ“‡ โ˜๏ธ ๐ŸŽ ๐ŸชŸ ๐Ÿง - Feedback collection for AI agents. Create surveys from JSON schema, collect structured responses from groups of people, and retrieve aggregated results. 4 MCP tools for long-horizon agent workflows: post-event feedback, product launches, team health checks.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "sunsiyuan-human-survey": {
      "command": "npx",
      "args": [
        "-y",
        "sunsiyuan-human-survey"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

HumanSurvey

Website: humansurvey.co ยท Docs: humansurvey.co/docs ยท FAQ: humansurvey.co/faq

human-survey MCP server

Feedback collection infrastructure for AI agents.

HumanSurvey lets an agent doing long-horizon work collect structured feedback from a group of people:

Agent is doing a job
  โ†’ needs structured feedback from a group
  โ†’ creates survey from JSON schema
  โ†’ shares /s/{id} URL with respondents
  โ†’ humans respond over hours or days
  โ†’ agent retrieves structured JSON results and acts on them

What is this?

HumanSurvey is a minimal API and MCP server for one narrow job: let agents collect structured feedback from groups of humans and get machine-usable results back.

It is designed for:

  • AI agents running event management, product launches, or community workflows that need to survey a group
  • Developers building agent products that need a lightweight feedback-collection primitive

It is not designed for:

  • survey dashboards
  • visual form builders
  • template libraries
  • email campaigns
  • analytics/reporting UI

Features

  • JSON schema input โ€” structured, precise, and directly machine-generated
  • MCP server โ€” create surveys and read results directly from Claude Code
  • Minimal API surface โ€” authenticated creator routes, public respondent submission
  • Four semantic question types โ€” choice, text, scale, matrix
  • Conditional logic โ€” showIf in Markdown and JSON schema
  • Explicit lifecycle โ€” close surveys, expiry, and max response limits

Product Principles

  • Semantic over visual: HumanSurvey has a small protocol, not a zoo of UI-specific field types.
  • AI-first I/O: agents write the survey and agents consume the results; humans are in the middle.
  • Everything is an API: creator functionality must be available over authenticated HTTP and MCP.
  • Narrow scope wins: if a feature mainly serves human survey operators, it probably does not belong here.

Supported Question Types

  • single_choice
  • multi_choice
  • text
  • scale
  • matrix

Markdown Syntax

# Survey Title

**Description:** Instructions for the respondent.

## Section Name

**Q1. Your question here?**

- โ˜ Option A
- โ˜ Option B
- โ˜ Option C

**Q2. Multi-select question?** (select all that apply)

- โ˜ Choice 1
- โ˜ Choice 2
- โ˜ Choice 3

**Q3. Open-ended question:**

> _______________

| # | Item | Rating |
|---|------|--------|
| 1 | Item A | โ˜Good โ˜OK โ˜Bad |
| 2 | Item B | โ˜Good โ˜OK โ˜Bad |

Scale questions:

**Q4. How severe is this issue?**

[scale 1-5 min-label="Low" max-label="Critical"]

Conditional logic:

**Q1. Did the deploy fail?**

- โ˜ Yes
- โ˜ No

**Q2. Which step failed?**

> show if: Q1 = "Yes"

> _______________________________________________

Quick Start

Use with Claude Code

Add to your Claude Code config (~/.claude.json):

{
  "mcpServers": {
    "survey": {
      "command": "npx",
      "args": ["-y", "humansurvey-mcp"],
      "env": {
        "HUMANSURVEY_API_KEY": "hs_sk_your_key_here"
      }
    }
  }
}

Then in Claude Code:

> Create a post-event feedback survey with a 1-5 rating, open text, and a yes/no question

Available tools:

  • create_key โ€” self-provision an API key; no human setup required
  • create_survey โ€” create from JSON schema; optional max_responses, expires_at, webhook_url
  • get_results โ€” aggregated results + raw responses
  • list_surveys โ€” list surveys owned by your key
  • close_survey โ€” close a survey immediately

Use the HTTP API

curl -X POST https://www.humansurvey.co/api/keys \
  -H "Content-Type: application/json" \
  -d '{
    "name": "my claude agent",
    "email": "you@example.com",
    "wallet_address": "eip155:8453:0xabc..."
  }'

All fields optional. wallet_address uses CAIP-10 format โ€” will be used for agent-native payments in the future.

Then create a survey:

curl -X POST https://www.humansurvey.co/api/surveys \
  -H "Authorization: Bearer hs_sk_..." \
  -H "Content-Type: application/json" \
  -d '{
    "schema": {
      "title": "Post-Event Feedback",
      "sections": [{
        "questions": [
          { "type": "scale", "label": "How would you rate the event?", "min": 1, "max": 5 },
          { "type": "text", "label": "What should we improve?" }
        ]
      }]
    }
  }'

Response:

{
  "survey_url": "/s/abc123",
  "question_count": 1
}

Read results:

curl https://www.humansurvey.co/api/surveys/abc123/responses \
  -H "Authorization: Bearer hs_sk_..."

Public Surface

  • Docs page: https://www.humansurvey.co/docs
  • OpenAPI: https://www.humansurvey.co/api/openapi.json
  • AI index: https://www.humansurvey.co/llms.txt

Tech Stack

ComponentTechnology
FrameworkNext.js (App Router)
DatabaseNeon (serverless Postgres)
Parserremark (unified ecosystem)
FrontendReact + Tailwind CSS
MCP Server@modelcontextprotocol/sdk
DeploymentVercel

Project Structure

โ”œโ”€โ”€ apps/web/          # Next.js app (API + frontend)
โ”œโ”€โ”€ packages/parser/   # Markdown โ†’ Survey JSON parser
โ”œโ”€โ”€ packages/mcp-server/ # MCP server for Claude Code
โ””โ”€โ”€ docs/              # Architecture docs

Contributing

Read CONTRIBUTING.md before opening a PR. The most important rule is scope discipline: new UI variants, analytics dashboards, and human-operator features are usually out of scope.

Development

pnpm install
pnpm dev              # Start Next.js dev server
pnpm --filter @mts/parser test
pnpm build            # Build all packages

License

MIT

Related MCP Servers

6figr-com/jobgpt-mcp-server

๐Ÿ“‡ โ˜๏ธ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - MCP server for JobGPT โ€” search jobs, auto-apply, generate tailored resumes, track applications, and find recruiters from any MCP client. 34 tools for job search, applications, resumes, and outreach.

๐Ÿข Workplace & Productivity0 views
Agentled/mcp-server

๐Ÿ“‡ โ˜๏ธ - AI-native workflow orchestration with long-term memory, 100+ integrations, and unified credits. 32 MCP tools for building and running intelligent business workflows โ€” lead enrichment, content publishing, company research, media production, and more. Knowledge Graph that learns across executions.

๐Ÿข Workplace & Productivity0 views
alex13slem/openproject-codex-plugin

๐Ÿ“‡ โ˜๏ธ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - Write-capable MCP server for OpenProject API v3 with Community Edition support. Search, create, update, assign, prioritize, and comment on work packages. Published as io.github.alex13slem/openproject in the official MCP Registry and installable with npx -y openproject-codex-plugin.

๐Ÿข Workplace & Productivity0 views
ap311036/ews-meeting-mcp

๐Ÿ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - Safely schedule Outlook meetings on on-prem Exchange EWS. Resolves attendees, discovers rooms, suggests slots, and requires preview-confirmed create/update/cancel writes with local credential handling and audit-friendly lifecycle records.

๐Ÿข Workplace & Productivity0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it โ†’
โ˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.