Metadata-Version: 2.4
Name: mcp-bastion-groq
Version: 0.1.0
Summary: MCP-Bastion security middleware for Groq — prompt injection, PII, and rate-limit protection for ultra-fast LLM inference
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: bastion,groq,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: groq>=0.5.0
Requires-Dist: mcp-bastion-python>=1.0.11
Description-Content-Type: text/markdown

# mcp-bastion-groq

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

## Install

```bash
pip install mcp-bastion-groq
```

## Usage

```python
from mcp_bastion_groq import SecureGroq

client = SecureGroq()  # uses GROQ_API_KEY from env
print(client.chat("What is MCP?"))
```

## Features

- Content filtering and prompt injection detection
- Rate limiting per caller
- PII redaction

## License

MIT
