AI Development Assistant MCP Server
MCP Server for Windsurf. Contribute to yeakub108/mcp-server development by creating an account on GitHub.
yeakub108
README
🤖 AI Development Assistant MCP Server
Welcome to your AI-powered development toolkit, designed as a Model Context Protocol (MCP) server for Cursor! This project provides intelligent coding assistance through custom AI tools. Note that this is mostly a tutorial demo, and not a production-ready tool.
✨ Features
🎨 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.
📄 Read file & Read multiple files
Single-file reading enables efficient data analysis; multi-file reading facilitates bulk data processing.
</br>
🚀 Getting Started
1. Environment Setup
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.
2. Installation
npm install
# or
yarn install
3. Build the Server
npm run build
4. Open Windsurf Chat and Configure MCP
This project is designed to be used as an MCP server in Cursor. Here's how to set it up:
- Open Windsurf on your system.
- Navigate to the Chat section.
- Click
+ Configure MCP
(this allows you to add a new MCP server). - Add the following JSON configuration:
{
"mcpServers": {
"mcp-server": {
"command": "node",
"args": [
"D:\\mpc-server\\build\\index.js"
]
}
}
}
📘 Pro Tip: You might need to use the full path to your project's built index.js file.
After adding the server, you should see your tools listed under "Available Tools". If not, try clicking the refresh button in the top right corner of the MCP server section.
For more details about MCP setup, check out the Windsurf MCP Documentation.
</br>
🛠️ Using the Tools
Once configured, you can use these tools directly in Cursor's Composer. The AI will automatically suggest using relevant tools, or you can explicitly request them by name or description.
For example, try typing in Composer:
- "Review this code for best practices"
- "Help me architect a new feature"
- "Analyze this UI screenshot"
- "Read single file & Read multiple files"
The agent will ask for your approval before making any tool calls.
📘 Pro Tip: You can update your .cursorrules file with instructions on how to use the tools for certain scenarios, and the agent will use the tools automatically.
</br>
📁 Project Structure
src/
├── tools/
│ ├── architect.ts # Code structure generator
│ ├── screenshot.ts # Screenshot analysis tool
│ ├── fileReader.ts # read file & read multiple files tool
│ └── codeReview.ts # Code review tool
├── env/
│ └── keys.ts # Environment configuration (add your API keys here!)
└── index.ts # Main entry point
Recommended Servers
playwright-mcp
A Model Context Protocol (MCP) server that provides browser automation capabilities using Playwright. This server enables LLMs to interact with web pages through structured accessibility snapshots, bypassing the need for screenshots or visually-tuned models.
Magic Component Platform (MCP)
It's like v0 but in your Cursor/WindSurf/Cline. 21st dev Magic MCP server for working with your frontend like Magic - 21st-dev/magic-mcp
Gitingest-MCP
mcp server for gitingest. Contribute to puravparab/Gitingest-MCP development by creating an account on GitHub.
MCP Package Docs Server
An MCP server that provides LLMs with efficient access to package documentation across multiple programming languages - sammcj/mcp-package-docs
Claude Code MCP
claude-code-mcp. Contribute to auchenberg/claude-code-mcp development by creating an account on GitHub.
@kazuph/mcp-fetch
Contribute to kazuph/mcp-fetch development by creating an account on GitHub.
@kazuph/mcp-taskmanager
Contribute to kazuph/mcp-taskmanager development by creating an account on GitHub.

Linear MCP Server
A server that integrates Linear's project management system with the Model Context Protocol (MCP) to allow LLMs to interact with Linear. - jerhadf/linear-mcp-server
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images - peng-shawn/mermaid-mcp-server
Linear MCP Server
MCP server for Linear (https://linear.app), forked from ibraheem4/linear-mcp (https://github.com/ibraheem4/linear-mcp) - tiovikram/linear-mcp