Back to Search
neo_web_url_to_markdown
v0.3.0Fetches web pages and converts them to clean, structured Markdown for agent consumption.
$0.002 / call (Standard Tier)
Updated: Apr 25, 2026
Overview
A powerful web scraping utility that fetches the contents of any web page and converts it into clean, readable Markdown. It acts like a 'Reader View', stripping away ads, navigation menus, and visual clutter so you can focus strictly on the core content and documentation.
Example Input
JSON payload sent to this tool:
{
"Url": "https://example.com/docs"
}Example Output
Formatted JSON response returned by this tool:
{
"title": "Rust Programming Language",
"markdown_content": "# Rust\n\nA language empowering everyone...\n\n## Getting Started\n\nInstall Rust with curl...",
"word_count": 1342,
"source_url": "https://www.rust-lang.org"
}Setup Configuration
Add the following configuration to your MCP general settings or mcp_config.json:
{
"mcpServers": {
"neonia": {
"serverUrl": "https://mcp.neonia.io/mcp?tools=neo_web_url_to_markdown",
"headers": {
"Authorization": "Bearer API_KEY"
}
}
}
}