MCP server for searching and retrieving AWS blog content
Project description
AWS Blogs MCP Server
A Model Context Protocol (MCP) server that provides access to AWS blog content. Search and retrieve blog posts from aws.amazon.com directly in your AI assistant.
🌍 Compatible IDEs & Clients
This MCP server works with any MCP-compatible client:
- ✅ Amazon Q Developer (VS Code, JetBrains, CLI)
- ✅ Claude Desktop
- ✅ Kiro IDE
- ✅ Any MCP-compatible client
🚀 Easy Installation (Recommended)
Using uvx (Universal Package Manager)
The easiest way to use this MCP server is via PyPI:
# No installation needed - uvx handles everything
Add to your MCP configuration:
Amazon Q Developer (~/.aws/amazonq/mcp.json):
{
"mcpServers": {
"aws-blogs": {
"command": "uvx",
"args": ["aws-blogs-mcp-server"],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
},
"disabled": false,
"autoApprove": [
"search_aws_blogs",
"find_blog_by_title",
"get_blog_post",
"get_blog_categories",
"find_similar_blogs"
]
}
}
}
Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"aws-blogs": {
"command": "uvx",
"args": ["aws-blogs-mcp-server"],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
}
}
}
}
Kiro IDE (~/.kiro/settings/mcp.json):
{
"mcpServers": {
"aws-blogs": {
"command": "uvx",
"args": ["aws-blogs-mcp-server"],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
},
"disabled": false,
"autoApprove": [
"search_aws_blogs",
"find_blog_by_title",
"get_blog_post",
"get_blog_categories",
"find_similar_blogs"
]
}
}
}
🛠️ Manual Installation (Alternative)
Prerequisites
- Python 3.8+ (required on all platforms)
- uvx or pip for package management
Cross-Platform Support
- ✅ macOS (Intel & Apple Silicon)
- ✅ Linux (Ubuntu, CentOS, etc.)
- ✅ Windows (10, 11)
Step 1: Install Dependencies
On macOS/Linux:
./install.sh
On Windows:
install.bat
Manual installation (any platform):
pip install -r requirements.txt
Step 2: Configure MCP (Manual Installation)
For manual installation, use the full path to the executable:
{
"mcpServers": {
"aws-blogs": {
"command": "/FULL/PATH/TO/aws-blogs-mcp-server",
"args": [],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
},
"disabled": false,
"autoApprove": [
"search_aws_blogs",
"find_blog_by_title",
"get_blog_post",
"get_blog_categories",
"find_similar_blogs"
]
}
}
}
🛠️ Available Features
- search_aws_blogs: Search for blog posts by keywords
- find_blog_by_title: Locate specific blog posts by title
- get_blog_post: Retrieve full content of a blog post
- get_blog_categories: Browse available AWS blog categories
- find_similar_blogs: Find related blog posts
🧪 Testing
Try these example queries in your AI assistant:
- "Search for AWS Lambda blogs"
- "Find blog posts about Amazon Bedrock"
- "Get the latest AWS security blog posts"
- "Show me blogs about cost optimization"
🔧 Troubleshooting
Common Issues
uvx not found:
pip install uv
"Command not found" or "Module not found":
- Verify Python 3.8+ is installed:
python --version - For manual installation:
pip install -r requirements.txt - Use absolute paths in MCP configuration
Permission denied (macOS/Linux):
chmod +x aws-blogs-mcp-server
Testing the Server Directly
Using uvx:
uvx aws-blogs-mcp-server
Manual installation:
./aws-blogs-mcp-server # macOS/Linux
python aws-blogs-mcp-server.py # Windows/Universal
📦 Package Information
- PyPI Package: https://pypi.org/project/aws-blogs-mcp-server/
- Version: 1.0.0
- License: MIT
🆘 Support
If you encounter issues:
- Recommended: Use the uvx installation method
- Check that Python 3.8+ is installed
- Verify your MCP client supports the configuration format
- Use absolute paths for manual installations
- Check your IDE's MCP server panel for error messages
📄 License
MIT License - see LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aws_blogs_mcp_server-1.0.2.tar.gz.
File metadata
- Download URL: aws_blogs_mcp_server-1.0.2.tar.gz
- Upload date:
- Size: 29.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75207ee12d676fd1cd1933c5161fadc457c2b494904859c7891149c739fcdc35
|
|
| MD5 |
8a90a7a9fcc6664870baf1754fa69950
|
|
| BLAKE2b-256 |
405cca9898632f2c875445ff70369a6dc829d41e24297e3ff42d06cac80704c2
|
File details
Details for the file aws_blogs_mcp_server-1.0.2-py3-none-any.whl.
File metadata
- Download URL: aws_blogs_mcp_server-1.0.2-py3-none-any.whl
- Upload date:
- Size: 37.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53664c828b93b6603381ea09a93b9eb5ab2e5f20e17c7899dc315eadeecf0163
|
|
| MD5 |
612bd2d2462f6f9b9b67b600d17e2c4c
|
|
| BLAKE2b-256 |
5bc3b30d25b58354567c5b2d70ec089bf910cd65920426fd9c6a837f057edca6
|