Aws Doc Sse MCP Server

This MCP server provides tools to access AWS documentation, search for content, and get recommendations.

Local serverstdioPython

What is the Aws Doc Sse MCP server?

Most cloud and infrastructure work still happens through a UI a human drives. Aws Doc Sse MCP server moves it into the conversation instead. This MCP server provides tools to access AWS documentation, search for content, and get recommendations.

The short version

  • Read Documentation — Fetch and convert AWS documentation pages to markdown format
  • Search Documentation — Search AWS documentation using the official search API (global only)
  • Recommendations — Get content recommendations for AWS documentation pages (global only)
  • Get Available Services List — Get a list of available AWS services in China regions (China only)

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

The tools it exposes

The server publishes 1 tool. What each one is for:

  • read_documentation — Fetches an AWS documentation page and converts it to markdown format

What it needs from you

Configuration is passed through the environment: FASTMCP_LOG_LEVEL, AWS_DOCUMENTATION_PARTITION. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of cloud and infrastructure servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Aws Doc Sse's toolset — read_documentation — is a fair guide to whether it matches your workflow. It is maintained by Joseph19820124; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
read_documentationFetches an AWS documentation page and converts it to markdown format.

How to install the Aws Doc Sse MCP server

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

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
FASTMCP_LOG_LEVELConfiguration value read at startup.Optional
AWS_DOCUMENTATION_PARTITIONConfiguration value read at startup.Optional

Example prompts to try

  • Use Aws Doc Sse to read documentation.

Frequently asked questions

It connects Aws Doc Sse to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (read_documentation) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Aws Doc Sse directly.