MCP Server proxy for Amazon Bedrock AgentCore Runtime
Project description
OpsGuide MCP Proxy
A stateless Model Context Protocol (MCP) server proxy for OpsGuide's Amazon Bedrock AgentCore Runtime. This proxy creates fresh connections for each request, ensuring no sessions are maintained.
Overview
This stateless proxy server acts as a bridge between:
- MCP clients (like Claude Desktop, Cursor) that communicate via stdio
- Amazon Bedrock AgentCore Runtime that hosts your MCP server via HTTP
Claude Desktop ↔ opsguide-mcp (stateless proxy) ↔ Fresh HTTP Connection ↔ Bedrock AgentCore ↔ Your Tools
Key Features
- ✅ Stateless Design: No persistent connections or sessions
- ✅ Fresh Connections: Each request creates a new connection to Bedrock
- ✅ Tool Proxying: Forwards
list_toolsandcall_toolrequests - ✅ Simple Configuration: Only requires API_KEY
Features
- Protocol Bridge: Converts between stdio (MCP client) and HTTP (Bedrock AgentCore)
- Tool Proxying: Forwards all tool calls to your Bedrock-hosted MCP server
- Resource Access: Proxies resource reading and listing
- Prompt Support: Forwards prompt operations
- uvx Compatible: Easy installation and usage with
uvx - Environment Configuration: Uses standard environment variables
Prerequisites
- Python 3.10 or higher
uvpackage manager- Amazon Bedrock AgentCore Runtime with deployed MCP server
- Valid API key and agent ARN
Installation
For Claude Code
Add this configuration to your Claude Code MCP settings:
{
"mcpServers": {
"opsguide-mcp": {
"command": "uvx",
"args": ["opsguide-mcp@latest"],
"env": {
"API_KEY": "your-bearer-token"
}
}
}
}
Direct Installation
# Install with uvx (recommended)
uvx opsguide-mcp
# Or install with pip
pip install opsguide-mcp
Environment Variables
Only one environment variable is required:
API_KEY: The bearer token for authentication
Hardcoded Configuration:
AGENT_ARN:arn:aws:bedrock-agentcore:us-east-1:654654574429:runtime/opsguide_mcp_server_example-feNooQ7JbBAWS_REGION:us-east-1
Example .env file
API_KEY=eyJraWQiOiI3RG1ZaXlQbnpoUXR6cmRXNmtvWEd5anhaZU9FaitXcHBpck1rcDlvbHFjPSIsImFsZyI6IlJTMjU2In0...
Usage
With Claude Code
- Configure the MCP server in Claude Code settings (see installation section)
- Restart Claude Code
- Your Bedrock-hosted MCP tools will be available in Claude Code
Command Line
# Run directly
opsguide-mcp
# Run with uvx
uvx opsguide-mcp
# Run with environment variable
API_KEY="your-bearer-token" opsguide-mcp
How It Works
- Startup: The proxy server reads your environment variables
- Connection: Establishes HTTP connection to Bedrock AgentCore Runtime
- Discovery: Lists available tools, resources, and prompts from your MCP server
- Proxying: Forwards all MCP requests from Claude Code to Bedrock AgentCore
- Response: Returns results back to Claude Code via stdio
Troubleshooting
Common Issues
Connection Failed
- Verify your
API_KEYis correct and not expired - Check that your Bedrock AgentCore runtime is running
- Ensure you have network access to bedrock-agentcore.us-east-1.amazonaws.com
No Tools Available
- Check that your MCP server is properly deployed in Bedrock AgentCore
- Verify the runtime is in "DEFAULT" qualifier state
- Check logs for connection errors
Authentication Errors
- Ensure your API_KEY (bearer token) is valid and not expired
- Verify the token has permission to invoke the specified runtime
Debug Mode
Run with debug logging:
PYTHONPATH=. python -m bedrock_mcp_proxy.server
Development
Local Development
# Clone the repository
git clone https://github.com/your-username/opsguide-mcp
cd opsguide-mcp
# Install dependencies
uv sync
# Run locally
uv run opsguide-mcp
Testing
# Test the connection
python test_connection.py
Security Considerations
- API Keys: Store API keys securely using environment variables or secure credential management
- Network Access: The proxy requires outbound HTTPS access to AWS Bedrock AgentCore
- Authentication: Bearer tokens should be rotated regularly
- Logging: Be careful not to log sensitive information
License
MIT License - see LICENSE file for details.
Support
For issues related to:
- This proxy: Open an issue on this repository
- Bedrock AgentCore: Consult AWS documentation
- Claude Code: Check Claude Code documentation
Project details
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 opsguide_mcp-0.1.2.tar.gz.
File metadata
- Download URL: opsguide_mcp-0.1.2.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9dcefb9cb8a0932721ae0945e20df5c75646744afd88291e92327970d46ca97
|
|
| MD5 |
ee53d854274eaef0293dc8c5398e715b
|
|
| BLAKE2b-256 |
ab2131766ac126293e2c905c9758213c22ca18e8bb7df573dc3fd383e6404e61
|
File details
Details for the file opsguide_mcp-0.1.2-py3-none-any.whl.
File metadata
- Download URL: opsguide_mcp-0.1.2-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
801851fa6c69d8fccbd08b605f8620002e6ff6e280d04c099523627521ceb41c
|
|
| MD5 |
c457247222957c75af9ecf709cf8daa1
|
|
| BLAKE2b-256 |
300480d1382380e7acfa943d4a713427ef77a2eb2a2abef919dd5698c430b07f
|