Akhilesh Yadav Being a Software Engineer, I love documenting my journey and share my learnings with other developers. I have passion for exploring Javascript, AWS Cloud and lot many things.
  1. Home
  2. /
  3. aws
  4. /
  5. Using AWS MCP Servers...

Using AWS MCP Servers with LLM Code Assistants For Productivity

3 min read

Using-AWS-MCP-Servers-with-LLM-Code-Assistants-For-Productivity.png
MCP Servers help you build on AWS faster while ensuring security, cost efficiency, and best practices. Whether you’re a pro or just starting, AI-powered coding assistants simplify tasks like service setup, infrastructure as code, and knowledge base integration. By the end of this post, you’ll know how to use MCP Servers to streamline development and deliver better solutions quickly.
Developers need code assistants that get AWS services and know the best ways to use them. Specialized AI helpers can make this easier by:
  • Giving smart tips on picking and setting up AWS services
  • Keeping things secure and following the rules
  • Helping save money and use resources wisely
  • Handling boring, repetitive coding tasks with AWS tricks

This way, developers can focus on building cool stuff while the AI takes care of the basic, heavy work. Whether you’re using tools like Amazon Q, Amazon Bedrock, or others, AWS MCP Servers boost them with deep AWS know-how to help you build better, faster.
The Model Context Protocol (MCP) is a simple, open system that connects big language models (LLMs), data, and tools smoothly. It lets AI helpers use special tools and tap into specific knowledge without storing private stuff in the cloud. With MCP, even basic LLMs can grab the latest info and follow best practices to give you exactly what you need.

Simplifying AWS Development with MCP Servers

AWS development can be complex, but MCP Servers from AWS make it easier by providing expert guidance and automation. Each server focuses on a key area, helping you build smarter and more efficiently.

  • Core – Coordinates AI workflows and connects everything for seamless development.
  • AWS CDK – Helps you follow best practices for AWS infrastructure using CDK, security tools, and automation.
  • Amazon Bedrock Knowledge Bases – Lets you search enterprise knowledge easily with natural language queries.
  • Amazon Nova Canvas – Turns text prompts into visuals, perfect for mockups and UI design.
  • Cost – Analyzes AWS service costs to help you save money.

 

Here’s how the AWS MCP Servers fit into different development use cases based on the example provided:

AWS MCP Server Use Cases

MCP Server Use Case Key Contribution
awslabs.core-mcp-server Solution Architecture & AI Coordination Designs architecture, integrates AI workflows, and connects services.
awslabs.cdk-mcp-server Infrastructure as Code (IaC) & Security Generates AWS CDK code, ensures security compliance, and enforces best practices.
awslabs.bedrock-kb-retrieval-mcp-server Enterprise Knowledge Retrieval & Optimization Optimizes knowledge base queries, improves relevance, and provides integration code.
awslabs.nova-canvas-mcp-server Visual Content Generation Creates diagrams and charts to explain AI-generated responses.
awslabs.cost-analysis-mcp-server Cost Optimization & Budget Planning Analyzes costs, predicts expenses, and suggests optimizations.

Each MCP Server automates complex tasks, significantly reducing development time while improving efficiency, security, and cost management.

We will check for  Cost Analysis MCP Server.

Cost Analysis MCP Server

MCP server for analyzing AWS service costs and generating cost reports.

Features

– Get a detailed breakdown of AWS costs by service, region, and tier.
– Understand how costs are distributed across various AWS services.
– Ask cost-related questions in plain English—no need for complex queries.
– Retrieve real-time pricing from AWS Pricing API and AWS pricing webpage.
– Generate detailed cost reports based on your Infrastructure as Code (IaC) implementation.
– Receive cost optimization recommendations to reduce AWS expenses.

 

Prerequisites

1. Install `uv` from [Astral](https://docs.astral.sh/uv/getting-started/installation/)

2. Install Python:

uv python install 3.13

3. Set up AWS credentials with access to AWS services:
– Ensure you have an AWS account with the necessary permissions.
– Configure credentials using `aws configure` or environment variables.

(base) user@M234283794 cost-analysis-mcp-server % aws configure
AWS Access Key ID [****************UGFC]: 
AWS Secret Access Key [****************09NQ]: 
Default region name [None]: 
Default output format [None]:

– Grant IAM roles/users permission to access the AWS Pricing API.

 

Setup

  1. Clone the repo
    git clone https://github.com/awslabs/mcp.git
  2. Start the awslabs.cost-analysis-mcp-server
    cd src/cost-analysis-mcp-server
    uv run awslabs.cost-analysis-mcp-server

 

Installation

MCP can be configured across various AWS products, with planned support for Amazon Q Developer CLI (e.g., `~/.aws/amazonq/mcp.json`):

We will open Claude Desktop which support MCP Clients.

Open the app, navigate to Settings, then under Developer, click the “Edit Config” button. This will open a file named “claude_desktop_config.json”. Add the following content as show below.

{
  "mcpServers": {
    "awslabs.cost-analysis-mcp-server": {
      "command": "uvx",
      "args": ["awslabs.cost-analysis-mcp-server@latest"],
      "env": {
        "FASTMCP_LOG_LEVEL": "ERROR"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

AWS Authentication

The MCP server uses the AWS profile specified in the `AWS_PROFILE` environment variable. If not set, it defaults to the “default” profile in your AWS configuration. You can specify below in claude_desktop_config.json file if there is another named aws profile under env.cla

"env": {
  "AWS_PROFILE": "your-aws-profile"
}

Ensure the AWS profile has permissions to access the AWS Pricing API. The MCP server uses a `boto3` session with the specified profile to authenticate with AWS services. Your AWS IAM credentials remain on your local machine and are strictly used for AWS service access.

Usage:

  1. You can verify installed MCP Clients by clicking on hammer tool icon.Below are the MCP tools installed as part of “awslabs.cost-analysis-mcp-server”.
    You’ll also find their argument values and the responses they return:analyze_cdk_project
    generate_cost_analysis_report
    get_bedrock_architecture_patterns
    get_pricing_from_api
    get_pricing_from_web2. Lets give in a prompt to Claude Desktop:
Get current pricing of AWS EC2 instance which can run LLM models

Claude Desktop will prompt you to accept usage of the installed mcp client tool. Acknowledge and Allow Claude to fetch data from the tool.

The Cost Analysis MCP Server delivers a comprehensive cost analysis report, outlining projected expenses for each AWS service. It identifies optimization opportunities, such as reserved capacity for Amazon Bedrock, and offers precise recommendations to reduce costs while maintaining peak performance.

With AWS MCP Servers, tasks that once required days of research and implementation are now completed in minutes—delivering superior quality, security, and cost efficiency effortlessly.

Reference:

https://github.com/awslabs/mcp/
https://pypi.org/user/awslabs-mcp/

Akhilesh Yadav Being a Software Engineer, I love documenting my journey and share my learnings with other developers. I have passion for exploring Javascript, AWS Cloud and lot many things.

Leave a Reply

Your email address will not be published. Required fields are marked *