ai-agent-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
ai-agent-mcp by alexey-tyurin | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 4 | ★ 85,748 |
| 30d uses | — | — |
| Score | 33 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsSecurityDeveloper Tools | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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"]
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.