> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aviatrix.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Configure MCP Server Egress Containment for Self-Hosted MCP Servers

> Step-by-step instructions for applying Aviatrix DCF egress containment to self-hosted MCP servers: prerequisites, cluster onboarding, and authoring containment policies alongside server deployment manifests.

When complete, each self-hosted MCP server will have a workload-scoped
containment policy committed alongside its Kubernetes manifests and enforced at
the VPC boundary by the Aviatrix controller. Containment policies travel through
the same CI/CD pipeline, version control, and review process as the server
definitions they protect.

For the business case and architecture overview, see <a href={"/docs/enterprise/" + "10.1" +
"/solutions/security-for-ai/mcp-server-egress-security"}>MCP Server Security
Through Containment Architecture</a>.

## Prerequisites

* Aviatrix Controller 8.2 or later
* CoPilot 4.31 or later
* <a href={"/docs/enterprise/" + "10.1" + "/guides/security/dcf/dcf-enable-feature"}>DCF for Kubernetes enabled</a>
  with **Log Enrichment** turned on
* A <a href={"/docs/enterprise/" + "10.1" +
  "/guides/platform-administration/cloud-account-create"}>cloud account
  onboarded in CoPilot</a> for the cloud provider hosting the Kubernetes cluster
* MCP servers deployed as Kubernetes workloads via Helm, ArgoCD, Kustomize, or
  `kubectl apply`

## Procedure

