Skip to content
VS Code

AIMarket MCP Packager for VS Code

io.github.alexar76/aimarket-plugins

Stdio MCP packager: AIMarket hub plugins into self-hosted MCP server products.

client:VS Code transport:stdio runtime:pypi

Install AIMarket MCP Packager in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "aimarket-hub-url",
      "description": "AIMARKET_HUB_URL",
      "password": true
    }
  ],
  "servers": {
    "aimarket-plugins": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "aimarket-mcp-packager"
      ],
      "env": {
        "AIMARKET_HUB_URL": "${input:aimarket-hub-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

AIMarket MCP Packager in other clients