Qodo Documentation
HomepageBlogCommunityGet Started
  • Overview
  • Qodo Gen
  • Qodo Cover
  • Qodo Portal
  • Administrators Actions
  • Administrators Actions
  • How to Connect Company Codebase to Bitbucket Data Center
  • How to Add Repositories to Company Codebase (RAG) Index
  • Install Qodo Gen Agentic Mode for On Prem environments
  • How to Add Agentic Tools (MCPs) to an Organization
Powered by GitBook
LogoLogo

Terms and Privacy

  • Terms of Use
  • Privacy Policy
  • Data Processing

© 2025 Qodo. All Rights Reserved.

On this page

Was this helpful?

How to Add Agentic Tools (MCPs) to an Organization

Enterprise organizations can govern Agentic Tools (MCPs) usage in Qodo Gen, by using a pre-defined MCP allow-list.

How to use an MCP Allow List

  1. Reach out to Qodo to enable the MCP Allow List mode.

  2. Modify the Helm values file to include the necessary configurations:

secrets:
  org-mcp-json:
    data:
      org_mcp.json: |
        {
          "mcpServers": {}
        }

volumes:
  org-mcp-json:
    secret:
      secretName: org-mcp-json
      useShortName: true

volumeMounts:
  org-mcp-json:
    mountPath: /copilot_proxy/settings/org_mcp.json
    subPath: org_mcp.json

Note: The JSON file org_mcp.json is any JSON file configuration for the MCP you want to add to your organization.

For example:

{
  "mcpServers": {
    "test": {
      "command": "npx",
      "args": [
        "-y",
        "iterm-mcp"
      ]
    }
  }
}
  1. Run helm upgrade and wait until Qodo Gen backend is up.

  2. When the developers in your organization next log in to Qodo, they will be able to view the Organization's approved MCP list.

PreviousInstall Qodo Gen Agentic Mode for On Prem environments

Last updated 7 days ago

Was this helpful?