This guide will help you set up and configure the mcp-use repository for use with Groq and Cursor.
Use the following command to clone the repo:
git clone https://github.com/mcp-use/mcp-use.gitSet up a Python virtual environment in your project directory:
python -m venv venv
source venv/bin/activate # On Windows use: venv\Scripts\activateTo support Groq, a few edits have been made in the codebase replacing OpenAI-specific usage with Groq for added flexibility.
Inside the examples folder, you'll find various configuration files. Choose the appropriate one based on your use case.
Take the selected config (e.g., examples/browser_mcp.json) and paste its content into Cursor's MCP Settings.
📌 Example configuration from
examples/browser_mcp.json:
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": ["@playwright/mcp@latest"],
"env": {
"DISPLAY": ":1"
}
}
}
}Paste this in Cursor settings under the MCP section:
Example:


