CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
ravixalgorithm avatar

Onto

ravixalgorithm/onto-mcp
1authSTDIOregistry active
Summary

Wraps the Onto Read API to give Claude clean, AI-ready Markdown from any URL without the noise of raw HTML. Exposes three tools: read_url strips a page down to content (typically 90% smaller), score_url returns an AIO readability score with hallucination risk, and read_and_score does both in one call. Useful when you're building agents that need to parse documentation, pricing pages, or articles without burning tokens on React boilerplate and layout markup. Requires an API key from buildonto.dev. Free tier gives you 1,000 requests per month, paid plans start at $9 for 10k. Install via npx in Claude Code, Cursor, Cline, or any MCP host.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Onto MCP Server

The official Onto Model Context Protocol server. Add clean web content reading and AI-readability scoring to Claude Code, Cursor, Cline, Zed, or any MCP-compatible AI client.

What this does

Onto's MCP server exposes these tools to any AI agent:

  • read_url — Read any URL and get back clean, agent-ready Markdown (typically 10× smaller than raw HTML)
  • score_url — Get the AIO (AI-readability) score for any URL with a breakdown of what helps and what hurts AI consumption
  • read_and_score — Both at once: clean content plus quality assessment so the agent knows how much to trust the source
  • batch — Read, score, or extract many URLs (an explicit list or a whole site) in one call
  • map_site — Discover a site's URLs via its sitemap, without reading them
  • extract_data — Return the structured data a page already declares (JSON-LD, OpenGraph, meta)

Every tool response ends with a one-line ⚡ Onto report — reduction, tokens saved, and AIO score — so the value is visible on every call.

This is the official MCP wrapper for the Onto Read API. It's a thin, deterministic layer: Onto cleans and scores with a rule-based engine (no LLM in the loop), so your agent's own model never has to parse raw HTML.

Why use this?

When AI agents read websites today, they parse hundreds of KB of React noise to find a few KB of actual content. This burns tokens and causes hallucinations.

Onto strips the noise server-side, returns the agent-ready format, and reports a confidence score for the source. One tool call, one accurate answer.

Quick start

1. Get an Onto API key

Sign up at app.buildonto.dev and create an API key at Read → Keys.

Free tier: 1,000 credits / month. No credit card.

2. Install in Claude Code

Add to your Claude Code MCP config:

{
  "mcpServers": {
    "onto": {
      "command": "npx",
      "args": ["-y", "@ontosdk/mcp@latest"],
      "env": {
        "ONTO_API_KEY": "onto_sk_live_your_key_here"
      }
    }
  }
}

Restart Claude Code. The Onto tools (read_url, score_url, read_and_score, batch, map_site, extract_data) will appear in the available tools list.

3. Install in Cursor

Add the Onto server to ~/.cursor/mcp.json (all projects) or .cursor/mcp.json (this repo). Or use the UI: Customize (sidebar) → MCPs → add a custom server, same JSON.

{
  "mcpServers": {
    "onto": {
      "command": "npx",
      "args": ["-y", "@ontosdk/mcp@latest"],
      "env": {
        "ONTO_API_KEY": "onto_sk_live_your_key_here"
      }
    }
  }
}

Fully quit Cursor (Cmd+Q / Ctrl+Q) and reopen.

See examples/ for Cline, Zed, and Continue configs.

4. Use it

In Claude Code or Cursor, try:

Read https://stripe.com/pricing using Onto and summarize the pricing tiers.

The agent calls read_url, gets clean Markdown, and returns an accurate summary without parsing hundreds of KB of layout HTML.

Tools

read_url

Returns clean Markdown for a URL with metadata about the extraction (sizes, reduction %, cache state).

Input:

FieldTypeRequiredDescription
urlstringyesPublicly accessible HTTP(S) URL
freshbooleannoIf true, bypass cache (default: false)

score_url

Returns the AIO (AI-readability) score for a URL — 0-100 with a letter grade, hallucination risk, and a structured list of penalties / benefits / recommendations.

Input:

FieldTypeRequiredDescription
urlstringyesURL to score

read_and_score

Returns clean Markdown plus the AIO score in one call. Recommended default for agentic workflows.

Input: same as read_url.

batch

Process many URLs in one call. N credits — one per URL in the list after the list is known. Failed URLs (ok: false) are refunded. Default mode read-and-score is still N, not 2N. Give an explicit list or a base URL whose pages are auto-discovered.

Input:

FieldTypeRequiredDescription
urlsstring[]one ofExplicit list of URLs (max 50). Use this or site.
sitestringone ofBase URL whose pages are auto-discovered via sitemap. Use this or urls.
mode"read" | "read-and-score" | "extract"noWhat to do per URL (default "read-and-score")
limitnumbernoSite mode only: max pages to discover (default 25, max 50)

