Ai Briefing
live DeveloperAI Briefing MCP — Keep AI models current on industry developments
Tools
get_briefing Get today
No parameters required.
Try it
search_developments Search 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_recent Get 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_landscape Get recent AI model releases — what models shipped, from which companies, what they can do. Useful for knowing what
No parameters required.
Try it
get_timeline Get 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_toolbelt Get 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_news Get 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_happened Natural 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 mcp — keep ai models current on industry developments");