go_mcp_server_mdurl

go_mcp_server_mdurl

3.6

A simple MCP server that provides tools for converting web content to Markdown format.

Top Comments

The go_mcp_server_mdurl is a Model Context Protocol (MCP) server designed to facilitate the conversion of web content into Markdown format. It operates by extracting the main article content or the entire HTML content from a given URL and converting it into a Markdown format. This server is particularly useful for developers and content creators who need to transform web content into a more readable and portable format. The server supports two modes of operation: stdio and Server-Sent Events (SSE), with SSE being the default mode. This flexibility allows users to choose the mode that best fits their workflow and integration needs.

Features

  • Converts web content to Markdown format.
  • Supports extraction of main article content from a URL.
  • Converts entire HTML content from a URL to Markdown.
  • Operates in stdio and SSE modes.
  • Default operation in SSE mode for real-time updates.

MCP Tools

  • markdown_content_of_url: Extracts the main article content from a URL and converts it to Markdown.
  • markdown_all_html_of_url: Converts the entire HTML content from a URL to Markdown.

Usage with Different Platforms

sse_mode

bash
go_mcp_server_mdurl -t sse -h 0.0.0.0 -p 8888

stdio_mode

bash
go_mcp_server_mdurl -t stdio