A

AWS CDK

Generate and validate AWS CDK constructs.

·No reviews yet
Repo
Share:

About

Auto-generated

AWS CDK is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about AWS CDK.

What is the AWS CDK MCP used for?
The AWS CDK MCP helps generate and validate AWS CDK constructs. It simplifies infrastructure as code (IaC) development for AWS by providing validated construct generation.
How can I install the AWS CDK MCP?
Installation typically involves cloning the repository and following build instructions. For integration with specific MCP clients like Claude Desktop or Cursor, refer to their documentation for adding local MCP servers.
Does the AWS CDK MCP require authentication or API keys?
No, the AWS CDK MCP itself does not require API keys or other credentials. It operates locally and integrates with your existing AWS authentication configured for CDK deployments.
What capabilities does the AWS CDK MCP expose?
This MCP primarily exposes capabilities for generating and validating AWS CDK constructs based on user input. It acts as a helper for ensuring correct CDK construct definitions.
Is there a cost associated with using the AWS CDK MCP?
The AWS CDK MCP is open-source and community-provided, so there is no direct cost for the MCP itself. However, deploying generated AWS CDK constructs may incur costs from AWS services.
What is a common limitation of the AWS CDK MCP?
A common limitation is that it focuses only on AWS CDK constructs and does not support other IaC frameworks. Its utility is specific to projects using the AWS Cloud Development Kit.

Install AWS CDK

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "aws-cdk": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aws-cdk"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "aws-cdk": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aws-cdk"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "aws-cdk": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aws-cdk"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.