I craft unique cereal names, stories, and ridiculously cute Cereal Baby images.

MCP-Server-VScode-Extensions
Herramienta MCP para instalar automáticamente las extensiones de código VS en el cursor
1
Github Watches
1
Github Forks
0
Github Stars
MCP Server: VS Code Extensions Installer
A Model Context Protocol (MCP) server for automatically installing VS Code extensions in Cursor IDE.
Features
- Natural language search for VS Code extensions
- Smart ranking based on installs and ratings
- Automatically downloads and installs VS Code extensions from the official marketplace
- Handles gzipped VSIX files correctly
- Validates downloaded extensions before installation
- Installs extensions to the correct Cursor extensions directory
Installation
npm install mcp-server-vscode-extensions
Usage
- Start the MCP server:
npm start
- Search for extensions using natural language:
const result = await mcpClient.call('search_extensions', {
query: 'sqlite database viewer and editor'
});
// Result example:
{
success: true,
extensions: [
{
publisher: "qwtel",
extensionName: "sqlite-viewer",
displayName: "SQLite Viewer",
version: "0.1.5",
description: "SQLite Viewer and Editor",
installs: 500000,
rating: 4.8,
installCommand: {
publisher: "qwtel",
extension: "sqlite-viewer",
version: "0.1.5"
}
},
// ... more extensions
]
}
- Install a specific extension:
const result = await mcpClient.call('install_extension', {
publisher: 'vsls-contrib',
extension: 'gistfs',
version: '0.7.0'
});
API
search_extensions
Search for VS Code extensions using natural language queries.
Parameters:
-
query
: Natural language description of the extension you're looking for (e.g., 'sqlite database viewer')
Returns:
{
success: boolean;
extensions?: Array<{
publisher: string;
extensionName: string;
displayName: string;
version: string;
description: string;
installs: number;
rating: number;
installCommand: {
publisher: string;
extension: string;
version: string;
}
}>;
message?: string;
}
install_extension
Installs a VS Code extension in Cursor.
Parameters:
-
publisher
: The publisher of the extension (e.g., 'vsls-contrib') -
extension
: The name of the extension (e.g., 'gistfs') -
version
: The version of the extension (e.g., '0.7.0')
Returns:
{
success: boolean;
message: string;
path: string | null;
}
Development
- Clone the repository:
git clone https://github.com/siliconuy/mcp-server-vscode-extensions.git
- Install dependencies:
npm install
- Build the project:
npm run build
- Start in development mode:
npm run dev
License
MIT
相关推荐
Evaluator for marketplace product descriptions, checks for relevancy and keyword stuffing.
I find academic articles and books for research and literature reviews.
Confidential guide on numerology and astrology, based of GG33 Public information
Converts Figma frames into front-end code for various mobile frameworks.
Advanced software engineer GPT that excels through nailing the basics.
Take an adjectivised noun, and create images making it progressively more adjective!
Descubra la colección más completa y actualizada de servidores MCP en el mercado. Este repositorio sirve como un centro centralizado, que ofrece un extenso catálogo de servidores MCP de código abierto y propietarios, completos con características, enlaces de documentación y colaboradores.
Manipulación basada en Micrypthon I2C del expansor GPIO de la serie MCP, derivada de AdaFruit_MCP230xx
Espejo dehttps: //github.com/agentience/practices_mcp_server
Una puerta de enlace de API unificada para integrar múltiples API de explorador de blockchain similar a Esterscan con soporte de protocolo de contexto modelo (MCP) para asistentes de IA.
La aplicación AI de escritorio todo en uno y Docker con trapo incorporado, agentes de IA, creador de agentes sin código, compatibilidad de MCP y más.
Reviews

user_EvwZ5q6w
I've been using the mcp-server-vscode-extensions from siliconuy, and it's an absolute game-changer for my development workflow. The integration with VS Code is seamless, and it significantly enhances productivity with its powerful features. Highly recommend checking it out at https://github.com/siliconuy/mcp-server-vscode-extensions!