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/mcpConnection URL
https://readable.page/mcpProtocol
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:
url(string, required): The URL to readformat(enum, required): Output format -'md'for Markdown or'html'for HTML
Returns:
MCP content response with the article content as text:
{
"content": [
{
"type": "text",
"text": "Article content in requested format..."
}
]
}