Setting Up MCP in Cursor
This guide walks you through configuring Cursor to use the Agent Interviews MCP server, allowing you to access your interview data directly from your coding environment.
Prerequisites
- An Agent Interviews account with API access
- Your Agent Interviews API key
- Cursor installed on your computer
Step 1: Get Your API Key
- Log in to your Agent Interviews account
- Navigate to Settings → API Keys
- Generate a new API key if you don't already have one
- Copy the API key - you'll need it for the configuration
Step 2: Configure Cursor
- Open Cursor
- Go to Settings (gear icon in the bottom left)
- Select "MCP" from the settings menu
- Click "Add Server"
- Add the following configuration:
{
"mcpServers": {
"AgentInterviews": {
"command": "npx",
"args": [
"-y",
"mcp-remote@latest",
"https://api.agentinterviews.com/mcp",
"--header",
"Authorization:${API_KEY}"
],
"env": {
"API_KEY": "Api-Key YOUR_API_KEY_HERE"
}
}
}
}
- Replace
YOUR_API_KEY_HERE
with your actual API key - Save the configuration
Step 3: Verify the Connection
- Open a new chat with Claude in Cursor
- Type "Check MCP tools"
- Ask "What Agent Interviews tools are available?"
- Claude should respond with information about the available tools
Using MCP in Cursor
Once configured, you can interact with your Agent Interviews data by asking Claude questions about your interviews, projects, and more. For example:
- "Show me my recent interviews"
- "Get the transcript from my interview with candidate X"
- "What's the status of project Y?"
Claude will use the appropriate Agent Interviews MCP tools to retrieve the information you need.
Troubleshooting
If you encounter issues with the MCP connection:
- Verify your API key is correct
- Ensure your account has API access enabled
- Check your internet connection
- Try restarting Cursor
- Make sure your API key has the necessary permissions
If problems persist, contact Agent Interviews support for assistance.