AI Development Assistant

v1.0.0Coding Agentsstable

A Cursor-compatible toolkit that provides intelligent coding assistance through custom AI tools for code architecture planning, screenshot analysis, code review, and file reading capabilities.

ai-development-assistant-mcp-servermcpai-integration
Share:
337
Stars
0
Downloads
0
Weekly
0/5

What is AI Development Assistant?

AI Development Assistant is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to cursor-compatible toolkit that provides intelligent coding assistance through custom ai tools for code architecture planning, screenshot analysis, code review, and file reading capabilities.

A Cursor-compatible toolkit that provides intelligent coding assistance through custom AI tools for code architecture planning, screenshot analysis, code review, and file reading capabilities.

This server falls under the Coding Agents category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • A Cursor-compatible toolkit that provides intelligent coding

Use Cases

Get coding assistance in Cursor.
Analyze screenshots and architecture.
Review code with AI tools.
kleneway

Maintainer

LicenseMIT License
Languagetypescript
Versionv1.0.0
UpdatedMay 15, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx ai-development-assistant-mcp-server

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use AI Development Assistant

AI Development Assistant MCP Server is a Cursor-compatible toolkit that enhances AI-assisted coding workflows with three specialized tools: a Code Architect that leverages advanced reasoning models to generate implementation plans and instructions for coding agents, a Screenshot Buddy that analyzes UI design screenshots and passes them to the composer agent for implementation guidance, and a Code Review tool that uses git diffs to trigger structured code reviews. It is designed to be used as an MCP server within Cursor's composer workflow.

Prerequisites

  • Node.js 18 or higher and npm (or yarn) installed
  • Cursor AI editor installed (cursor.sh) for the primary MCP integration
  • An OpenAI API key for the AI-powered Code Architect and Code Review tools
  • Git installed (required by the Code Review tool for generating diffs)
1

Clone the repository

Clone the AI Development Assistant MCP Server from GitHub. Note: this shares its repository with the Awesome Cursor MPC project.

git clone https://github.com/kleneway/awesome-cursor-mpc-server.git
cd awesome-cursor-mpc-server
2

Install dependencies

Install Node.js dependencies using npm or yarn.

npm install
# or
yarn install
3

Configure your OpenAI API key

Create src/env/keys.ts and add your OpenAI API key. This key is used by the Code Architect's reasoning model and the Code Review tool.

// src/env/keys.ts
export const OPENAI_API_KEY = "your_openai_api_key_here";
4

Build the server

Compile the TypeScript source files to generate the dist/index.js entry point that Cursor will invoke.

npm run build
5

Add the server to Cursor's MCP configuration

In Cursor, open Settings > MCP and add the server entry pointing to the compiled dist/index.js. Restart Cursor to load the new tools.

{
  "mcpServers": {
    "ai-development-assistant": {
      "command": "node",
      "args": ["/absolute/path/to/awesome-cursor-mpc-server/dist/index.js"]
    }
  }
}
6

Configure .cursorrules for automatic tool invocation

Optionally add a .cursorrules file to your project to instruct Cursor to automatically invoke these tools in relevant scenarios, such as calling Code Review before every commit.

AI Development Assistant Examples

Client configuration (Cursor MCP settings)

Cursor MCP configuration entry for the AI Development Assistant MCP Server.

{
  "mcpServers": {
    "ai-development-assistant": {
      "command": "node",
      "args": ["/absolute/path/to/awesome-cursor-mpc-server/dist/index.js"]
    }
  }
}

Prompts to try

Example prompts for the AI Development Assistant tools in Cursor's composer.

- "Use the Code Architect to plan how to add OAuth2 login to my Express app"
- "Analyze this Figma screenshot and generate the React component implementation"
- "Run a code review on my current git changes before I open a PR"
- "Help me architect a microservices migration plan for this monolith"
- "Review this code for security vulnerabilities using the Code Review tool"

Troubleshooting AI Development Assistant

Code Review tool reports no changes or empty diff

The Code Review tool uses git diff to detect changes. Ensure you have uncommitted changes in a git repository and that git is installed and accessible on your PATH. Run 'git diff' in your terminal to verify changes are visible.

Screenshot Buddy does not process images correctly

Ensure the image file path passed to Screenshot Buddy is an absolute path and the file is a supported format (PNG, JPG). The tool passes images to the OpenAI vision API, so verify your OPENAI_API_KEY has access to vision-capable models.

Server not loading in Cursor after configuration

Double-check the absolute path to dist/index.js in your Cursor MCP settings. Run 'node /path/to/dist/index.js' manually in a terminal to see startup errors. Rebuild with 'npm run build' if the dist directory is missing or stale.

Frequently Asked Questions about AI Development Assistant

What is AI Development Assistant?

AI Development Assistant is a Model Context Protocol (MCP) server that cursor-compatible toolkit that provides intelligent coding assistance through custom ai tools for code architecture planning, screenshot analysis, code review, and file reading capabilities. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install AI Development Assistant?

Follow the installation instructions on the AI Development Assistant GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with AI Development Assistant?

AI Development Assistant works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is AI Development Assistant free to use?

Yes, AI Development Assistant is open source and available under the MIT License license. You can use it freely in both personal and commercial projects.

Browse More Coding Agents MCP Servers

Explore all coding agents servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "ai-development-assistant-mcp-server": { "command": "npx", "args": ["-y", "ai-development-assistant-mcp-server"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use AI Development Assistant?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides