← uiverify.ai

INDIVIDUAL MCP TOOL

delete_comment

Soft-delete a comment (get its id from list_comments).

uiverify.ainone authenticationAvailability not checked

LIVE ENDPOINT

https://uiverify.ai/api/mcp

No auth detected

Connect to this endpoint to inspect the live schema for delete_comment and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

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

  • A tool name or description contains a deletion term.

Parent server

uiverify.ai

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

.mcp.json

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

Settings → Connectors → Add custom connector

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

.vscode/mcp.json

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

Client-specific MCP configuration

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

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

Related tools

  • list_builds — Recent UI Verify builds for your project, newest first.
  • get_build — Triage one build, resolved by commitSha, prNumber, or buildId (exactly one).
  • list_build_stories — Page through one build's stories filtered by status (resolved by commitSha/prNumber/buildId).
  • get_pr_changeset — The cumulative 'this PR vs base' visual changeset (resolved by commitSha/prNumber/buildId) - what the whole PR does to the UI versus the branch it merges into, INDEPENDENT of what is left to review on the latest build.
  • list_comments — Every review comment on a build's changed stories (resolved by commitSha/prNumber/buildId), each carrying its diffResultId, author (human name or 'agent'), body, createdAt, and anchor - where on the candidate image it points: null (whole diff), {type:'point',x,y}, {type:'rect',x,y,w,h}, or {type:'path',points,closed}, all normalized 0..1 to the candidate image.
  • list_pr_stories — Page through the PR-vs-base changeset stories of one kind (resolved by commitSha/prNumber/buildId) - use it to read past get_pr_changeset's first page.
  • get_diff — Per-story diff detail for a build (resolved by commitSha/prNumber/buildId).
  • render_diff_image — Fetch a story's image as an INLINE image (base64 pixels, not a URL) so a vision model can look at it directly.