Awesome Cursor
About
Built for Cursor, integrates screenshot capture, web page structure analysis, and code review capabilities for automated UI testing, web scraping, and code quality checks.
Details
- Author
- kleneway
- Repository
- kleneway/awesome-cursor-mpc-server
- GitHub stars
- 281
- Downloads
- 633
- License
- MIT License
- Categories
- Productivity, Developer Tools, Design, Workplace, AI, API, Infrastructure, Frontend
Jump to
- Code Architect – generates plans and instructions using advanced reasoning LLMs
- Screenshot Buddy – takes UI design screenshots and uses them with the composer agent
- Code Review – uses git diffs to trigger code reviews
- Simple environment setup with API keys in src/env/keys.ts
- Integrates directly into Cursor’s composer interface
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Awesome CursorCommand (node, npx, python, etc.)nodeArguments-
Argument 1
/path/to/your/project/dist/index.js
Environment-
OPENAI_API_KEY
your_key_here
Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
-
Argument 1
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
First, you'll need to set up your environment variables. Create a file at src/env/keys.ts:
export const OPENAI_API_KEY = "your_key_here";
// Add any other keys you need
> ⚠️ Security Note: Storing API keys directly in source code is not recommended for production environments. This is only for local development and learning purposes. You can set the env var inline in the Cursor MCP interface as well.
```bash
npm install
Code Architect
Call advanced reasoning LLMs to generate plans and instructions for coding agents.
Screenshot Buddy
Take UI design screenshots and use them with the composer agent.
Code Review
Use git diffs to trigger code reviews.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"awesome cursor": {
"env": {
"OPENAI_API_KEY": "your_key_here"
},
"args": [
"/path/to/your/project/dist/index.js"
],
"command": "node"
}
}
}
Linux
{
"env": {
"OPENAI_API_KEY": "your_key_here"
},
"args": [
"/path/to/your/project/dist/index.js"
],
"command": "node"
}
Macos
{
"env": {
"OPENAI_API_KEY": "your_key_here"
},
"args": [
"/path/to/your/project/dist/index.js"
],
"command": "node"
}
Windows
{
"env": {
"OPENAI_API_KEY": "your_key_here"
},
"args": [
"/path/to/your/project/dist/index.js"
],
"command": "node"
}
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





