MCP Catalogs
Home

adonis-mcp vs filesystem

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

adonis-mcp
by 7nohe
filesystem
by modelcontextprotocol
Stars★ 10★ 85,748
30d uses
Score3577
Official
Categories
Developer ToolsAI / LLM ToolsOther
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit10 mo agothis month

adonis-mcp · Summary

AdonisJS package for building remote MCP servers with Server-Sent Events support.

filesystem · Summary

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

adonis-mcp · Use cases

  • Building MCP servers within existing AdonisJS applications
  • Creating custom AI tools with backend logic in AdonisJS
  • Exposing database resources through MCP protocol

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

adonis-mcp · Install

node ace add @7nohe/adonis-mcp

After installation, configure your MCP server in config/mcp.ts:

import { defineConfig } from '@7nohe/adonis-mcp'

export default defineConfig({
  ssePath: '/sse',
  messagesPath: '/messages',
  serverOptions: {
    name: 'mymcp',
    version: '0.0.1',
  },
})

For Claude Desktop, add to config.json:

{
  "mcpServers": {
    "mymcp": {
      "url": "http://localhost:3333/sse"
    }
  }
}

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.