# NeetoForm — how to use (mcp.ai)

Connect your NeetoForm account and use 6 tools for forms and surveys straight from your AI agent. Connect with your own API key. NeetoForm is an online form builder for collecting submissions and managing workspace team members.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_neetoform?ms=1787295900000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `neetoform_invite_team_members`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/neetoform`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/neetoform/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/neetoform/invite/team/members` — Invite one or more email addresses to the workspace, optionally choosing their role, inviter, and whether NeetoForm sends invitation email.
  - body: { emails: string[], invited_by?: string, organization_role?: string, send_invitation_email?: boolean }
- `POST https://api.mcp.ai/api/neetoform/list/form/submissions` — Return one page of submissions for a specific form in the connected workspace.
  - body: { form_id: string, page_size?: integer, next_cursor?: string }
- `POST https://api.mcp.ai/api/neetoform/list/forms` — Return one page of forms in the connected NeetoForm workspace, including IDs needed to list submissions.
  - body: { page_size?: integer, next_cursor?: string }
- `POST https://api.mcp.ai/api/neetoform/list/team/members` — Return one page of workspace team members, including IDs needed to update or remove a member.
  - body: { page_size?: integer, next_cursor?: string }
- `POST https://api.mcp.ai/api/neetoform/remove/team/member` — Destructively remove one team member from the workspace by ID. The supported API cannot undo this action, and NeetoForm rejects removal of the last admin.
  - body: { team_member_id: string }
- `POST https://api.mcp.ai/api/neetoform/update/team/member` — Update selected profile or workspace-role fields for one team member; fields not provided remain unchanged.
  - body: { email?: string, last_name?: string, time_zone?: string, first_name?: string, team_member_id: string, organization_role?: string }

## Example prompts
- "What can I do in NeetoForm?"
- "Show me a summary of my NeetoForm account"

## More
- Page: https://mcp.ai/neetoform
- Agent spec (llms.txt): https://mcp.ai/neetoform/llms.txt
- Postman collection: https://mcp.ai/neetoform/postman.json
