Labsco
yeakub108 logo

AI Development Assistant MCP Server

โ˜… 13

from yeakub108

An AI assistant for development tasks, including taking screenshots, architecting solutions, and performing code reviews.

๐Ÿ”ฅโœ“ VerifiedFreeQuick setup

๐Ÿค– 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.


๐Ÿ› ๏ธ 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.


๐Ÿ“ 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