MCP Catalogs
Home

filesystem vs lyra-tool-discovery

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

filesystem
by modelcontextprotocol
lyra-tool-discovery
by nirholas
Stars★ 85,748★ 25
30d uses
Score7744
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsblockchainAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis monththis month

filesystem · Summary

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

lyra-tool-discovery · Summary

AI-powered discovery tool that finds and analyzes crypto-focused MCP servers across GitHub and npm, generating ready-to-use plugin configurations.

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

lyra-tool-discovery · Use cases

  • Crypto application developers rapidly discovering and integrating MCP servers related to blockchain, DeFi, or NFTs
  • Plugin marketplace operators automating curation and validation of crypto-focused MCP plugins
  • DevOps engineers setting up CI/CD pipelines for automated discovery and deployment of blockchain tooling

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.

lyra-tool-discovery · Install

# Global install (recommended for CLI usage)
pnpm add -g @nirholas/lyra-tool-discovery

# Or with npm
npm install -g @nirholas/lyra-tool-discovery

# Or run directly with npx
npx @nirholas/lyra-tool-discovery discover --help
# Environment variables for AI providers
export OPENAI_API_KEY="sk-..."
export ANTHROPIC_API_KEY="sk-ant-..."
export GITHUB_TOKEN="ghp_..." # Optional for higher rate limits
Comparison generated from public README + GitHub signals. Last updated automatically.