ai-agent-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ai-agent-mcp by alexey-tyurin | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 4 | ★ 85,748 |
| 30d uses | — | — |
| Score | 33 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsSecurityDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 13 mo ago | this month |
ai-agent-mcp · Summary
AI content moderation system using OpenAI's API through Google's ADK and MCP protocol.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ai-agent-mcp · Use cases
- Educational platforms ensuring appropriate AI tutor interactions
- Customer service bots preventing abuse while maintaining helpful service
- Content generation tools filtering inappropriate creative content requests
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
ai-agent-mcp · Install
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"]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything