An MCP (Model Context Protocol) server that fetches AWS What's New announcements by month.
🇺🇸 English README | 🇰🇷 한국어 README
This server exposes a single MCP tool get_whats_new that queries the AWS What's New page via its internal JSON API and returns formatted results filtered by year/month.
- Python >= 3.10
- uv
git clone https://github.com/chhanz/WhatsNew-MCPserver.git| Parameter | Format | Example |
|---|---|---|
year_month |
YYYY/MM |
2026/01 |
Returns a formatted list of AWS What's New entries for the specified month, including title, date, description, and link.
Add to your .kiro/settings/mcp.json:
{
"mcpServers": {
"whats-new-mcp": {
"command": "uvx",
"args": [
"--from", "/path/to/WhatsNew-MCPserver",
"whats-new-mcp"
],
"disabled": false,
"autoApprove": []
}
}
}WhatsNew-MCPserver/
├── pyproject.toml
├── README.md
├── README-kr.md
└── src/
└── whats_new_mcp/
├── __init__.py
└── server.py
- The API endpoint is an undocumented internal API used by the AWS website frontend. It may change without notice.
- Monthly filtering is done client-side since the API only supports year-level tag filtering.
This project is licensed under CC BY-NC 4.0. Commercial use is not permitted.