Skip to content

Add Azure Kubernetes Service (AKS) official MCP server #140

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions servers/aks/server.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: aks
image: mcp/aks
type: server
meta:
category: devops
tags:
- devops
- azure
- kubernetes
- aks
about:
title: Azure Kubernetes Service (AKS)
description: Azure Kubernetes Service (AKS) official MCP server
icon: https://raw.githubusercontent.com/Azure/AKS/master/blog/assets/images/400x400.png
source:
project: https://github.com/Azure/aks-mcp
run:
command:
- --transport=stdio
- --access-level={{aks.access_level}}
- --allow-namespaces={{aks.allow_namespaces}}
- --additional-tools={{aks.additional_tools}}
volumes:
- '{{aks.azure_dir}}:/home/mcp/.azure'
- '{{aks.kubeconfig}}:/home/mcp/.kube/config'
config:
description: Configuration for AKS-MCP server
parameters:
type: object
properties:
azure_dir:
type: string
description: Path to the Azure configuration directory (e.g. /home/azureuser/.azure). Used for Azure CLI authentication, you should be logged in (e.g. run `az login`) on the host before starting the MCP server.
kubeconfig:
type: string
description: Path to the kubeconfig file for the AKS cluster (e.g. /home/azureuser/.kube/config). Used to connect to the AKS cluster.
access_level:
type: string
description: Access level for the MCP server, One of [ readonly, readwrite, admin ]
default: readonly
allow_namespaces:
type: string
description: Comma-separated list of namespaces to allow access to. If not specified, all namespaces are allowed.
additional_tools:
type: string
description: Comma-separated list of additional tools, One of [ helm, cilium ]
required:
- azure_dir
- kubeconfig
- access_level