Skip to main content

An AWS Labs Model Context Protocol (MCP) server for aws-msk

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

AWS Labs aws-msk MCP Server

An AWS Labs Model Context Protocol (MCP) server for Amazon Managed Streaming for Kafka (MSK).

Overview

The AWS MSK MCP Server provides a set of tools for interacting with Amazon MSK through the Model Context Protocol. It enables AI assistants to manage, monitor, and optimize Amazon MSK clusters by providing structured access to MSK APIs.

Features

  • Cluster Management: Create, describe, and update MSK clusters (both provisioned and serverless)
  • Configuration Management: Create and manage MSK configurations
  • VPC Connection Management: Create, describe, and manage VPC connections
  • Monitoring and Telemetry: Access cluster metrics, logs, and operational data
  • Security Management: Configure authentication, encryption, and access policies
  • Best Practices: Get recommendations for cluster sizing, configuration, and performance optimization
  • Read-Only Mode: Server runs in write mode by default, switch to read-only to protect against accidental modifications

Tools

Cluster Operations

  • describe_cluster_operation: Get information about a specific cluster operation
  • get_cluster_info: Retrieve various types of information about MSK clusters
  • get_global_info: Get global information about MSK resources
  • create_cluster: Create a new MSK cluster (provisioned or serverless)
  • update_broker_storage: Update the storage size of brokers
  • update_broker_type: Update the broker instance type
  • update_broker_count: Update the number of brokers in a cluster
  • update_cluster_configuration: Update the configuration of a cluster
  • update_monitoring: Update monitoring settings
  • update_security: Update security settings
  • reboot_broker: Reboot brokers in a cluster

Configuration Operations

  • get_configuration_info: Get information about MSK configurations
  • create_configuration: Create a new MSK configuration
  • update_configuration: Update an existing configuration

VPC Operations

  • describe_vpc_connection: Get information about a VPC connection
  • create_vpc_connection: Create a new VPC connection
  • delete_vpc_connection: Delete a VPC connection
  • reject_client_vpc_connection: Reject a client VPC connection request

Security Operations

  • put_cluster_policy: Put a resource policy on a cluster
  • associate_scram_secret: Associate SCRAM secrets with a cluster
  • disassociate_scram_secret: Disassociate SCRAM secrets from a cluster
  • list_tags_for_resource: List all tags for an MSK resource
  • tag_resource: Add tags to an MSK resource
  • untag_resource: Remove tags from an MSK resource
  • list_customer_iam_access: List IAM access information for a cluster

Monitoring and Best Practices

  • get_cluster_telemetry: Retrieve telemetry data for MSK clusters
  • get_cluster_best_practices: Get best practices and recommendations for MSK clusters

Usage

This MCP server can be used by AI assistants to help users manage their Amazon MSK resources. It provides structured access to MSK APIs, making it easier for AI to understand and interact with MSK clusters.

Prerequisites

  1. Install uv from Astral or the GitHub README
  2. Install Python using uv python install 3.10
  3. Set up AWS credentials with access to AWS services
    • You need an AWS account with appropriate permissions
    • Configure AWS credentials with profile name 'default' with aws configure or environment variables

Installation

Cursor VS Code
Install MCP Server Install on VS Code

To use this MCP server with your MCP client, add the following configuration to your MCP client settings:

"awslabs.aws-msk-mcp-server": {
    "command": "uvx",
    "args": [
        "awslabs.aws-msk-mcp-server@latest",
        "--allow-writes"
    ],
    "env": {
        "FASTMCP_LOG_LEVEL": "ERROR"
    },
    "disabled": false,
    "autoApprove": []
}

Alternatively, you can use the MCP Inspector to test the server:

npx @modelcontextprotocol/inspector \
  uv \
  --directory <absolute path to your server code> \
  run \
  server.py

AWS Credentials

The server requires AWS credentials to access MSK resources. These can be provided through:

  1. Environment variables (AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_SESSION_TOKEN)
  2. AWS credentials file (~/.aws/credentials)
  3. IAM roles for Amazon EC2 or ECS tasks

Server Configuration Options

--allow-writes

By default, the MSK MCP server runs in write mode.

To disable write operations, remove the --allow-writes parameter to your MCP client configuration:

"args": [
    "--directory",
    "<absolute path to your server code>",
    "run",
    "server.py"
    //Removed "--allow-writes"
]

In this mode, only read operations (tools in directories prefixed with "read_") and utility tools are available. Write operations (tools in directories prefixed with "mutate_") are disabled.

Region Selection

Most tools require specifying an AWS region. The server will prompt for a region if one is not provided.

Example Use Cases

  • Creating and configuring new MSK clusters
  • Monitoring cluster performance and health
  • Implementing best practices for MSK clusters
  • Managing security and access controls
  • Troubleshooting cluster issues

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

awslabs_aws_msk_mcp_server-0.0.3.tar.gz (151.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

awslabs_aws_msk_mcp_server-0.0.3-py3-none-any.whl (93.9 kB view details)

Uploaded Python 3

File details

Details for the file awslabs_aws_msk_mcp_server-0.0.3.tar.gz.

File metadata

File hashes

Hashes for awslabs_aws_msk_mcp_server-0.0.3.tar.gz
Algorithm Hash digest
SHA256 61d7e4fc82ec55b8b54ea1313885294c9aa727c5a04423de90453e5d61e73dbe
MD5 a8e43e92c46d8f5bf60457faf864707d
BLAKE2b-256 bfe32594f9545e4674f0a2a8b8f19e89a34d3bbdffc67b0a3dc64a3013a46846

See more details on using hashes here.

Provenance

The following attestation bundles were made for awslabs_aws_msk_mcp_server-0.0.3.tar.gz:

Publisher: release.yml on awslabs/mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file awslabs_aws_msk_mcp_server-0.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for awslabs_aws_msk_mcp_server-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 0eb8c3aacc383a357ffa6fecc9fa6fc3d4ce79cb1fdfa127e564b83b0badd7c0
MD5 7626a54644da3d8a47eda65f038b7b62
BLAKE2b-256 5091a63ed978023abf8495b33fa7c7c1ca3fd9a8c19398fb4063e7840bb84a13

See more details on using hashes here.

Provenance

The following attestation bundles were made for awslabs_aws_msk_mcp_server-0.0.3-py3-none-any.whl:

Publisher: release.yml on awslabs/mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page