MCP Server — Early Access

Let Claude and Cursor brief articles for you.

Sornic's MCP server lets any AI agent turn article URLs into structured briefings — summary, key takeaways, topics, and difficulty — without leaving your workflow.

What is MCP?

MCP (Model Context Protocol) lets AI assistants like Claude call external tools directly. Instead of copying article URLs, switching tabs, and pasting summaries back — your AI does it in one step. You just ask.

Available tools

sornic_briefingMain tool

URL → full briefing. Summary, takeaways, topics, difficulty, listen time. Use this for almost everything.

Input: { url: string }
sornic_summarize

URL → summary + takeaways only. Faster, uses fewer credits.

Input: { url: string }
sornic_extract

URL → clean article text. Removes ads, nav, and boilerplate. Useful for feeding text into other tools.

Input: { url: string }

Setup — Claude Desktop

Add this to your claude_desktop_config.json:

json — claude_desktop_config.json
{
  "mcpServers": {
    "sornic": {
      "type": "http",
      "url": "https://sornic.com/api/mcp",
      "headers": {
        "Authorization": "Bearer sk_sornic_<your-key>"
      }
    }
  }
}

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS)

Setup — Cursor

Add this to your project or global .mcp.json:

json — .mcp.json
{
  "mcpServers": {
    "sornic": {
      "type": "http",
      "url": "https://sornic.com/api/mcp",
      "headers": {
        "Authorization": "Bearer sk_sornic_<your-key>"
      }
    }
  }
}

What you can say to your AI

Brief this article for me: https://example.com/article
Summarize these 3 links and tell me which is worth reading first.
Extract the key takeaways from this post and put them in bullet points.
What topics does this article cover? https://example.com/post

Get your API key to connect

Free API keys included. Login required. 50 briefings/month on the free tier.