Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

puremd-mcp

MCP.Pizza Chef: puremd

puremd-mcp is an MCP server that integrates the pure.md service to enable MCP clients to unblock, scrape, and search web content reliably. It converts web pages, PDFs, and images into markdown, bypassing bot detection and rendering JavaScript for SPAs. Acting like a CDN, it caches markdown content globally to reduce load on origin servers. This server empowers local agents to fetch and process web content seamlessly, enhancing their data access capabilities.

Use This MCP server To

Unblock web content for MCP clients behind bot detection Scrape web pages and convert them to markdown format Search web content through MCP clients using pure.md Cache markdown content globally to reduce server load Enable MCP clients to fetch JavaScript-rendered SPA content Convert PDFs and images to markdown for LLM consumption Integrate web content delivery into AI agents and scripts

README

pure.md MCP server

smithery badge

Welcome to the Model Context Protocol (MCP) server for pure.md.

pure.md - Markdown delivery network for LLMs

pure.md lets your scripts, APIs, apps, agents, etc reliably access web content in markdown format -- simply prefix any URL with pure.md/. It avoids bot detection and renders JavaScript for SPAs, and can convert HTML, PDFs, images, and more into pure markdown. Like a CDN for markdown content, it globally caches responses for future requests to the same resource, relieving stress on origin web servers.

Without puremd-mcp, local agents may fail to fetch web content. puremd-mcp teaches MCP clients like Cursor, Windsurf, and Claude Desktop how to adopt the functionality of pure.md, giving them web unblocking and searching capabilities.

puremd-mcp comes with two tools:

  • unblock-url - Extract markdown from web pages without getting blocked
  • search-web - Search the web for a query and concatenate results into markdown

The Model Context Protocol, developed by Anthropic, is an open standard that enables AI systems to seamlessly interact with an ecosystem of tooling. With it, MCP clients like Cursor, Windsurf, and Claude Desktop can learn how to use a variety of APIs and other functionality.

Authentication

Generating an API key is an optional step that unlocks higher rate limits. If you'd like to use the pure.md MCP server anonymously, simply set your PUREMD_API_KEY value to empty string ("").

  1. Sign up for a new account at pure.md — it's free to sign up!
  2. In the dashboard, generate a new API token
  3. Copy the token, and use it for the PUREMD_API_KEY value in your MCP client's configuration file (see below)

Client configuration

Cursor

Add the following to your ~/.cursor/mcp.json file:

{
  "mcpServers": {
    "pure.md": {
      "command": "npx",
      "args": ["-y", "puremd-mcp"],
      "env": {
        "PUREMD_API_KEY": "<TOKEN>"
      }
    }
  }
}

Windsurf

Add the following to your ./codeium/windsurf/model_config.json file:

{
  "mcpServers": {
    "pure.md": {
      "command": "npx",
      "args": ["-y", "puremd-mcp"],
      "env": {
        "PUREMD_API_KEY": "<TOKEN>"
      }
    }
  }
}

Claude Desktop

Add the following to your ~/Library/Application\ Support/Claude/claude_desktop_config.json file:

{
  "mcpServers": {
    "pure.md": {
      "command": "npx",
      "args": ["-y", "puremd-mcp"],
      "env": {
        "PUREMD_API_KEY": "<TOKEN>"
      }
    }
  }
}

Installing via Smithery

To install puremd-mcp for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @puremd/puremd-mcp --client claude

puremd-mcp FAQ

How does puremd-mcp help MCP clients fetch web content?
puremd-mcp integrates pure.md functionality, enabling clients to unblock and scrape web content reliably, including JavaScript-rendered pages and PDFs, by converting them to markdown.
What types of content can puremd-mcp convert to markdown?
It can convert HTML web pages, single-page applications (SPAs), PDFs, images, and more into markdown format for easy consumption by LLMs.
Does puremd-mcp cache content?
Yes, it globally caches markdown responses to reduce load on origin servers and speed up repeated requests.
Which MCP clients are compatible with puremd-mcp?
Clients like Cursor, Windsurf, and Claude Desktop can adopt puremd-mcp to gain web unblocking and searching capabilities.
Is puremd-mcp useful for bypassing bot detection?
Yes, it avoids bot detection mechanisms, allowing MCP clients to access content that might otherwise be blocked.
Can puremd-mcp handle JavaScript-heavy websites?
Yes, it renders JavaScript for single-page applications (SPAs) to provide accurate markdown content.
How does puremd-mcp improve local agent functionality?
By enabling reliable web content fetching and conversion, it prevents local agents from failing when accessing web resources.
What LLM providers can benefit from puremd-mcp?
puremd-mcp supports integration with LLMs from OpenAI, Anthropic (Claude), and Google (Gemini), enhancing their web content access.