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
br0ski777 avatar

AI Text Summarizer API

br0ski777/ai-summarizer-x402
2 toolsSSEregistry active
Summary

This is a paid summarization service that charges 402 USDC per use. It connects via SSE transport to a remote API endpoint and exposes tools for condensing text or URL content into key points, with metrics like compression ratio and estimated reading time. The GitHub repo is sparse on implementation details, but the service pattern is clear: you send content, pay the fee, and get back a structured summary. Reach for this if you're building an agent that needs to process long documents or articles and you're comfortable with the per-call pricing model. The x402 naming suggests this might be part of a broader paid API ecosystem, though the repository doesn't elaborate on authentication or billing mechanics beyond the USDC price point.

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 →

Tools

Public tool metadata for what this MCP can expose to an agent.

2 tools
ai_summarize_textUse this when you need to summarize long text into concise key points. Returns a structured summary with bullet points and reading metrics. 1. summary: condensed text summary (respects maxLength) 2.2 params

Use this when you need to summarize long text into concise key points. Returns a structured summary with bullet points and reading metrics. 1. summary: condensed text summary (respects maxLength) 2.

Parameters* required
maxLengthnumber
Maximum summary length in words (default 200)
textstring
The text to summarize
ai_summarize_urlUse this when you need to summarize a web page by URL. Fetches the page, extracts text, and returns a structured summary with key points and reading metrics. 1. summary: condensed text summary of the2 params

Use this when you need to summarize a web page by URL. Fetches the page, extracts text, and returns a structured summary with key points and reading metrics. 1. summary: condensed text summary of the

Parameters* required
maxLengthnumber
Maximum summary length in words (default 200)
urlstring
URL of the web page to summarize

AI Text Summarizer API

MCP Server x402 License: MIT

AI text and URL summarizer -- key points, word count reduction, reading time. Fast extractive summaries for agents. Pay-per-call via x402 (USDC on Base L2) -- no API key, no signup, no rate-limit wall.

Part of the klymax402 marketplace -- 100 x402 micropayment APIs for AI agents, one wallet, USDC on Base.

Quickstart -- MCP

Add to your MCP client config (Claude Desktop, Cursor, ElizaOS, etc.):

{
  "mcpServers": {
    "ai-summarizer": {
      "url": "https://ai-summarizer.api.klymax402.com/mcp"
    }
  }
}

Quickstart -- HTTP (x402)

curl -X POST "https://ai-summarizer.api.klymax402.com/api/summarize" \
  -H "Content-Type: application/json" \
  -d '{"text":"..."}'
# -> 402 Payment Required, with an x402 payment challenge in the response body

Any x402-aware client (@x402/fetch, x402-agent-tools, ATXP) handles the 402 -> sign -> retry cycle automatically.

Tools

ToolMethodPathPriceDescription
ai_summarize_textPOST/api/summarize$0.03Summarize raw text into key points
ai_summarize_urlGET/api/summarize$0.04Fetch a URL and summarize its content

ai_summarize_text

Use this when you need to summarize long text into concise key points. Returns a structured summary with bullet points and reading metrics.

Parameters

NameTypeRequiredDescription
textstringyesThe text to summarize
maxLengthnumbernoMaximum summary length in words (default 200)

Returns

  • summary -- condensed text summary (respects maxLength)
  • keyPoints -- array of 3-7 extracted key takeaways
  • wordCountOriginal -- word count of input text
  • wordCountSummary -- word count of output summary
  • reductionPercent -- percentage of text reduced (e.g. 78%)
  • readingTimeMinutes -- estimated reading time for the summary

Example response:

{"summary":"The article discusses...","keyPoints":["AI adoption grew 40%","Enterprise spending up"],"wordCountOriginal":2500,"wordCountSummary":180,"reductionPercent":92,"readingTimeMinutes":1}

When to use: presenting lengthy content to users. Essential for digesting articles, reports, meeting notes, or documentation into actionable summaries.

ai_summarize_url

Use this when you need to summarize a web page by URL. Fetches the page, extracts text, and returns a structured summary with key points and reading metrics.

Parameters

NameTypeRequiredDescription
urlstringyesURL of the web page to summarize
maxLengthnumbernoMaximum summary length in words (default 200)

Returns

  • summary -- condensed text summary of the page content
  • keyPoints -- array of 3-7 key takeaways from the page
  • wordCountOriginal -- word count of the full page text
  • wordCountSummary -- word count of the summary
  • reductionPercent -- percentage of content reduced
  • readingTimeMinutes -- estimated reading time for the summary
  • title -- page title extracted from HTML

Example response:

{"title":"OpenAI Blog","summary":"The post announces...","keyPoints":["GPT-5 launches Q3","API pricing drops 50%"],"wordCountOriginal":4200,"wordCountSummary":200,"reductionPercent":95,"readingTimeMinutes":1}

When to use: citing or referencing web articles. Essential for quickly understanding web pages without reading the full content.

Example agent prompts

  • "Summarize long text into concise key points"
  • "Summarize a web page by URL"

Payment

  • Protocol: x402 -- HTTP-native pay-per-call, no signup, no API key
  • Network: Base L2 (eip155:8453)
  • Asset: USDC
  • Facilitator: Coinbase CDP (primary), PayAI (fallback)
  • Also reachable via ATXP (OAuth-wrapped x402, RFC 9728 protected-resource metadata)

Part of klymax402

100 x402 micropayment APIs for AI agents -- one wallet, USDC on Base, zero signup.

  • Catalog: https://klymax402.com/llms.txt
  • Full API reference: https://klymax402.com/llms-full.txt
  • Live stats: https://klymax402.com/stats

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 →
Registryactive
TransportSSE
UpdatedMay 16, 2026
View on GitHub

More from br0ski777

  • Airdrop Checker API
  • Base DeFi Yield Optimizer API
  • Crypto News Feed API
  • Currency Converter API
  • DEX Swap Quotes API
  • Domain Intelligence API
  • Email Verification API
  • Funding Rate Arbitrage Scanner API
  • Gas Oracle API
  • Hyperliquid Funding Rates API
  • Jupiter Solana Swap Quote API
  • NFT Floor Price & Rarity API
  • Order Book Depth API
  • Password Strength Analyzer API
  • Perpetual Funding Rates API
  • PII Detector API
  • Port Scanner API
  • SEO Page Analyzer
  • SMS Validator API
  • Solana Token Launch Scanner API
  • Token Safety & Contract Risk API
  • Wallet Portfolio Tracker API
  • Barcode Generator API
  • Base64 Codec API