<Tabs>
  <Tab title="CoPilot UI">
    <Steps>
      <Step title="Deploy an Aviatrix spoke gateway in the cluster VPC">
        An Aviatrix spoke gateway in the same VPC as your Kubernetes cluster is the
        enforcement point where the Aviatrix controller applies containment policy to
        MCP server egress traffic.

        1. In CoPilot, navigate to **Cloud Fabric > Gateways > Spoke Gateways** and
           click **+ Spoke Gateway**.

        2. Provide the following details:

           | Parameter         | Value                                                                           |
           | ----------------- | ------------------------------------------------------------------------------- |
           | **Name**          | A name for the gateway, for example `mcp-containment-spoke`                     |
           | **Cloud**         | The cloud provider hosting the Kubernetes cluster                               |
           | **Account**       | The cloud account for the cluster                                               |
           | **Region**        | The region where the cluster runs                                               |
           | **VPC/VNet**      | The VPC or VNet where the cluster nodes run — this must match the cluster's VPC |
           | **Instance Size** | Select an instance size appropriate for your environment                        |

        3. In the **Instances** section, select a subnet in the cluster VPC for the
           gateway instance.

        4. Click **Save**.

        Wait for the gateway status to show **Up** before continuing. You can monitor
        progress at **CoPilot > Monitor > Notifications > Tasks**.
      </Step>

      <Step title="Install the Aviatrix Kubernetes Firewall Helm chart">
        The Aviatrix Kubernetes Firewall Helm chart deploys the in-cluster components
        that allow the Aviatrix controller to reconcile and enforce containment policies
        on the cluster.

        Run the following command against the target cluster, replacing
        `<chart-version>` with the current chart version from the
        [Aviatrix k8s-firewall-charts repository](https://aviatrixsystems.github.io/k8s-firewall-charts):

        ```bash theme={null}
        helm install --repo https://aviatrixsystems.github.io/k8s-firewall-charts --version <chart-version> k8s-firewall k8s-firewall
        ```
      </Step>

      <Step title="Verify Aviatrix CRD installation">
        The Helm chart installs two Aviatrix CRDs on the cluster. Verify both are
        present before continuing:

        ```bash theme={null}
        kubectl get crds | grep aviatrix
        ```

        Expected output:

        ```
        firewallpolicies.networking.aviatrix.com        <timestamp>
        webgrouppolicies.networking.aviatrix.com        <timestamp>
        ```

        If either CRD is missing, re-run the Helm installation and check the output for
        errors.
      </Step>

      <Step title="Onboard the Kubernetes cluster to Aviatrix DCF">
        1. Navigate to **Cloud Resources > Cloud Assets > Kubernetes Clusters**.

        2. Click **Onboard** next to the target cluster.

        3. Choose the appropriate access method for your cloud provider:
           * **AWS (EKS):** Select **Terraform** or **Command Line**, apply the
             generated access entry and RBAC configuration, check the confirmation box,
             then click **Onboard**.
           * **Azure (AKS):** Select **Permissions on Cloud Account** if the Aviatrix
             service principal has the required permissions, or **Kubeconfig File** to
             upload a kubeconfig. Click **Onboard**.

        4. Wait for the cluster status to show **Yes** (green) on the Kubernetes
           Clusters tab.

        <Note>
          EKS clusters require a `view-nodes` ClusterRole so the Controller can discover
          node metadata. The CoPilot onboarding dialog generates the required YAML
          automatically — apply it before clicking **Onboard**.
        </Note>
      </Step>

      <Step title="Label MCP server pods">
        Aviatrix containment policies target pods by Kubernetes label selector. Ensure
        each MCP server Deployment includes a unique, consistent label that identifies
        the server.

        The following example uses `app: github-mcp-server`:

        ```yaml theme={null}
        apiVersion: apps/v1
        kind: Deployment
        metadata:
          name: github-mcp-server
          namespace: mcp-servers
        spec:
          selector:
            matchLabels:
              app: github-mcp-server
          template:
            metadata:
              labels:
                app: github-mcp-server
            spec:
              containers:
                - name: github-mcp-server
                  image: ghcr.io/example/github-mcp-server:latest
        ```

        Use a label scheme that uniquely identifies each MCP server, for example
        `mcp-server: github` or `app: <server-name>`. The same label is referenced in
        the containment policy in the next step.
      </Step>

      <Step title="Author a containment policy for each MCP server">
        A `FirewallPolicy` resource defines the allowed egress destinations for pods
        matching a label selector. Create one policy per MCP server and commit it to the
        same repository as the server's Deployment manifest.

        The following example permits pods labelled `app: github-mcp-server` in the
        `mcp-servers` namespace to reach only `api.github.com`. All other egress is
        denied.

        ```yaml theme={null}
        kind: FirewallPolicy
        apiVersion: networking.aviatrix.com/v1alpha1
        metadata:
          name: github-mcp-server
          namespace: mcp-servers
        spec:
          rules:
            - name: allow-github-api
              logging: true
              selector:
                matchLabels:
                  app: github-mcp-server
              action: permit
              protocol: any
              webGroups:
                - name: github-api
          webGroups:
            - name: github-api
              domains:
                - "api.github.com"
        ```

        Apply the policy:

        ```bash theme={null}
        kubectl apply -f github-mcp-server-policy.yaml
        ```

        Repeat for each MCP server, adjusting the `name`, `matchLabels` selector, and
        `domains` list to match that server's identity and permitted destinations.

        <Note>
          Commit the `FirewallPolicy` manifest to the same repository directory as the
          server's Deployment. This ensures it travels through the same review, CI/CD,
          and rollback process as the server definition it protects.
        </Note>
      </Step>

      <Step title="Verify containment">
        1. Check policy events to confirm the policy was applied successfully:

           ```bash theme={null}
           kubectl get events -n mcp-servers
           ```

           A successful apply produces an event with `Reason: UpdatePolicyListSuccess`.

        2. Navigate to **Security > Distributed Cloud Firewall** and select the cluster.
           Confirm the policy appears with the correct egress allow-list for each MCP
           server.

        3. To confirm egress blocking is active, attempt a connection from an MCP server
           pod to a destination not in its `domains` list and verify it is denied. The
           denied attempt appears in CoPilot per-connection logs alongside the server's
           allowed traffic.
      </Step>
    </Steps>
  </Tab>

  <Tab title="Terraform">
    <Steps>
      <Step title="Deploy an Aviatrix spoke gateway in the cluster VPC">
        An Aviatrix spoke gateway must be deployed in the same VPC as the target
        Kubernetes cluster. If a spoke gateway is already deployed in the cluster VPC,
        proceed to the next step.

        ```hcl theme={null}
        resource "aviatrix_spoke_gateway" "mcp_containment" {
          cloud_type   = var.cloud_type
          account_name = var.account_name
          gw_name      = "mcp-containment-spoke"
          vpc_id       = var.cluster_vpc_id
          vpc_reg      = var.region
          gw_size      = var.gateway_size
          subnet       = var.subnet_cidr
        }
        ```
      </Step>

      <Step title="Install the Aviatrix Kubernetes Firewall Helm chart">
        The Aviatrix Kubernetes Firewall Helm chart deploys the in-cluster components
        that allow the Aviatrix controller to reconcile and enforce containment policies
        on the cluster.

        Run the following command against the target cluster, replacing
        `<chart-version>` with the current chart version from the
        [Aviatrix k8s-firewall-charts repository](https://aviatrixsystems.github.io/k8s-firewall-charts):

        ```bash theme={null}
        helm install --repo https://aviatrixsystems.github.io/k8s-firewall-charts --version <chart-version> k8s-firewall k8s-firewall
        ```
      </Step>

      <Step title="Verify Aviatrix CRD installation">
        The Helm chart installs two Aviatrix CRDs on the cluster. Verify both are
        present before continuing:

        ```bash theme={null}
        kubectl get crds | grep aviatrix
        ```

        Expected output:

        ```
        firewallpolicies.networking.aviatrix.com        <timestamp>
        webgrouppolicies.networking.aviatrix.com        <timestamp>
        ```

        If either CRD is missing, re-run the Helm installation and check the output for
        errors.
      </Step>

      <Step title="Onboard the Kubernetes cluster to Aviatrix DCF">
        <Warning>
          EKS clusters are auto-discovered by the Aviatrix controller via CSP account
          scan. Do not apply the EKS block below when following the Obot EKS containment
          guide. Explicit registration conflicts with the auto-discovered entry and
          returns HTTP 409. Use this block only for self-hosted or non-Obot EKS
          deployments where auto-discovery is not applicable.
        </Warning>

        For EKS, the following configuration grants Controller access and registers the
        cluster in a single apply:

        ```hcl theme={null}
        data "aws_eks_cluster" "this" {
          name = var.cluster_name
        }

        resource "aws_eks_access_entry" "aviatrix" {
          cluster_name      = var.cluster_name
          principal_arn     = var.controller_role_arn
          kubernetes_groups = ["view-nodes"]
          type              = "STANDARD"
        }

        resource "aws_eks_access_policy_association" "aviatrix" {
          cluster_name  = var.cluster_name
          policy_arn    = "arn:aws:eks::aws:cluster-access-policy/AmazonEKSViewPolicy"
          principal_arn = var.controller_role_arn
          access_scope { type = "cluster" }
          depends_on    = [aws_eks_access_entry.aviatrix]
        }

        resource "kubernetes_cluster_role" "view_nodes" {
          metadata { name = "view-nodes" }
          rule {
            verbs      = ["get", "list", "watch"]
            api_groups = [""]
            resources  = ["nodes"]
          }
        }

        resource "kubernetes_cluster_role_binding" "view_nodes" {
          metadata { name = "view-nodes" }
          role_ref {
            api_group = "rbac.authorization.k8s.io"
            kind      = "ClusterRole"
            name      = kubernetes_cluster_role.view_nodes.metadata[0].name
          }
          subject {
            kind      = "Group"
            name      = "view-nodes"
            api_group = "rbac.authorization.k8s.io"
          }
        }

        resource "aviatrix_kubernetes_cluster" "this" {
          cluster_id          = data.aws_eks_cluster.this.arn
          use_csp_credentials = true
          depends_on = [
            aws_eks_access_policy_association.aviatrix,
            kubernetes_cluster_role_binding.view_nodes,
          ]
        }
        ```

        For AKS:

        ```hcl theme={null}
        data "azurerm_kubernetes_cluster" "this" {
          name                = var.cluster_name
          resource_group_name = var.resource_group
        }

        resource "aviatrix_kubernetes_cluster" "this" {
          cluster_id          = lower(data.azurerm_kubernetes_cluster.this.id)
          use_csp_credentials = true
        }
        ```
      </Step>

      <Step title="Label MCP server pods">
        Aviatrix containment policies target pods by Kubernetes label selector. Ensure
        each MCP server Deployment includes a unique, consistent label that identifies
        the server.

        ```yaml theme={null}
        apiVersion: apps/v1
        kind: Deployment
        metadata:
          name: github-mcp-server
          namespace: mcp-servers
        spec:
          selector:
            matchLabels:
              app: github-mcp-server
          template:
            metadata:
              labels:
                app: github-mcp-server
            spec:
              containers:
                - name: github-mcp-server
                  image: ghcr.io/example/github-mcp-server:latest
        ```

        Use a label scheme that uniquely identifies each MCP server. The same label is
        referenced in the containment policy in the next step.
      </Step>

      <Step title="Author a containment policy for each MCP server">
        Commit a `FirewallPolicy` manifest alongside each server's Deployment in the
        same repository. The following example permits pods labelled
        `app: github-mcp-server` to reach only `api.github.com`:

        ```yaml theme={null}
        kind: FirewallPolicy
        apiVersion: networking.aviatrix.com/v1alpha1
        metadata:
          name: github-mcp-server
          namespace: mcp-servers
        spec:
          rules:
            - name: allow-github-api
              logging: true
              selector:
                matchLabels:
                  app: github-mcp-server
              action: permit
              protocol: any
              webGroups:
                - name: github-api
          webGroups:
            - name: github-api
              domains:
                - "api.github.com"
        ```

        Apply via your GitOps pipeline or directly:

        ```bash theme={null}
        kubectl apply -f github-mcp-server-policy.yaml
        ```

        Repeat for each MCP server, adjusting the `name`, `matchLabels` selector, and
        `domains` list.
      </Step>

      <Step title="Verify containment">
        1. Check policy events to confirm the policy was applied successfully:

           ```bash theme={null}
           kubectl get events -n mcp-servers
           ```

           A successful apply produces an event with `Reason: UpdatePolicyListSuccess`.

        2. In CoPilot, navigate to **Security > Distributed Cloud Firewall** and select
           the cluster. Confirm the policy appears with the correct egress allow-list
           for each MCP server.

        3. To confirm egress blocking is active, attempt a connection from an MCP server
           pod to a destination not in its `domains` list and verify it is denied. The
           denied attempt appears in CoPilot per-connection logs alongside the server's
           allowed traffic.
      </Step>
    </Steps>
  </Tab>
</Tabs>
