Cover image
Try Now
2025-03-13

MCP tool for automatically installing VS Code extensions in Cursor

3 years

Works with Finder

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

  1. Start the MCP server:
npm start
  1. 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
    ]
}
  1. 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

  1. Clone the repository:
git clone https://github.com/siliconuy/mcp-server-vscode-extensions.git
  1. Install dependencies:
npm install
  1. Build the project:
npm run build
  1. Start in development mode:
npm run dev

License

MIT

相关推荐

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

  • Bora Yalcin
  • Evaluator for marketplace product descriptions, checks for relevancy and keyword stuffing.

  • Joshua Armstrong
  • Confidential guide on numerology and astrology, based of GG33 Public information

  • https://suefel.com
  • Latest advice and best practices for custom GPT development.

  • Callycode Limited
  • A geek-themed horoscope generator blending Bitcoin prices, tech jargon, and astrological whimsy.

  • Emmet Halm
  • Converts Figma frames into front-end code for various mobile frameworks.

  • Khalid kalib
  • Write professional emails

  • Elijah Ng Shi Yi
  • Advanced software engineer GPT that excels through nailing the basics.

  • https://maiplestudio.com
  • Find Exhibitors, Speakers and more

  • Lists Tailwind CSS classes in monospaced font

  • apappascs
  • Discover the most comprehensive and up-to-date collection of MCP servers in the market. This repository serves as a centralized hub, offering an extensive catalog of open-source and proprietary MCP servers, complete with features, documentation links, and contributors.

  • ShrimpingIt
  • Micropython I2C-based manipulation of the MCP series GPIO expander, derived from Adafruit_MCP230xx

  • OffchainLabs
  • Go implementation of Ethereum proof of stake

  • huahuayu
  • A unified API gateway for integrating multiple etherscan-like blockchain explorer APIs with Model Context Protocol (MCP) support for AI assistants.

  • deemkeen
  • control your mbot2 with a power combo: mqtt+mcp+llm

    Reviews

    1 (1)
    Avatar
    user_EvwZ5q6w
    2025-04-16

    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!