← getaiform.com

INDIVIDUAL MCP TOOL

get_user_info

Get the authenticated user's ID, email, name, and the active organization MCP is acting on.

getaiform.comnone authenticationAvailability not checked

Input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description suggests sending messages.

Parent endpoint

getaiform.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.dashform-mcp-api]
url = "https://getaiform.com/api/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "dashform-mcp-api": {
      "type": "http",
      "url": "https://getaiform.com/api/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: dashform-mcp-api
Remote MCP URL: https://getaiform.com/api/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "dashform-mcp-api": {
      "url": "https://getaiform.com/api/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "dashform-mcp-api": {
      "type": "http",
      "url": "https://getaiform.com/api/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "dashform-mcp-api",
  "transport": "streamable-http",
  "url": "https://getaiform.com/api/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • list_organizations — List all organizations the authenticated user belongs to, with their role in each.
  • switch_active_org — Set which organization MCP acts on for subsequent tool calls.
  • list_forms — List forms in the active organization, with status and share/edit URLs.
  • get_form — Get full details of a form (steps, theme, configuration) by ID, with share/edit URLs.
  • create_form — Create a new form in the active organization.
  • update_form — Update a form's configuration.
  • delete_form — Permanently delete a form and all its versions and replies.
  • create_reply — Create a reply on the form's latest published version.