← pollbolt.com
INDIVIDUAL MCP TOOL
get_analytics
Get analytics summary for a survey (views, responses, completion rate).
Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent endpoint
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.delete_survey— Permanently delete a survey and all its responses.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.