MCP Catalogs
Home

filesystem vs novyx-mcp

Side-by-side comparison to help you pick between these two MCP servers.

filesystem
by modelcontextprotocol
novyx-mcp
by novyxlabs
Stars★ 85,748★ 30
30d uses
Score7746
Official
Categories
File SystemDeveloper ToolsProductivity
AI / LLM ToolsKnowledge GraphDeveloper Tools
LanguageTypeScriptPython
Last committhis monththis month

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

novyx-mcp · Summary

A comprehensive MCP server providing persistent memory and governance for AI agents with 120+ tools.

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

novyx-mcp · Use cases

  • Multi-agent collaboration with shared memory spaces and fine-grained permissions
  • Audit trails and rollback capabilities for regulated AI applications
  • Policy-as-code implementation for governed AI actions with approval workflows

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.

novyx-mcp · Install

pip install novyx-mcp

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "novyx-memory": {
      "command": "python",
      "args": ["-m", "novyx_mcp"],
      "env": {
        "NOVYX_API_KEY": "nram_your_key_here"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.