MCP Catalogs
Home

RedNote-MCP vs filesystem

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

RedNote-MCP
by iFurySt
filesystem
by modelcontextprotocol
Stars★ 1,053★ 85,748
30d uses
Score4777
Official
Categories
Web Scrapingsocial-mediaProductivity
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit12 mo agothis month

RedNote-MCP · Summary

RedNote MCP server provides programmatic access to XiaoHongShu content through search and URL fetching.

filesystem · Summary

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

RedNote-MCP · Use cases

  • Content research by searching XiaoHongShu with specific keywords
  • Retrieving detailed note content from known XiaoHongShu URLs
  • Automating content collection from the XiaoHongShu platform

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

RedNote-MCP · Install

Installation

  1. Install prerequisites:
npx playwright install
  1. Install via npm:
npm install -g rednote-mcp
  1. Initialize authentication:
rednote-mcp init
  1. Configure in Claude Desktop:
{
  "mcpServers": {
    "RedNote MCP": {
      "command": "rednote-mcp",
      "args": ["--stdio"]
    }
  }
}

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.