Ai Briefing
liveAI/MLTechnologyNewsAI Briefing — daily digest of AI model releases, new MCP servers, SDK updates, and industry news from HN, GitHub, and AI company blogs.
Tools
get_briefingGet today
No parameters required.
Try it
search_developmentsSearch for new tools, APIs, MCP servers, and frameworks by keyword. Returns matching developments across HN, GitHub, HuggingFace, and AI company blogs. Use for queries like "new MCP servers", "vector
No parameters required.
Try it
get_recentGet recent tool and API releases filtered by category, source, or timeframe. Categories: mcp, tool, agent_framework, open_source, model_release, integration, infrastructure, product, paper. Sources: h
No parameters required.
Try it
get_model_landscapeGet recent AI model releases — what models shipped, from which companies, what they can do. Useful for knowing what
No parameters required.
Try it
get_timelineGet a chronological timeline of AI developments between two dates. Useful for understanding what happened during a specific period.
No parameters required.
Try it
get_ai_toolbeltGet the latest tools, features, and capabilities you can use RIGHT NOW. Returns new Claude Code features, MCP servers, SDK updates, CLI tools, and integrations. Call this to discover what new tools ar
No parameters required.
Try it
get_ai_newsGet AI industry news — model releases, funding rounds, acquisitions, policy changes, benchmark results. Separate from toolbelt; this is about what happened in the AI industry, not tools you can use.
No parameters required.
Try it
what_happenedNatural language query about recent tools and developments. Ask "any new MCP servers this week", "latest Claude tools", "new open source frameworks", "what APIs launched recently". Returns the most re
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/ai-briefing/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/ai-briefing/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_briefing","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("get_briefing", {});// Or ask in plain English:
const answer = await px.ask("ai briefing — daily digest of ai model releases, new mcp servers, sdk updates, and industry news from hn, github, and ai company blogs");