← tupley.app

INDIVIDUAL MCP TOOL

delete_integration

Permanently delete an integration from a form.

tupley.appnone authenticationAvailability not checked

Input schema

{}

Risk classification

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

  • A tool name or description contains a deletion term.

Parent endpoint

tupley.app

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.tupley-app]
url = "https://tupley.app/api/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "tupley-app": {
      "type": "http",
      "url": "https://tupley.app/api/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: tupley-app
Remote MCP URL: https://tupley.app/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": {
    "tupley-app": {
      "url": "https://tupley.app/api/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

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

Client-specific MCP configuration

{
  "name": "tupley-app",
  "transport": "streamable-http",
  "url": "https://tupley.app/api/mcp"
}
MCP Inspector

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

Related tools

  • get_user_info — Get the authenticated user's ID, email, name, and the active organization MCP is acting on.
  • 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.