Autousers

VS Code + GitHub Copilot

Connect Autousers to VS Code via GitHub Copilot MCP support.

Project-level config

Create .vscode/mcp.json at the root of your workspace.

{
  "servers": {
    "autousers": {
      "type": "http",
      "url": "https://mcp.autousers.ai/mcp"
    }
  }
}

.vscode/mcp.json (workspace-level)

User-level config

To enable Autousers in all workspaces, edit your user-level MCP config.

  • macOS/Linux: ~/.config/Code/User/mcp.json
  • Windows: %APPDATA%\Code\User\mcp.json
{
  "servers": {
    "autousers": {
      "type": "http",
      "url": "https://mcp.autousers.ai/mcp"
    }
  }
}

User-level mcp.json

VS Code will trigger an OAuth browser flow on first tool use. Sign in with your Autousers account and approve the scopes.

infoFor API key auth, add a "headers" block: { "Authorization": "Bearer YOUR_KEY" } inside the autousers server object.
Was this article helpful?