CheckView MCP Server (Claude Code & Cursor)

The CheckView MCP server lets you manage your tests directly from AI assistants like Claude Code and Cursor. You can create test flows, trigger runs, and read results in plain language, without leaving your editor.

Before you start

You will need a CheckView Personal Access Token:

  1. In the CheckView dashboard, go to Organization Settings → API Tokens.
  2. Click Create token, give it a name (for example “Claude Code”), and copy the cvpat_ value. You will not be able to see it again.

Add it to Claude Code

Run this command, using your token:

claude mcp add checkview \
  --env CHECKVIEW_API_URL=https://api.checkview.io/api/v1 \
  --env CHECKVIEW_API_KEY=cvpat_YOUR_TOKEN \
  -- npx -y @checkview/mcp-server

Then start Claude Code and try a prompt like “List my CheckView websites”.

Add it to Cursor

Open Settings → MCP → Add new server and paste:

{
  "mcpServers": {
    "checkview": {
      "command": "npx",
      "args": ["-y", "@checkview/mcp-server"],
      "env": {
        "CHECKVIEW_API_URL": "https://api.checkview.io/api/v1",
        "CHECKVIEW_API_KEY": "cvpat_YOUR_TOKEN"
      }
    }
  }
}

What you can do

  • Create form and WooCommerce checkout test flows
  • Run tests and read pass or fail results, screenshots, and AI failure summaries
  • Manage websites, schedules, and team members
  • Generate and read UX audit reports
  • Check your monthly test usage

Notes

  • Requires Node.js 18 or newer on your machine. npx downloads and runs the server automatically.
  • Your token carries your account’s permissions, so treat it like a password. You can revoke it any time from Organization Settings → API Tokens.
  • The server is published on npm as @checkview/mcp-server.