streamable-httpupdated 2mo ago
Free, cross-lingual compact news briefings for AI agents โ across 89 languages, in one call.
What can you do with claritybriefs?
ClarityBriefs MCP Server
Free, cross-lingual compact news briefings for AI agents โ across 89 languages, in one call.
ClarityBriefs exposes a hosted, read-only Model Context Protocol (MCP) server so AI agents and assistants can pull token-efficient news briefings on any topic โ including foreign-language news pools an English-only agent can't easily reach.
- Endpoint:
https://claritybriefs.com/api/mcp - Transport: Streamable HTTP ยท JSON-RPC 2.0 ยท MCP spec
2025-11-25 - Auth: none for the public tools (anonymous). An optional Bearer API key unlocks Pro briefing-management tools.
- Cost to you: free, attribution-based. Training / bulk use is licensed (RSL 1.0).
- Docs: https://claritybriefs.com/agents ยท llms.txt: https://claritybriefs.com/llms.txt ยท OpenAPI: https://claritybriefs.com/api/agent/openapi.json
Tools (public, no auth)
| Tool | What it does |
|---|---|
get_compact_brief |
Compact briefing on a topic. Cross-lingual: pass source_languages (e.g. ["ko","ja","de"]) to also search foreign news pools โ each article tagged with its source language. |
search_news |
Recent news headlines + sources for a topic. |
suggest_topics |
Popular public topics to brief on. |
A Pro API key (sent as Authorization: Bearer <key>) additionally unlocks briefing-management tools (list / preview / create / pause / resume / rename).
Connect from Claude Desktop
Claude Desktop talks to local (stdio) MCP servers, so use the mcp-remote bridge to reach this hosted HTTP server. Requires Node.js.
Edit your claude_desktop_config.json (Settings โ Developer โ Edit Config) and add:
{
"mcpServers": {
"claritybriefs": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://claritybriefs.com/api/mcp"]
}
}
}
For the Pro tools, add your API key:
{
"mcpServers": {
"claritybriefs": {
"command": "npx",
"args": [
"-y", "mcp-remote", "https://claritybriefs.com/api/mcp",
"--header", "Authorization: Bearer YOUR_API_KEY"
]
}
}
}
Quit Claude Desktop fully (Cmd+Q) and reopen. The tools appear under the connectors / tools icon.
Call it directly (any MCP client)
curl -s https://claritybriefs.com/api/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","method":"tools/call","id":1,"params":{
"name":"get_compact_brief",
"arguments":{"topic":"artificial intelligence regulation","language":"en","source_languages":["ko","ja","de"],"limit":6}}}'
Each returned article includes headline, summary, source, url, language, published.
Terms
- โ
Search & AI answers โ free, please attribute
claritybriefs.comwith a link when citing. - ๐ AI training / bulk use โ licensed: RSL 1.0 (
ai-train=no). - Returns original third-party source URLs โ please cite the original publishers too.
Links
- Website: https://claritybriefs.com
- Agent docs: https://claritybriefs.com/agents
- OpenAPI: https://claritybriefs.com/api/agent/openapi.json
- Contact / licensing: info@claritybriefs.com
This repository is a connector manifest for the hosted ClarityBriefs MCP server. The server itself is operated at https://claritybriefs.com/api/mcp.
Install
Add claritybriefs to your client. Pick the one you use.
claude mcp add --transport http claritybriefs https://claritybriefs.com/api/mcpcodex mcp add claritybriefs --url https://claritybriefs.com/api/mcp{
"mcpServers": {
"claritybriefs": {
"url": "https://claritybriefs.com/api/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"claritybriefs": {
"type": "http",
"url": "https://claritybriefs.com/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"claritybriefs": {
"url": "https://claritybriefs.com/api/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"claritybriefs": {
"serverUrl": "https://claritybriefs.com/api/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
3 tools
claritybriefs exposes 3 tools to a connected agent.
- get_compact_brief
- Compact briefing on a topic. **Cross-lingual**: pass `source_languages` (e.g. `["ko","ja","de"]`) to also search foreign news pools โ each article tagged with its source language.
- search_news
- Recent news headlines + sources for a topic.
- suggest_topics
- Popular public topics to brief on.
Score
60 / 100
Good
- Documentation22/25
- Maintenance16/25
- Trust6/20
- Capability4/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 70 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 3 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Jun 22, 2026 |