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.
You will need a CheckView Personal Access Token:
cvpat_ value. You will not be able to see it again.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”.
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"
}
}
}
}
npx downloads and runs the server automatically.@checkview/mcp-server.