Metadata-Version: 2.4
Name: mcp-bastion-bedrock
Version: 0.1.0
Summary: MCP-Bastion security middleware for AWS Bedrock — prompt injection, PII, and rate-limit protection for cloud AI agents
Project-URL: Homepage, https://github.com/vaquarkhan/MCP-Bastion
Project-URL: Repository, https://github.com/vaquarkhan/MCP-Bastion
Project-URL: Documentation, https://github.com/vaquarkhan/MCP-Bastion/tree/main/integrations/mcp-bastion-bedrock
Author: Viquar Khan
License-Expression: MIT
Keywords: aws,bastion,bedrock,llm,mcp,pii,prompt-injection,security
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Security
Requires-Python: >=3.10
Requires-Dist: boto3>=1.28.0
Requires-Dist: mcp-bastion-python>=1.0.11
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
Requires-Dist: pytest>=7.0.0; extra == 'dev'
Description-Content-Type: text/markdown

# mcp-bastion-bedrock

Security middleware for AWS Bedrock powered by [MCP-Bastion](https://pypi.org/project/mcp-bastion-python/).

Protects your Bedrock API calls from prompt injection, PII leakage, and resource exhaustion.

## Install

```bash
pip install mcp-bastion-bedrock
```

## Usage

```python
from mcp_bastion_bedrock import SecureBedrock

client = SecureBedrock(region_name="us-east-1")
response = client.chat("What is MCP?")
print(response)
```

## Features

- Content filtering on all prompts
- Rate limiting per caller
- Prompt injection detection
- PII redaction

## License

MIT