map_site

Discover a site's URLs (sitemap → on-page links) without reading them. 1 credit per call (not per discovered URL) — use it to plan which pages to read or batch next.

Input:

FieldTypeRequiredDescription
urlstringyesBase URL of the site to map
limitnumbernoMax URLs to return (default 100, max 1000)

extract_data

Return the structured data a page already declares — JSON-LD, OpenGraph, and meta tags — plus the AIO score. Deterministic; no fields are inferred by a model.

Input:

FieldTypeRequiredDescription
urlstringyesURL to extract structured data from

Pricing

TierMonthly creditsPrice
Free1,000$0
Starter10,000$9
Growth100,000$49
Scale500,000$250
EnterpriseCustomContact sales

MCP tool credits match the live API meter:

ToolCredits
read_url1
read_and_score1
score_url0 (free)
extract_data1
map_site1 per call (not per discovered URL)
batchN — one per URL in the list after the list is known; failed URLs (ok: false) are refunded. Default mode read-and-score is still N, not 2N

Connect / OAuth is not a debit.

Manage your subscription at app.buildonto.dev/read/billing. Credit packs ($5–$200) are available for overflow once you're on a paid tier.

Configuration

Environment variables:

  • ONTO_API_KEY (required) — Your Onto API key from app.buildonto.dev/read/keys
  • ONTO_API_BASE (optional) — Override the API base URL (default: https://api.buildonto.dev)

Troubleshooting

"Invalid Onto API key"

Verify your key at app.buildonto.dev/read/keys. If you recently rotated keys, your MCP config may have a stale value.

"Monthly quota exceeded"

You've used your monthly allotment. Upgrade at app.buildonto.dev/read/billing or wait for the monthly reset. Paid tiers can also top up with credit packs.

Tool doesn't appear in Claude Code / Cursor

  1. Verify the config file is valid JSON
  2. Restart the MCP host (Claude Code, Cursor, etc.)
  3. Check the host's MCP logs for connection errors
  4. Make sure npx is on your PATH

"Request timed out"

The target site may be slow or unreachable. Onto's request timeout is 15 seconds. Retry, or try a different URL.

Links

  • Onto homepage: buildonto.dev
  • API documentation: docs.buildonto.dev
  • Dashboard: app.buildonto.dev
  • GitHub issues: github.com/ravixalgorithm/onto-mcp/issues
  • Contact: founder@buildonto.dev

About Onto

Onto is the compatibility layer for the agent web. Three products on one engine:

  • Read (this MCP server + API) — AI developers read any URL cleanly
  • Serve (Next.js SDK) — Site owners serve clean Markdown to AI crawlers
  • Act (coming Q3 2026) — Agents act on websites through semantic intent

Built for AI agents reading the web. Built so they read it correctly.

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Configuration

ONTO_API_KEY*secret

Your Onto API key (get one at https://app.buildonto.dev/read/keys — free tier includes 1,000 requests/month).

ONTO_API_BASE

Optional override for the Onto API base URL. Defaults to https://api.buildonto.dev.

Categories
Documents & Knowledge
Registryactive
Package@ontosdk/mcp
TransportSTDIO
AuthRequired
UpdatedMay 18, 2026
View on GitHub

Related Documents & Knowledge MCP Servers

View all →
servosity avatar
PandaDoc MCP

io.github.servosity/pandadoc-mcp

Every PandaDoc endpoint, plus an offline document pipeline no other PandaDoc tool has - stalled
1
sharedmemoryai avatar
Memory

io.github.sharedmemoryai/memory

Persistent memory for AI agents. Remember, recall, and explore a shared knowledge graph.
1
tencent-lexiang avatar
Tencent Lexiang MCP Server

io.github.tencent-lexiang/lexiang-mcp-server

Tencent Lexiang AI knowledge base MCP server for searching, managing entries, and editing docs.
1
user0856 avatar
Snaprender

io.github.user0856/snaprender

Screenshot, extract content, and render web pages. PNG/JPEG/WebP/PDF, batch, signed URLs.
1
visus-mcp avatar
Visus Mcp

io.github.visus-mcp/visus-mcp

Security-first web access. Sanitizes pages, blocks injection, redacts PII. Now with PDF/JSON/SVG.
1
xiaojiou176-open avatar
Provenote MCP

io.github.xiaojiou176-open/provenote-mcp

First-party Provenote MCP server for drafts, research threads, auditable runs, and knowledge search.
1