MCP Catalogs
Home

context-awesome vs filesystem

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

context-awesome
by bh-rat
filesystem
by modelcontextprotocol
Stars★ 51★ 85,748
30d uses
Score4777
Official
Categories
Developer ToolsAI / LLM ToolsSearch
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

context-awesome · Summary

An MCP server providing access to curated awesome lists with search and section discovery tools.

filesystem · Summary

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

context-awesome · Use cases

  • Research agents can quickly gather high-quality resources on any topic
  • Knowledge workers can find the best tools and libraries for their projects
  • Learning agents can discover relevant educational materials for specific subjects

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

context-awesome · Install

Installation

Remote Server (Recommended)

Add to your MCP client configuration:

**Claude Desktop**

{
  "mcpServers": {
    "context-awesome": {
      "url": "https://www.context-awesome.com/api/mcp"
    }
  }
}

**Cursor/Claude Code**

claude mcp add --transport http context-awesome https://www.context-awesome.com/api/mcp

**Local stdio** (for offline use)

{
  "mcpServers": {
    "context-awesome": {
      "command": "npx",
      "args": ["-y", "context-awesome-mcp", "serve", "--transport", "stdio"],
      "env": {
        "CONTEXT_AWESOME_API_HOST": "https://api.context-awesome.com"
      }
    }
  }
}

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.