JustContent MCP Server

JustContent provides an MCP (Model Context Protocol) server that allows any compatible LLM to fetch and read web articles.

Quick Start

Install in Claude Code

claude mcp add --transport http readable https://readable.page/mcp

Connection URL

https://readable.page/mcp

Protocol

Uses Streamable HTTP transport (MCP spec 2025-03-26)

Available Tools

read

Reads an article from a URL and returns cleaned content as markdown or HTML.

Parameters:

Returns:

MCP content response with the article content as text:

{
  "content": [
    {
      "type": "text",
      "text": "Article content in requested format..."
    }
  ]
}