What is the rendercheck MCP server?
Check generated audio, video and stills for defects. Returns a verdict, not more media.
How to install rendercheck
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
ANTHROPIC_API_KEYsecretOnly for the optional `looks ok` vision check. Every other check is deterministic and needs no key.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"rendercheck": {
"command": "uvx",
"args": [
"rendercheck",
"mcp"
],
"env": {
"ANTHROPIC_API_KEY": "<YOUR_ANTHROPIC_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"rendercheck": {
"command": "uvx",
"args": [
"rendercheck",
"mcp"
],
"env": {
"ANTHROPIC_API_KEY": "<YOUR_ANTHROPIC_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"rendercheck": {
"command": "uvx",
"args": [
"rendercheck",
"mcp"
],
"env": {
"ANTHROPIC_API_KEY": "<YOUR_ANTHROPIC_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"rendercheck": {
"type": "stdio",
"command": "uvx",
"args": [
"rendercheck",
"mcp"
],
"env": {
"ANTHROPIC_API_KEY": "<YOUR_ANTHROPIC_API_KEY>"
}
}
}
}Claude Code
claude mcp add rendercheck --env ANTHROPIC_API_KEY=<YOUR_ANTHROPIC_API_KEY> -- uvx rendercheck mcpRelated MCP servers
darwin-memo
Active
Self-curating agent memory kept honest by survival-based selection over measured outcomes.
0
View repository →Python
MIT