Skip to content

Products

Compliance Officer Service Expert-led compliance, end to end Compliance Portal Share security documents securely Open-source platform Deploy Probo on your own infrastructure

Resources

Probo stories How teams get compliant with Probo Blog Ideas and guidance from the Probo team Guides & tools Practical compliance guides and free tools Love from Customers What customers say about working with Probo Changelog Latest product updates Download Get the Probo Agent

Company

About The people and vision powering Probo Careers Join the team building Probo Brand assets Official logos and visual resources Security Review our security and compliance posture
Overview Understand Probo and its core concepts Product Explore Probo's GRC capabilities Developers Explore GraphQL, CLI, MCP, n8n, and webhooks Deployment Probo Cloud, self-hosting, and configuration

Explore

GitHub Explore our open-source compliance tools

Visual Studio Code

Connect VS Code and GitHub Copilot to the Probo MCP server

View as Markdown

Visual Studio Code supports remote MCP servers natively. Connect GitHub Copilot agent mode directly to Probo with an HTTP server configuration.

  • A current version of Visual Studio Code
  • GitHub Copilot with agent mode enabled
  • Access to a Probo instance
  • A scoped Probo OAuth token

Choose the endpoint for your Probo environment:

Environment MCP URL
Probo US https://us.probo.com/api/mcp/v1
Probo EU https://eu.probo.com/api/mcp/v1
Custom https://your-probo-instance.com/api/mcp/v1

The /v1 segment is required.

  1. Create a Probo OAuth token

    In Probo, open your account menu, select OAuth tokens, and create a scoped token named VS Code. See Authentication for scope and expiration guidance.

  2. Choose the configuration scope

    • Create .vscode/mcp.json for a workspace connection.
    • Run MCP: Open User Configuration from the Command Palette for a connection available in every workspace.
  3. Add the remote server

    {
    "servers": {
    "probo": {
    "type": "http",
    "url": "https://us.probo.com/api/mcp/v1",
    "headers": {
    "Authorization": "Bearer ${input:probo-api-token}"
    }
    }
    },
    "inputs": [
    {
    "type": "promptString",
    "id": "probo-api-token",
    "description": "Probo OAuth token",
    "password": true
    }
    ]
    }

    Replace the URL if you use the EU region or a self-hosted instance. VS Code stores the prompted secret separately instead of writing it into the workspace file.

  4. Start the server

    Save mcp.json, then use the Start action shown above the probo configuration. You can also run MCP: List Servers from the Command Palette and select probo.

Open Chat, select Agent, and start with a read-only request:

Use Probo to list the organizations I can access.

VS Code should request the token on first use, ask for tool approval, and then return your Probo organizations. You can also ask:

List the open risks for organization org_xxx.
Summarize overdue compliance tasks without changing anything.

You can commit .vscode/mcp.json when it uses an input variable. Do not replace ${input:probo-api-token} with a literal token.

Each collaborator supplies their own token, so Probo continues to enforce that person’s organization access and role.

  • Confirm the workspace file is .vscode/mcp.json.
  • Confirm the top-level property is servers, not mcpServers.
  • Validate the JSON and run MCP: List Servers.
  • Run MCP: Reset Cached Tools or stop and restart the server, then enter a valid token.
  • Confirm the header begins with Bearer .
  • Generate a new token if the existing token was revoked or expired.

Confirm that the URL ends in /api/mcp/v1. The unversioned /api/mcp route is not a valid Probo MCP endpoint.

  • Confirm the server is running with MCP: List Servers.
  • Confirm your Probo role can access the requested organization and operation.
  • Test the same endpoint with the MCP Inspector.

For VS Code-specific configuration behavior, see the VS Code MCP server documentation.