Skip to content
VS Code

url manager mcp for VS Code

io.github.piccolo123/url-manager-mcp

Agent-first bookmark management with auto-registration, categories, tags, and shared collections.

client:VS Code transport:stdio runtime:pypi

Install url manager mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "footprints-endpoint",
      "description": "FOOTPRINTS_ENDPOINT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "footprints-token",
      "description": "FOOTPRINTS_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "url-manager-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "url-manager-mcp"
      ],
      "env": {
        "FOOTPRINTS_ENDPOINT": "${input:footprints-endpoint}",
        "FOOTPRINTS_TOKEN": "${input:footprints-token}"
      }
    }
  }
}

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

url manager mcp in other clients