Metadata-Version: 2.4
Name: mcp-bastion-azure
Version: 0.1.1
Summary: MCP-Bastion security middleware for Azure OpenAI Service. Prompt injection, PII, and rate-limit protection.
Project-URL: Homepage, https://github.com/vaquarkhan/MCP-Bastion
Project-URL: Repository, https://github.com/vaquarkhan/MCP-Bastion
Author: Viquar Khan
License-Expression: MIT
Keywords: azure,bastion,llm,mcp,openai,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: mcp-bastion-python>=1.0.11
Requires-Dist: openai>=1.0.0
Description-Content-Type: text/markdown

# mcp-bastion-azure

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

## Install

```bash
pip install mcp-bastion-azure
```

## Usage

```python
from mcp_bastion_azure import SecureAzureOpenAI

client = SecureAzureOpenAI(
    azure_endpoint="https://YOUR.openai.azure.com/",
    api_key="YOUR_KEY",
)
print(client.chat("What is MCP?"))
```

## License

MIT
