MCP server for working with AWS Blog and News articles
@mirecekd
About MCP server for working with AWS Blog and News articles
This MCP server provides tools for retrieving and filtering AWS blog articles and news from all AWS categories. The server is built using the FastMCP framework and supports SSE transport on port 8807.
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"awsblogs-mcp": {
"command": "docker",
"args": [
"run",
"-p",
"8807:8807",
"ghcr.io/mirecekd/awsblogs-mcp"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is AWS Blogs MCP Server?
AWS Blogs MCP Server is an MCP server that provides tools for retrieving and filtering AWS blog articles and news from all AWS categories via the api.aws-news.com API. Built with the FastMCP framework, it supports SSE transport on port 8807 and is intended for developers and AI agents needing structured access to official AWS content.
How to use AWS Blogs MCP Server?
Docker is the recommended method: run docker run -p 8807:8807 ghcr.io/mirecekd/awsblogs-mcp or build locally. For local development, install dependencies with pip install -e . and start the server with python main_sse.py --host 0.0.0.0 --port 8807. Configure your MCP client (e.g., Cline) with type: "sse" and URL http://localhost:8807/sse/.
Key features of AWS Blogs MCP Server
- Retrieves articles published today or within a date range
- Filters by article type (News, Blog, or Both) and category
- Full‑text search across titles, URLs, and slugs
- Lists available categories and popular articles
- Downloads full article content with metadata
- Built‑in 5‑minute cache and structured JSON responses
- Fully Dockerized with SSE transport on port 8807
Use cases of AWS Blogs MCP Server
- Monitor daily AWS news and blog posts for competitive intelligence
- Search for articles on specific topics (e.g., “Machine Learning”, “Containers”)
- Automate the collection of AWS announcements for documentation or newsletters
- Integrate with N8N workflows to trigger alerts based on new articles
- Build conversational AI agents that answer questions about recent AWS updates
FAQ from AWS Blogs MCP Server
What data source does the server use?
It uses the public API at https://api.aws-news.com/articles, which aggregates AWS blog and news articles across all categories.
Does the server require authentication or API keys?
No. The server communicates with a public API and does not require any credentials or API keys.
What transport protocol does it use?
The server uses SSE (Server‑Sent Events) on port 8807. Clients must connect via SSE (e.g., http://localhost:8807/sse/).
How long are search results cached?
Responses are cached for 5 minutes to reduce load on the upstream API.
What article categories are available?
The server supports over 40 categories, including Architecture, Machine Learning, Security, Containers, Database, and many more as listed in the README.
More Cloud & Infrastructure MCP servers
Supabase MCP Server
coleam00Supabase MCP server created in Python.
Terraform MCP Server
hashicorpThe Terraform MCP Server provides seamless integration with Terraform ecosystem, enabling advanced automation and interaction capabilities for Infrastructure as Code (IaC) development.
Lambda MCP Server Demo (Streamable HTTP)
mikegc-awsCreates a simple MCP tool server with "streaming" HTTP.
MCP Server that interacts with Azure AI Foundry (experimental)
azure-ai-foundryA MCP Server for Azure AI Foundry: it's now moved to cloud, check the new Foundry MCP Server
tfmcp: Terraform Model Context Protocol Tool
nwiizo🌍 Terraform Model Context Protocol (MCP) Tool - An experimental CLI tool that enables AI assistants to manage and operate Terraform environments. Supports reading Terraform configurations, analyzing plans, applying configurations, and managing state with Claude Desktop integrati
Comments