MCP Catalogs
Home

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
Score7736
Official
Categories
File SystemDeveloper ToolsProductivity
AI / LLM ToolsMonitoringDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis month1 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

  1. Clone the repository:

``bash git clone https://github.com/vdineshk/ai-compliance-monitor.git cd ai-compliance-monitor ``

  1. Install dependencies:

``bash npm install ``

  1. Create D1 database:

``bash npx wrangler d1 create ai-compliance-monitor-db # Copy database_id into wrangler.toml ``

  1. 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 ``

  1. Deploy:

``bash npx wrangler deploy ``

Comparison generated from public README + GitHub signals. Last updated automatically.