Integrations
Install Flinchify wherever your AI agent lives. One API key, real human testing from any platform.
ChatGPT
GPT StoreCustom GPT with Actions. Ask ChatGPT to test your app and it creates a real human test job.
Create a Custom GPT → Add Action → Import from URL → paste: https://flinchify.com/.well-known/openapi.json → Add your API key as Bearer auth.
Claude Desktop
MCPMCP server integration. Claude can create tests, check results, and manage credits — all through natural conversation.
npm install -g flinchify-mcp
Add to claude_desktop_config.json:
{
"mcpServers": {
"flinchify": {
"command": "npx",
"args": ["flinchify-mcp"],
"env": { "FLINCHIFY_API_KEY": "fk_..." }
}
}
}Cursor
MCPMCP integration for Cursor IDE. Your coding agent requests human testing mid-workflow and reads structured results to fix issues.
Add to .cursor/mcp.json:
{
"mcpServers": {
"flinchify": {
"command": "npx",
"args": ["flinchify-mcp"],
"env": { "FLINCHIFY_API_KEY": "fk_..." }
}
}
}Grok
OpenAPIOpenAPI Actions integration. Grok can call the Flinchify API to create tests and retrieve results.
Use the OpenAPI spec at https://flinchify.com/.well-known/openapi.json with your API key as Bearer auth.
CLI / Terminal
npmInstall globally with npm. Works with any AI coding agent that can run shell commands — Codex, Replit Agent, Bolt, or custom setups.
npm install -g flinchify flinchify init flinchify test https://myapp.com --testers 3 --budget 10
REST API
APIDirect HTTP integration for custom agents, CI/CD pipelines, or any platform. Full OpenAPI 3.1 spec available.
curl -X POST https://flinchify.com/api/v1/tests \
-H "Authorization: Bearer fk_..." \
-H "Content-Type: application/json" \
-d '{"url":"https://myapp.com","testers":3}'All integrations use the same API key. Get yours from the dashboard.