filesystem vs ai-compliance-monitor
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | ai-compliance-monitor by vdineshk | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsMonitoringDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
ai-compliance-monitor · Summary
MCP server providing structured regulatory intelligence for AI agents to ensure compliance across jurisdictions.
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-compliance-monitor · Use cases
- AI agents hiring/recruitment screening tools
- Financial services credit scoring systems
- Healthcare medical triage applications
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.
ai-compliance-monitor · Install
Installation via MCP
Add the following to your Claude Desktop configuration:
{
"mcpServers": {
"ai-compliance-monitor": {
"command": "npx",
"args": ["@modelcontextprotocol/server-ai-compliance-monitor"],
"env": {}
}
}
}Self-Hosted Deployment
- Clone the repository:
``bash git clone https://github.com/vdineshk/ai-compliance-monitor.git cd ai-compliance-monitor ``
- Install dependencies:
``bash npm install ``
- Create D1 database:
``bash npx wrangler d1 create ai-compliance-monitor-db # Copy database_id into wrangler.toml ``
- Run migrations and seed data:
``bash npx wrangler d1 migrations apply ai-compliance-monitor-db --remote npx wrangler d1 execute ai-compliance-monitor-db --remote --file=./migrations/0002_seed_data.sql ``
- Deploy:
``bash npx wrangler deploy ``