Skip the install. Get this working in under 2 minutes.
Start a free trial on cloud.anythingmcp.com, add the Wufoo in one click, then point your AI client (Claude, ChatGPT, Copilot or Cursor) at the generated MCP endpoint. No Docker, no git clone, zero engineering experience required.
Summary
Read Wufoo (SurveyMonkey-owned classic form builder) submissions and form definitions from any AI agent. 6 tools, Basic auth, subdomain-templated URL.
试试这样问
Wufoo 的示例提示
点击任意提示即可复制,然后粘贴到 Claude、ChatGPT、Cursor、Gemini、Copilot 或 OpenClaw 中,在该连接器上运行。
Claude 是 AI,可能会出错。请核对回答。
💡 无需安装? 直接使用 cloud.anythingmcp.com。 登录、点击 Connectors → Wufoo、粘贴凭证、生成 MCP API key — 完成。无 Docker、无
git clone、无本地服务器。
Wufoo
Read Wufoo (SurveyMonkey-owned classic form builder) submissions and form definitions from any AI agent. 6 tools, Basic auth, subdomain-templated URL.
设置
com/api).
Setup:
- Sign in to Wufoo → top-right avatar → Account → API Information.
- Note your API key and your subdomain (e.g. if URL is
acme.wufoo.com→acme). - Set:
WUFOO_SUBDOMAIN= your subdomainWUFOO_API_KEY= the API key
Authentication: HTTP Basic with username=API_KEY, password='footastic' (literal — Wufoo's convention).
Subdomain in base URL: https://{{WUFOO_SUBDOMAIN}}.wufoo.com/api/v3.
Form/Entry model: forms (the definitions) contain fields (the questions). Entries (submissions) are field_id→value mappings keyed by short_field_id strings like 'Field1', 'Field2'.
Pagination: ?pageStart=N&pageSize=M (max 100).
…(continued in the in-app connector instructions)
前提条件: WUFOO_SUBDOMAIN, WUFOO_API_KEY
本地安装连接器
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
打开 http://localhost:3000/connectors/store,选择 Wufoo 并填入前提条件中列出的环境变量。
可用工具
| Tool | What it does |
|---|---|
wufoo_list_forms | List all forms on the account |
wufoo_get_form | Fetch a single form's metadata by its Hash |
wufoo_get_form_fields | Get a form's fields (the questions) |
wufoo_list_form_entries | List submissions (entries) for a form |
wufoo_count_form_entries | Return just the entry count for a form (cheap — no entry payload) |
wufoo_create_form_entry | Submit a new entry to a form (programmatic submission) |
下一步
这份指南对你有帮助吗?