Connect Pie to Your AI Workspace
Access Pie’s testing data directly from Claude, ChatGPT, or any MCP-compatible platform. Analyze test results, import test cases from CSV, find duplicates, manage issues, and generate reports—all through natural conversation.
Setup Guide
Step 1: Generate Your API Key
- Log in to app.pie.inc
- Go to Settings → API Keys
- Click + Create API Key
- Name your key (e.g., “Claude Integration”) and click Create
- Copy the key immediately—you won’t see it again
- Click Done to acknowledge you’ve copied the key

Step 2: Configure Your Platform
Choose your platform and follow the configuration steps:
Claude Desktop
- Open Claude Desktop → Settings → Developer → Edit Config
- Add Pie to your configuration file:
{
"mcpServers": {
"pie": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.pie.inc",
"--header",
"X-API-Key: YOUR_API_KEY_HERE"
]
}
}
}Note: Windows users should replace “npx” with “npx.cmd”
For multiple Pie apps:
{
"mcpServers": {
"pie-staging": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.pie.inc",
"--header",
"X-API-Key: STAGING_API_KEY"
]
},
"pie-production": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.pie.inc",
"--header",
"X-API-Key: PRODUCTION_API_KEY"
]
}
}
}- Save the file
- Quit Claude completely (not just close the window) and restart

Cursor
- Open Cursor settings and navigate to the MCP configuration file
- Add Pie to your configuration:
{
"mcpServers": {
"pie": {
"url": "https://mcp.pie.inc",
"headers": {
"X-API-Key": "YOUR_API_KEY_HERE"
}
}
}
}- Save the file and restart Cursor
VS Code
- Open VS Code settings and locate the MCP servers configuration
- Add Pie to your configuration:
{
"servers": {
"pie": {
"url": "https://mcp.pie.inc?api_key=YOUR_API_KEY_HERE"
}
}
}Note: The API key is passed as a URL parameter in VS Code configuration.
- Save the file and reload VS Code
Claude Code (CLI)
Run this command in your terminal:
claude mcp add --transport http pie https://mcp.pie.inc \
--header "X-API-Key: YOUR_API_KEY_HERE"Replace YOUR_API_KEY_HERE with the API key you copied from Pie.
Step 3: Test Your Connection
Open your AI platform and type:
Fetch PieYou should see an overview of your app including test runs, coverage, and active issues.

Available Functions
Pie’s MCP integration provides powerful functions across four main categories. Each function is designed to streamline your testing workflow through natural conversation.
Quick Function Overview
Test Case Management: Find duplicates, import from CSV, check execution issues, expand coverage
Key Features: View all features, get feature tests, archive features
Issue Management: Review issues, find duplicates, bulk reject, cross-run analysis
Reporting: Weekly summaries, coverage analysis, trend analysis
For detailed commands and usage examples, see the Complete Function Reference.
Need Help?
- Documentation: docs.pie.inc
- Troubleshooting: MCP Troubleshooting
- Support: support@pie.inc