MCP Catalogs
Home

mcp-rest-api vs fetch

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

mcp-rest-api
by dkmaker
fetch
by modelcontextprotocol
Stars★ 95★ 85,748
30d uses
Score4776
Official
Categories
Developer ToolsMonitoringWeb Scraping
Web ScrapingAI / LLM ToolsProductivity
LanguageJavaScriptTypeScript
Last commit1 mo agothis month

mcp-rest-api · Summary

TypeScript MCP server for testing REST APIs through MCP clients like Cline.

fetch · Summary

An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.

mcp-rest-api · Use cases

  • Testing API endpoints during development
  • Debugging API responses and error handling
  • Validating API sequences and request/response formats

fetch · Use cases

  • LLMs reading news articles and blogs
  • Content analysis of web pages
  • Retrieving information from public websites
  • Chunked reading of large web documents

mcp-rest-api · Install

Installation

Install the package globally:

npm install -g dkmaker-mcp-rest-api

Configuration

Add to your MCP client configuration (example for Cline):

{
  "mcpServers": {
    "rest-api": {
      "command": "node",
      "args": [
        "C:/Users/<YourUsername>/AppData/Roaming/npm/node_modules/dkmaker-mcp-rest-api/build/index.js"
      ],
      "env": {
        "REST_BASE_URL": "https://api.example.com",
        "AUTH_BEARER": "your-token"
      }
    }
  }
}```

fetch · Install

Installation

**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:

uvx mcp-server-fetch

**Using PIP** Install via pip:

pip install mcp-server-fetch

Then run as:

python -m mcp_server_fetch

Claude Desktop Configuration

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.