Skip to content
VS Code

cli market world for VS Code

io.github.treevu-ai/cli-market-world

Commerce for AI agents. 44 MCP tools. 380 retailers (336 verified), 21 countries, 4 platforms.

client:VS Code transport:stdio runtime:pypi

Install cli market world in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "market-api-url",
      "description": "MARKET_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-tool-profile",
      "description": "MCP_TOOL_PROFILE",
      "password": true
    }
  ],
  "servers": {
    "cli-market-world": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "cli-market-world"
      ],
      "env": {
        "MARKET_API_URL": "${input:market-api-url}",
        "MCP_TOOL_PROFILE": "${input:mcp-tool-profile}"
      }
    }
  }
}

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

cli market world in other clients