Skip to content
| Marketplace
Sign in
Visual Studio Code>AI>AI Dev MCPNew to Visual Studio Code? Get it now.
AI Dev MCP

AI Dev MCP

Kush Patel

|
2 installs
| (1) | Free
Connect VS Code to your self-hosted AI coding agent. Runs Qwen2.5 locally via Ollama — no cloud, no tokens, full codebase access.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

AI Dev MCP

Run AI coding tasks against your own codebase — locally, privately, with no cloud API costs.

AI Dev MCP connects VS Code to a self-hosted coding agent powered by Qwen2.5-Coder running on Ollama. Your code never leaves your machine.


How it works

You type a prompt in VS Code
        ↓
Extension sends it to your server (POST /run)
        ↓
Qwen2.5-Coder reads your files, makes changes, commits
        ↓
Live output streams back to VS Code

Features

  • Full codebase access — the agent reads and edits your actual project files
  • Auto-detects project type — Spring Boot, Liferay, React, Next.js, Django, Odoo, Go, and more
  • One-click setup — just enter your server URL and API key
  • Live streaming — watch every step as it happens in the output panel
  • Context injection — select code before running and it’s automatically included in the prompt
  • Single commit — all changes land in one git commit with your chosen message
  • No cloud required — 100% local, runs on your own hardware
  • Keyboard shortcut — Ctrl+Shift+M to run from anywhere

Requirements

You need to run the AI Dev MCP server yourself. It takes about 10 minutes to set up:

  1. Install Node.js 20+, Ollama, and ChromaDB
  2. Pull the model: ollama pull qwen2.5-coder:7b
  3. Clone and start the server:
    git clone https://github.com/Kp2340/MCP
    cd MCP
    npm install
    cp .env.example .env   # edit: set API_KEY
    node src/index.js
    
  4. The server runs on http://localhost:3001 by default

See the full setup guide for team/network deployment.


Extension setup

After installing this extension, open VS Code Settings (Ctrl+,) and search aidevmcp:

Setting Description Example
aidevmcp.baseUrl Your server URL http://localhost:3001
aidevmcp.apiKey API key from your server .env my-secret-key
aidevmcp.defaultProject Leave empty (auto-detected) (blank)

Usage

Run a task:

  1. Open a project folder in VS Code
  2. Press Ctrl+Shift+M (or right-click → MCP: Run AI Prompt)
  3. Confirm the project name (auto-detected from folder name)
  4. Type your prompt, e.g.:
    • Analyse the project and fix any minor issues, commit as "Issues fixed"
    • Add a REST endpoint for user search
    • Refactor the auth module to use JWT
  5. Watch the AI Dev MCP output panel for live progress

Select code for context: Highlight any code before running a prompt — it gets injected automatically.

Commands (Ctrl+Shift+P):

  • MCP: Run AI Prompt — run a task
  • MCP: Check Job Status — check a running job by ID
  • MCP: List All Jobs — see job history
  • MCP: Queue Status — see the job queue depth

Supported project types

Project type Detected from
Spring Boot pom.xml
Liferay build.gradle + liferay references
React / Vite package.json + vite dependency
Next.js package.json + next dependency
Node.js package.json
Django manage.py
Odoo manage.py + __manifest__.py
Python requirements.txt / setup.py
Go go.mod
Rust Cargo.toml

Privacy

Your code is processed entirely on your own machine or your team’s private server. Nothing is sent to any external AI service. The extension only communicates with the server URL you configure.


Links

  • GitHub — server source code
  • Issues and feature requests
  • Ollama
  • Qwen2.5-Coder
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft