{"slug": "i-stopped-my-ai-from-making-up-aws-answers-with-one-command", "title": "I Stopped My AI From Making Up AWS Answers With One Command", "summary": "AWS Labs has released the AWS Knowledge Model Context Protocol (MCP) Server, an open-source tool that connects AI assistants like Claude and Copilot to real-time AWS documentation, blog posts, and announcements. The server allows models to fetch current information on demand, avoiding outdated knowledge cutoffs, and includes tools for documentation search, regional availability checks, and agent skills. It operates as a remote MCP server, sending only query text and IP addresses to AWS, with no access to user code or credentials.", "body_md": "AWS announces changes continuously, any reader here would be familiar with that, and with the [AWS News Blog](https://aws.amazon.com/blogs/aws/).\n\nImagine you're a developer in July 2026 asked to work with **Amazon S3 Files**, which went generally available during April 2026.\n\nYour AI assistant has a knowledge cutoff: a fixed date after which the model stops receiving new training data. Past that date, it's completely unaware of new product releases, feature launches, or documentation changes. Time is of the essence and you can't exactly pause until the next model ships.\n\nAI assistants have made it easy to skip the manual grind of reading docs and researching things yourself, right up until the assistant's knowledge runs out of date. So what do you do when it doesn't know about the thing you need it to know about?\n\nEnter the AWS Knowledge Model Context Protocol (MCP) Server, an open-source tool from [AWS Labs](https://github.com/awslabs) (AWS's official open source GitHub organisation) that connects AI models directly to authoritative, up-to-date AWS documentation.\n\nIt lets AI clients like Claude and Copilot pull real-time AWS information without waiting on a model update: current documentation, blog posts, What's New announcements, and Well-Architected guidance, all fetched live rather than recalled from training data.\n\nThe Model Context Protocol (MCP) is the standard AI tools use to talk to external tools and knowledge sources. AWS Knowledge is a remote MCP server, hosted by AWS, that puts AWS-specific material in front of the model in a format it can use.\n\nYou'd be forgiven for thinking this sounds like RAG (Retrieval-Augmented Generation). MCP enables RAG, but it isn't RAG itself, and RAG doesn't need MCP either. People were doing RAG long before MCP existed. MCP is the connector standard; RAG is the \"look something up, then answer using what you found\" pattern. MCP just happens to be a common way of wiring that pattern up.\n\nThe server exposes a handful of tools the AI can call directly:\n\n`search_documentation`\n\n: keyword search across all AWS documentation`read_documentation`\n\n: fetches a specific documentation page, converted to markdown`recommend`\n\n: suggests related documentation pages for a given URL`list_regions`\n\n: lists all AWS regions and their identifiers`get_regional_availability`\n\n: checks which regions support a given service, feature, SDK API, or CloudFormation resource`retrieve_skill`\n\n: pulls down a domain-specific \"agent skill\", a packaged set of workflows and best practices for a more involved AWS taskThat last one is worth a quick note: skills aren't new actions bolted onto the model, they're structured guidance the model reads and follows, the same way it would follow a detailed how-to doc, just retrieved on demand instead of baked into the prompt.\n\nWorth knowing what actually leaves your machine here: just your query text (e.g. \"does Lambda support S3 Files yet\") plus your IP address, going to a public AWS endpoint, the same exposure as searching the AWS docs site yourself. Nothing from your codebase, credentials, or AWS account goes with it, this server only answers questions, it doesn't read your project or touch your infrastructure. AWS states that telemetry from this server isn't used for model training, and since there's no authentication step, there's nothing tying a query back to your identity beyond standard request logs.\n\nOne rule of thumb regardless: fine for general AWS knowledge lookups, not the place to paste anything client-specific or commercially sensitive as part of a query.\n\nOnce it's wired in, the difference shows up the moment you ask about anything recent. Try something like:\n\n\"Is Amazon S3 Files generally available yet, and which regions support it?\"\n\nWithout AWS Knowledge connected, most models will either hedge (\"I'm not aware of this service\" or \"as of my knowledge cutoff, this doesn't exist\") or, worse, guess. With it connected, the assistant calls `search_documentation`\n\n, finds the GA announcement, and answers with the actual launch date and region list, sourced from the live docs rather than a guess.\n\nThat's the whole pitch in one prompt: the model goes and checks, instead of you doing it in a second tab.\n\nThe `claude mcp add`\n\ncommand is specific to Claude Code's CLI, but AWS Knowledge itself is just a standard MCP server, so the same URL works in any MCP-compatible client. Only the registration step changes.\n\n```\nclaude mcp add --transport http aws-knowledge https://knowledge-mcp.global.api.aws\n```\n\nIf you want it available across a whole project, and checked into git so the rest of the team gets it too, add `--scope project`\n\ninstead of leaving it at the personal default:\n\n```\nclaude mcp add --scope project --transport http aws-knowledge https://knowledge-mcp.global.api.aws\n```\n\n**Verify it worked:**\n\n```\nclaude mcp list\nclaude mcp get aws-knowledge\n```\n\n`list`\n\nshows connection status at a glance, `get`\n\nshows the full config and whether it's reachable right now.\n\nThese all share a similar `mcp.json`\n\nconfig shape. The root key is `servers`\n\n, not `mcpServers`\n\n, that's the detail that trips people up if they're copying config from Claude or Cursor.\n\n```\n{\n  \"servers\": {\n    \"aws-knowledge\": {\n      \"type\": \"http\",\n      \"url\": \"https://knowledge-mcp.global.api.aws\"\n    }\n  }\n}\n```\n\nSince AWS Knowledge is public and needs no authentication, that's the whole config, no tokens or headers required. Where you put it and how you open it differs by IDE:\n\n**VS Code**: open the Command Palette and run `MCP: Open User Configuration`\n\nfor something that applies everywhere, or create `.vscode/mcp.json`\n\nin a repo to scope it to that project and commit it for the team.\n\n`MCP: List Servers`\n\nfrom the Command Palette, select `aws-knowledge`\n\n, and check its status. If it's erroring, choose \"Show Output\" to see the actual server log. In Copilot Chat (Agent mode), click the tools icon to see the live list of available MCP tools and confirm `aws-knowledge`\n\nis in it.**JetBrains** (IntelliJ, WebStorm, PyCharm, etc.): click the GitHub Copilot icon, then Edit Settings, then Model Context Protocol, then Configure, which opens the same `mcp.json`\n\n.\n\n**Visual Studio** (2022, version 17.14.9+): create an `.mcp.json`\n\nfile in your solution directory or `%USERPROFILE%`\n\n, using the same config shown above.\n\n`aws-knowledge`\n\n's tools are listed. Since this server needs no auth, it should connect straight away with no credential prompt.This one works differently. Claude Desktop doesn't pick up remote HTTP servers from a config file at all, `claude_desktop_config.json`\n\nis for local servers only. Remote servers go through the UI:\n\n`https://knowledge-mcp.global.api.aws`\n\nas the server URL.No OAuth step here either, since the server doesn't require authentication.\n\n**Verify it worked:** open the Connectors panel again and confirm `aws-knowledge`\n\nshows as connected with its tools listed, or just ask it something time-sensitive in a new chat and see whether it searches before answering.\n\nThis is a public, high-traffic endpoint, so occasionally the issue is on AWS's end rather than your config. There's a known case where the server has briefly returned connection errors during initialisation across every client at once. If `aws-knowledge`\n\nlooks correctly configured but won't connect, it's worth trying again a few minutes later before assuming your JSON is wrong.\n\nIf you'd rather not depend on a remote, AWS-hosted server, for offline work or a stricter environment, AWS also publishes `awslabs.aws-documentation-mcp-server`\n\n, a locally run equivalent with overlapping search and read tools, installed via `uvx`\n\ninstead of a URL. Same idea, runs on your machine instead of AWS's.\n\nEvery MCP server you connect adds to the list of tools your assistant has to consider on each turn. Adding AWS Knowledge is low-cost since it's just a handful of tools, but it's worth treating \"add every MCP server that looks useful\" as the wrong instinct. Add what you'll actually reach for, not everything available.\n\nThis is low effort for high value, for only a bit of setup. One command, or one small JSON block, and you're done.\n\nAfter trying it out, I'd call this a must for every developer working with AWS, and it left me wondering how I'd gone so long without it.\n\nIt cuts down the hallucinations by giving the model something current to check itself against, instead of relying purely on training data that's already going stale by the time you're reading this.\n\nThe bigger win for me, honestly, is staying in one place. No more jumping between the IDE (or terminal) and a browser tab full of AWS docs. That context switch between \"coding\" and \"reading documentation\" is a small tax we pay dozens of times a day, and it adds up. With this wired in, your AI assistant can just go check for itself, and you stay exactly where you were working.\n\nWhat's the most recent AWS feature your AI assistant got completely wrong?\n\nDrop it below, I want to see how bad the gap actually is.\n\nIf you'd like to connect or keep the conversation going, find me on [LinkedIn](https://www.linkedin.com/in/stevenwleung/).", "url": "https://wpnews.pro/news/i-stopped-my-ai-from-making-up-aws-answers-with-one-command", "canonical_source": "https://dev.to/aws-builders/i-stopped-my-ai-from-making-up-aws-answers-with-one-command-5aba", "published_at": "2026-08-01 07:34:07+00:00", "updated_at": "2026-08-01 07:52:14.663208+00:00", "lang": "en", "topics": ["developer-tools", "ai-tools", "ai-agents", "artificial-intelligence"], "entities": ["AWS Labs", "AWS", "Amazon S3 Files", "Claude", "Copilot", "Model Context Protocol (MCP)", "AWS Knowledge MCP Server"], "alternates": {"html": "https://wpnews.pro/news/i-stopped-my-ai-from-making-up-aws-answers-with-one-command", "markdown": "https://wpnews.pro/news/i-stopped-my-ai-from-making-up-aws-answers-with-one-command.md", "text": "https://wpnews.pro/news/i-stopped-my-ai-from-making-up-aws-answers-with-one-command.txt", "jsonld": "https://wpnews.pro/news/i-stopped-my-ai-from-making-up-aws-answers-with-one-command.jsonld"}}