Skrape MCP Server
MCP Server for skrape.ai, lets you input any URL and it returns clean markdown for the LLM
Overview
Skrape MCP Server is a tool that converts any webpage into clean, LLM-ready Markdown format, making it ideal for integrating web content into language models like Claude and GPT.
To use the Skrape MCP Server, input any URL into the server, and it will return a structured Markdown output. You can install it via Smithery or manually configure it with your API key.
- Converts web pages to clean, structured Markdown - Removes ads and irrelevant content for clarity - Supports JavaScript rendering for dynamic content - Provides an optional JSON response format for advanced integrations
- Feeding web content into LLMs for processing
- Generating structured documentation from web pages
- Simplifying the integration of web data into applications
Add to your AI client
Use these steps to connect Skrape MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"skrape-mcp-skrapeai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-skrape-mcp-skrapeai"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"skrape-mcp-skrapeai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-skrape-mcp-skrapeai"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"skrape-mcp-skrapeai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-skrape-mcp-skrapeai"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"skrape-mcp-skrapeai": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-skrape-mcp-skrapeai"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"skrape-mcp-skrapeai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-skrape-mcp-skrapeai"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"skrape-mcp-skrapeai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-skrape-mcp-skrapeai"
]
}
}
}FAQ
Can Skrape MCP Server handle all types of web pages?
Yes! It can convert any webpage into Markdown, regardless of its structure.
Is there a cost associated with using Skrape MCP Server?
The server is free to use, but you need an API key from skrape.ai.
How does Skrape MCP Server ensure clean output?
It automatically removes unnecessary elements like ads and menus, focusing on the main content.