MCP Cursor

Enhance your development workflow with AI-powered MCP tools and extensions for Cursor IDE.

Product

  • MCP Servers
  • Getting Started
  • Documentation
  • Open Source

Resources

  • MCP Specification
  • Cursor IDE
  • MCP GitHub
  • Contributing

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy
Made withfor the developer community
© 2025 MCP Cursor. All rights reserved.
MCP Logo
MCP Cursor
IntroductionMCPs
IntroductionMCPs
3D MCP Cursor Visualization
  1. Home
  2. Servers
  3. Fetch MCP
Fetch MCP Logo - AI-Powered Development Tool for Cursor IDE

Fetch MCP

Model Context Protocol Integration

Overview

A Model Context Protocol server that provides web content fetching capabilities, enabling LLMs to retrieve and process content from web pages. Converts HTML to markdown for easier consumption and supports chunked reading with customizable start positions.

View Repository

Fetch Features

  • •Web content fetching and extraction
  • •HTML to Markdown conversion
  • •Chunked content reading
  • •Customizable content length
  • •Raw content mode
  • •Robots.txt compliance options
  • •Configurable user agent

Fetch Setup & Configuration

Requirements

  • •UV package manager (recommended)
  • •Or Python with pip
  • •Node.js (optional, for enhanced HTML simplification)
  • •Claude Desktop

Installation Instructions

# Using UV (Recommended)
uvx mcp-server-fetch

# Using PIP
pip install mcp-server-fetch
python -m mcp_server_fetch

Configuration

# UV Configuration
{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": [
        "mcp-server-fetch",
        "--ignore-robots-txt",  # Optional
        "--user-agent=YourUserAgent"  # Optional
      ]
    }
  }
}

# PIP Configuration
{
  "mcpServers": {
    "fetch": {
      "command": "python",
      "args": ["-m", "mcp_server_fetch"]
    }
  }
}

Fetch Available Tools

  • •fetch

Fetch Required Inputs

url

Type
string
Description
URL to fetch
Required
Yes

max_length

Type
integer
Description
Maximum number of characters to return
Required
No

start_index

Type
integer
Description
Start content from this character index
Required
No

raw

Type
boolean
Description
Get raw content without markdown conversion
Required
No

Fetch Use Cases

  • •Web content extraction
  • •Article reading and processing
  • •Documentation retrieval
  • •Web scraping
  • •Content analysis
  • •Research assistance
  • •Information gathering

Frequently Asked Questions

A Model Context Protocol server that provides web content fetching capabilities, enabling LLMs to retrieve and process content from web pages. Converts HTML to markdown for easier consumption and supports chunked reading with customizable start positions.
UV package manager (recommended), Or Python with pip, Node.js (optional, for enhanced HTML simplification), Claude DesktopView detailed requirements
Follow the installation instructions in the setup section above.View installation guide

Fetch MCP provides the following tools:

  • •fetch

Featured MCPs

Github MCP - Model Context Protocol for Cursor IDE

Github

This server provides integration with Github's issue tracking system through MCP, allowing LLMs to interact with Github issues.

Sequential Thinking MCP - Model Context Protocol for Cursor IDE

Sequential Thinking

An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process. Break down complex problems into manageable steps, revise and refine thoughts as understanding deepens, and branch into alternative paths of reasoning.

Puppeteer MCP - Model Context Protocol for Cursor IDE

Puppeteer

A Model Context Protocol server that provides browser automation capabilities using Puppeteer. This server enables LLMs to interact with web pages, take screenshots, execute JavaScript, and perform various browser-based operations in a real browser environment.