Best Developer Tools MCP Servers for VS Code / GitHub Copilot
Connect developer tools tools to VS Code / GitHub Copilot using MCP servers. These servers let VS Code / GitHub Copilot interact with developer tools resources, enabling powerful AI-assisted workflows for developers.
MCPgee indexes 7,625 developer tools MCP servers with a median of 37 GitHub stars; 75% are written in typescript and 21% install via npm. All work with VS Code / GitHub Copilot.
Top 30 of 7,625 Developer Tools Servers for VS Code / GitHub Copilot
Ecc MCP Server
The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Javaguide MCP Server
Java 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
gemini-cli-mcp
A secure MCP server that wraps the Google Gemini CLI, allowing clients to query Gemini models using local OAuth sessions without requiring an API key. It provides tools for model interaction and diagnostics with built-in protection against command in
Awesome Mcp Servers MCP Server
⭐ Curated list of Model Context Protocol (MCP) servers - tools that extend Claude Desktop, Cursor, Windsurf, and other MCP clients with custom capabilities.
Servers MCP Server
Model Context Protocol Servers
Cc Switch MCP Server
A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io
Awesome Claude Skills MCP Server
A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows
Context7 MCP
A Model Context Protocol server that fetches up-to-date, version-specific documentation and code examples from libraries directly into LLM prompts, helping developers get accurate answers without outdated or hallucinated information.
Ai Engineering Hub MCP Server
In-depth tutorials on LLMs, RAGs and real-world AI agent applications.
Composio MCP Server
Composio powers 1000+ toolkits, tool search, context management, authentication, and a sandboxed workbench to help you build AI agents that turn intent into action.
Repomix
Repomix MCP Server enables AI models to efficiently analyze codebases by packaging local or remote repositories into optimized single files, with intelligent compression via Tree-sitter to significantly reduce token usage while preserving code struct
FastMCP
A collection of MCP servers providing utilities including user greeting, message decoding, text file reading with PDF summary generation, and NASA-quality code auditing using a trained AI model to predict software defects and measure code complexity.
Python Sdk MCP Server
Python SDK for protecting MCP servers and OAuth 2.1 resource servers with tokens issued by the Authplane authorization server. Includes framework adapters (e.g. MCP, FastMCP).
Claude Plugins Official MCP Server
Official, Anthropic-managed directory of high quality Claude Code Plugins.
Hyperframes MCP Server
Write HTML. Render video. Built for agents.
Code Review Graph MCP Server
Local knowledge graph for Claude Code. Builds a persistent map of your codebase so Claude reads only what matters — 6.8× fewer tokens on reviews and up to 49× on daily coding tasks.
Plate MCP Server
Rich-text editor with AI and shadcn/ui
Mcp For Beginners MCP Server
This open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques fo
Figma MCP Server
Enables AI assistants to read Figma design files and automatically map responsive relationships between mobile and desktop screens to generate accurate frontend code. Eliminates manual copy-pasting by providing direct access to design tokens, dimensi
Figma Context Mcp MCP Server
MCP server to provide Figma layout information to AI coding agents like Cursor
Ai Guide MCP Server
程序员鱼皮的 AI 资源大全 + Vibe Coding 零基础教程,分享 OpenClaw 保姆级教程、大模型玩法(DeepSeek / GPT / Gemini / Claude)、最新 AI 资讯、Prompt 提示词大全、AI 知识百科(Agent Skills / RAG / MCP / A2A)、AI 编程教程(Harness Engineering)、AI 工具用法(Cursor / Claude Code / TRAE / Codex / Copilot)、AI 开发框架教程(S
Easy Vibe MCP Server
💻 vibe coding 2026 | Your first modern Coding course for beginners to master step by step.
Skill Seekers
🐍 🏠 🍎 🪟 🐧 - Transform 17 source types (docs, GitHub repos, PDFs, video
Typescript Sdk MCP Server
The official TypeScript SDK for Model Context Protocol servers and clients
Awesome Ai Apps MCP Server
A collection of projects showcasing RAG, agents, workflows, and other AI use cases
FastAPI-MCP
Exposes FastAPI endpoints as Model Context Protocol (MCP) tools while preserving existing authentication, schemas, and documentation. It enables seamless integration of FastAPI services into MCP ecosystems using a native ASGI transport layer.
Chrome MCP Server
An extension-based MCP server that enables AI assistants to control your browser, leveraging existing sessions and login states for automation and content analysis. It provides over 20 tools for semantic tab search, interactive element manipulation,
Gemini MCP Server
Enables comprehensive codebase analysis using Google's Gemini CLI and its massive context window. Supports file/directory analysis, security audits, architecture analysis, feature verification, and complete project overviews for large codebases that
Claude Context
Claude Context is an MCP plugin that adds semantic code search to Claude Code and other AI coding agents, giving them deep context from your entire codebase.
Ai Engineering From Scratch MCP Server
Learn it. Build it. Ship it for others.
VS Code / GitHub Copilot Configuration
Add developer tools MCP servers to your VS Code / GitHub Copilot configuration at .vscode/settings.json:
{
"github.copilot.chat.mcp.servers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "."]
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_your_token_here"
}
},
"postgres": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-postgres", "postgresql://localhost:5432/mydb"]
},
"brave-search": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "your_brave_api_key_here"
}
},
"memory": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"]
}
}
}