MCP Catalogs
Home

mcp-server-requests vs filesystem

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

mcp-server-requests
by coucya
filesystem
by modelcontextprotocol
Stars★ 7★ 85,748
30d uses
Score3777
Official
Categories
Web ScrapingDeveloper ToolsAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit6 mo agothis month

mcp-server-requests · Summary

MCP server for HTTP requests with web fetching, content filtering, and markdown conversion capabilities.

filesystem · Summary

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

mcp-server-requests · Use cases

  • LLMs fetching and processing web content for research or analysis
  • Automating API interactions through MCP tool calling
  • Web scraping with content filtering and format conversion

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

mcp-server-requests · Install

git clone https://github.com/coucya/mcp-server-requests.git
cd mcp-server-requests
pip install .

**Claude Desktop Configuration** Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-server-requests": {
      "command": "python",
      "args": [
        "-m",
        "mcp_server_requests"
      ]
    }
  }
}

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.