← pollbolt.com

INDIVIDUAL MCP TOOL

delete_survey

Permanently delete a survey and all its responses.

pollbolt.comnone 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

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

.mcp.json

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

Settings → Connectors → Add custom connector

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

.vscode/mcp.json

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

Client-specific MCP configuration

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

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

Related tools

  • create_survey — Create a new survey.
  • list_surveys — List all surveys in your PollBolt account with pagination.
  • get_survey — Get full details of a specific survey including all questions.
  • update_survey — Update a survey's title, questions, settings, styles, screens, or logic.
  • list_responses — List responses for a survey with pagination and filters.
  • get_response — Get a single response by ID.
  • submit_response — Submit a response to a survey programmatically.
  • get_analytics — Get analytics summary for a survey (views, responses, completion rate).