MCP.so
Sign In

go_mcp_server_mdurl

@hightemp

About go_mcp_server_mdurl

A simple MCP (Model Context Protocol) server that provides tools for converting web content to Markdown format.

Basic information

Category

Other

Runtime

go

Transports

stdio

Publisher

hightemp

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "go_mcp_server_mdurl": {
      "command": "npx",
      "args": [
        "go-mdurl-mcp-server",
        "-t",
        "stdio"
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is go_mcp_server_mdurl?

An MCP (Model Context Protocol) server written in Go that converts URL content to Markdown. It provides two tools for fetching and converting web content and is designed for integration with AI assistants that support MCP.

How to use go_mcp_server_mdurl?

Run the binary with -t stdio for stdio mode or -t sse -h 0.0.0.0 -p 8890 for SSE mode (default is SSE). Alternatively, use the npm wrapper via npx go-mdurl-mcp-server. Configuration examples are provided for Claude Code, Codex CLI, and Cursor.

Key features of go_mcp_server_mdurl

  • Converts URL content to Markdown
  • Extracts main article content from a URL
  • Converts entire HTML of a URL to Markdown
  • Supports stdio and SSE transport modes
  • Available as a Go binary or npm package
  • Compatible with multiple MCP clients

Use cases of go_mcp_server_mdurl

  • Fetch web article content as Markdown for AI summarization
  • Convert full webpage HTML to Markdown for offline reading or processing
  • Integrate with Claude Code to retrieve web content as Markdown in a chat
  • Use with Codex CLI for automatic web-to-Markdown conversion in AI workflows

FAQ from go_mcp_server_mdurl

What tools does go_mcp_server_mdurl provide?

Two tools: markdown_content_of_url (extracts main article content) and markdown_all_html_of_url (converts entire HTML from a URL).

What are the runtime requirements?

Go 1.23 or higher is required to build and run the server.

How can I run go_mcp_server_mdurl?

It operates in stdio or SSE mode. Use -t stdio for stdio, or -t sse -h 0.0.0.0 -p 8890 for SSE; SSE is the default.

Is there an npm package for go_mcp_server_mdurl?

Yes, an npm wrapper is provided. Run it with npx go-mdurl-mcp-server -t stdio. The README includes instructions for specific versions and local tarballs.

Which MCP clients are supported?

Configuration examples are given for Claude Code, Codex CLI, and Cursor.

Comments

More Other MCP servers