by puremd
pure.md provides unblock-url extraction and search-web features for reliable info, scrape bing data, and supports scrape
Converts web pages and documents into clean markdown format through a web service that bypasses bot detection and renders JavaScript content.
pure.md is an official MCP server published by puremd that provides AI assistants with tools and capabilities via the Model Context Protocol. pure.md provides unblock-url extraction and search-web features for reliable info, scrape bing data, and supports scrape It is categorized under search web.
You can install pure.md in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
pure.md is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Fetch and extract information from websites automatically
Example
Research competitor pricing, scrape product reviews, monitor news mentions
Automate 5-10 hours/week of manual web research
Track website changes, new content, price updates
Example
Monitor competitor blog for new posts, track stock availability, watch for pricing changes
Stay informed without manual checking, never miss important updates
Extract structured data from multiple websites
Example
Compile product listings from 10 e-commerce sites, aggregate job postings, collect real estate data
Build datasets 100x faster than manual copying
Share your MCP server with the developer community
Strong directory entry: pure.md surfaces stars and publisher context so we could sanity-check maintenance before adopting.
We wired pure.md into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Strong directory entry: pure.md surfaces stars and publisher context so we could sanity-check maintenance before adopting.
pure.md is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
pure.md has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
pure.md has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
According to our notes, pure.md benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
According to our notes, pure.md benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
We wired pure.md into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
We evaluated pure.md against two servers with overlapping tools; this profile had the clearer scope statement.
showing 1-10 of 29
Welcome to the Model Context Protocol (MCP) server for pure.md.

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 blockedsearch-web - Search the web for a query and concatenate results into markdownThe 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.
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 ("").
PUREMD_API_KEY value in your MCP client's configuration file (see below)Add the following to your ~/.cursor/mcp.json file:
{
"mcpServers": {
"pure.md": {
"command": "npx",
"args": ["-y", "puremd-mcp"],
"env": {
"PUREMD_API_KEY": "<TOKEN>"
}
}
}
}
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>"
}
}
}
}
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>"
}
}
}
}
To install puremd-mcp for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @puremd/puremd-mcp --client claude
Interact with services that don't offer APIs
Example
Check form submissions, validate website functionality, test user flows
Automate interactions with any website, even without API
Prerequisites
Time Estimate
20-40 minutes including configuration and testing
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
MCP server handles HTTP requests, HTML parsing, JavaScript rendering (if headless browser), and returns structured data to Claude.
Protocols
Compatibility
✓ Use when
Use for research automation, content monitoring, data aggregation from multiple sources, and when official APIs don't exist. Best for read-only information gathering.
✗ Avoid when
Avoid for sites with APIs (use API instead), sites that explicitly forbid scraping, when data is copyrighted, or for login-required content without proper authorization.