Skip to main content
Glama
normalzzz

EKS Metrics MCP Server

by normalzzz

EKS Metrics MCP Server

Python MCP server for querying Amazon EKS cluster metrics.

Implemented now:

  • Kubernetes API server /metrics, equivalent to kubectl get --raw /metrics

  • Metric filtering by exact metric name, metric name regex, and labels

  • A source selector that currently supports api_server and reserves cloudwatch

CloudWatch metric collection is intentionally left as a future extension.

Install

python3.11 -m pip install -e .

The MCP Python SDK requires Python 3.10 or newer. If python points to Python 3.9, use python3.11 or another Python 3.10+ interpreter in both installation and MCP client configuration.

The server uses the Kubernetes Python client. Authentication follows the same configuration sources as kubectl:

  • In-cluster service account credentials when running inside Kubernetes

  • Local kubeconfig from KUBECONFIG or ~/.kube/config

  • Optional per-call kube_context and kubeconfig_path tool arguments

The Kubernetes identity must be allowed to call the API server non-resource URL /metrics.

Related MCP server: MCP Datadog Playcourt

Run

eks-metrics-mcp-server

or:

python3.11 -m eks_metrics_mcp_server.server

Codex MCP config

[mcp_servers.eks-metrics]
enabled = true
command = "python3.11"
args = ["-m", "eks_metrics_mcp_server.server"]
cwd = "/root/eks-metrics-server/eks-metrics-mcp-server"

[mcp_servers.eks-metrics.env]
PYTHONPATH = "/root/eks-metrics-server/eks-metrics-mcp-server/src"

MCP Tools

get_eks_metrics

Fetch metrics from the selected source.

Important arguments:

  • source: api_server or cloudwatch; only api_server is implemented

  • metric_name: exact Prometheus metric name

  • metric_name_pattern: regular expression for metric names

  • label_selectors: label key/value filters

  • limit: maximum returned samples

  • include_raw: include original Prometheus sample line

  • kube_context: kubeconfig context to use

  • kubeconfig_path: kubeconfig path to use

Example metric names from Kubernetes API server metrics include apiserver_request_total, apiserver_request_duration_seconds_bucket, and apiserver_current_inflight_requests.

list_api_server_metric_names

Return metric names available from /metrics, including type/help metadata and sample counts.

Kubernetes RBAC

For an in-cluster deployment, bind a service account to a role that can read the /metrics non-resource URL:

apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
  name: eks-metrics-mcp-api-server-metrics
rules:
  - nonResourceURLs:
      - /metrics
    verbs:
      - get
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
  name: eks-metrics-mcp-api-server-metrics
roleRef:
  apiGroup: rbac.authorization.k8s.io
  kind: ClusterRole
  name: eks-metrics-mcp-api-server-metrics
subjects:
  - kind: ServiceAccount
    name: eks-metrics-mcp
    namespace: default

Available Tools

2 tools
get_eks_metricsC

Fetch EKS metrics from api_server or cloudwatch.

The api_server source calls Kubernetes API server /metrics, equivalent to kubectl get --raw /metrics. CloudWatch is reserved for a future implementation step.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
sourceNoapi_server
include_rawNo
metric_nameNo
cluster_nameNo
kube_contextNo
kubeconfig_pathNo
label_selectorsNo
timeout_secondsNo
metric_name_patternNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

C2.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It mentions the equivalent kubectl command for api_server, but does not address authentication requirements, error scenarios, rate limits, or idempotence. The read-only nature is implied but not confirmed, and no safety information is provided.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise at three sentences and starts with the main action. However, it includes a note about CloudWatch being reserved for future implementation, which is somewhat irrelevant. The structure is adequate but could be more organized by front-loading key usage constraints.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 10 parameters and an output schema, the description is extremely sparse. It does not explain how to connect to a cluster, specify metrics, or interpret results. The sibling tool is not referenced. For a tool with this complexity, the description fails to provide necessary context for correct usage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 10 parameters with 0% description coverage, and the tool description does not mention any parameter, its purpose, or allowed values. For example, the 'source' parameter defaults to 'api_server', but the description only mentions it in passing. This leaves agents completely uninformed about parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool fetches EKS metrics from api_server or cloudwatch, with the api_server source explained. However, it does not differentiate from the sibling tool 'list_api_server_metric_names', which likely serves a complementary purpose. The purpose is clear but lacks explicit distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives, such as the sibling tool 'list_api_server_metric_names'. It only notes that CloudWatch is reserved for future use, implying current limitation. No when-to-use or when-not-to-use instructions are given.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_api_server_metric_namesC

List metric names exposed by Kubernetes API server /metrics.

ParametersJSON Schema
NameRequiredDescriptionDefault
kube_contextNo
kubeconfig_pathNo
timeout_secondsNo
metric_name_patternNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

C2.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must fully disclose behavior. It only states that the tool lists metric names, implying a read-only operation, but does not mention any potential side effects, required permissions, or rate limits. The description lacks detail on what happens on errors or timeouts.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very short (one sentence), but it omits important details. While it avoids verbosity, the brevity sacrifices clarity and completeness, making it less useful than a slightly longer, more informative description.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 4 parameters with 0% schema coverage and no annotations, the description is insufficient. It does not mention the output format (though an output schema exists), nor does it provide enough context for an agent to correctly invoke the tool or understand its behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description provides no explanation of the parameters (kube_context, kubeconfig_path, timeout_seconds, metric_name_pattern). The description does not clarify how these parameters affect the results, leaving the agent to guess their purpose and valid values.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the tool lists metric names from the Kubernetes API server /metrics endpoint. However, it does not differentiate from the sibling tool 'get_eks_metrics', which might retrieve actual metric values or focus on EKS-specific metrics.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives like 'get_eks_metrics'. There is no mention of prerequisites, recommended contexts, or situations where the tool should not be used.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 2 tool updatesv0.1.0
    • First observedget_eks_metrics
    • First observedlist_api_server_metric_names

TDQS

B3/5.0
Disambiguation5/5

Each tool has a clear, distinct purpose: one fetches actual metrics data, the other lists available metric names. No overlap or ambiguity.

Naming Consistency5/5

Both tools use consistent snake_case verb_noun pattern: get_eks_metrics and list_api_server_metric_names. Naming is predictable and uniform.

Tool Count4/5

With 2 tools, the server is minimal but well-scoped for its purpose of EKS metrics retrieval. It slightly edges into 'thin' territory but is still reasonable.

Completeness3/5

Core operations (fetch metrics, list names) are present, but there are notable gaps like filtering, aggregation, or time-range queries. CloudWatch support is missing.

Maintenance

ActivityStale
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • -
    license
    A
    quality
    Not graded
    maintenance
    Enables access to Amazon Managed Prometheus workspaces through natural language queries. Supports listing workspaces, executing PromQL queries, and retrieving workspace details and metrics with AWS authentication.
    4
    -
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables monitoring and querying of Datadog metrics for Kubernetes clusters, APM traces, infrastructure hosts, and databases through a unified interface.
    15
    -
  • F
    license
    Not graded
    quality
    Not graded
    maintenance
    Enables AI assistants to execute PromQL queries and discover metrics within AWS Managed Prometheus (AMP) using SigV4 authentication. It provides tools for instant and range queries, label management, and metric discovery in secure, VPC-isolated environments.
    -

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/normalzzz/eks-metrics-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server