
ai-agent-mcp
by alexey-tyurin·★ 4·Score 33
AI content moderation system using OpenAI's API through Google's ADK and MCP protocol.
Overview
This MCP server provides a content moderation system that leverages OpenAI's moderation API through Google's Agent Development Kit (ADK) and Model Context Protocol (MCP). It features a production-ready design with both SSE and STDIO transport options, allowing seamless integration with various applications. The system filters harmful content before it reaches your AI, providing detailed feedback on why content was blocked.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this MCP server when you need to integrate content moderation into AI applications using Google ADK with OpenAI's API.
When NOT to choose this
Don't choose this if you need an alternative moderation API provider or require authentication beyond API keys.
Tools this server exposes
1 tool extracted from the READMEmoderate_contentChecks user input through OpenAI's moderation API to filter harmful content
Comparable tools
Installation
Installation
- Clone the repository:
git clone https://github.com/alexey-tyurin/ai-agent-mcp.git
cd ai-agent-mcp- Create and activate a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows, use: venv\Scripts\activate- Install dependencies:
pip install -r requirements.txt- Set your OpenAI API key:
export OPENAI_API_KEY="your-api-key-here"For Claude Desktop Integration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"ai-moderation": {
"command": "python",
"args": ["path/to/ai-agent-mcp/moderation_server_sse.py"]
}
}
}FAQ
- What transport methods are supported?
- The system supports both Server-Sent Events (SSE) and Standard I/O (STDIO) transports, with SSE being better for distributed systems and STDIO for single-host deployments.
- Is the OpenAI moderation API free to use?
- Yes, OpenAI's moderation API is free to use, making robust content safety accessible to projects of all sizes.
Compare ai-agent-mcp with
Last updated · Auto-generated from public README + GitHub signals.