MCP Catalogs
Home

nerve vs filesystem

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

nerve
by evilsocket
filesystem
by modelcontextprotocol
Stars★ 1,320★ 85,748
30d uses
Score5077
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit9 mo agothis month

nerve · Summary

Nerve is an Agent Development Kit with native MCP support, allowing agents to be defined in YAML and act as both MCP client and server.

filesystem · Summary

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

nerve · Use cases

  • Building multi-step automation workflows with shared context between agents
  • Creating MCP servers in YAML configuration for standardized tool exposure
  • Benchmarking and evaluating LLM agents with reproducible test cases

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

nerve · Install

Install the Nerve ADK with pip:

pip install nerve-adk

To use as an MCP client, configure your client with:

{
  "mcpServers": {
    "nerve": {
      "command": "python",
      "args": ["-m", "nerve.mcp"],
      "env": {}
    }
  }
}

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.

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