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

Terms and Privacy

  • Terms of Use
  • Privacy Policy
  • Data Processing

© 2025 Qodo. All Rights Reserved.

On this page
  • How to use an MCP Allow List
  • Add built-in MCP to the entire organization

Was this helpful?

  1. Qodo Gen

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": {
      "memory": {
        "command": "npx",
        "args": [
          "-y",
          "@modelcontextprotocol/server-memory"
        ]
      }
    }
}
  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.

Add built-in MCP to the entire organization

If you'd like to enable the built-in MCP for your entire organization, add the approvedBuiltinMcps section to the MCP JSON:

{
  "mcpServers": {
      "memory": {
        "command": "npx",
        "args": [
          "-y",
          "@modelcontextprotocol/server-memory"
        ]
      }
    },
  "approvedBuiltinMcps": [{
    "name": "Terminal", "enabled": "true"
  }]
}
PreviousInstall Qodo Gen Agentic ModeNextHow to Add Repositories to Company Codebase (RAG) Index

Last updated 13 days ago

Was this helpful?