get_recent

Pack: ai-briefing · Endpoint: https://gateway.pipeworx.io/ai-briefing/mcp

Get recent tool releases filtered by category (e.g., ‘mcp’, ‘agent_framework’, ‘open_source’) or source (e.g., ‘github’, ‘anthropic_blog’). Returns descriptions and metadata.

Parameters

NameTypeRequiredDescription
categorystringnoFilter by category (e.g., model_release, paper, funding)
sourcestringnoFilter by source (e.g., arxiv, hackernews, github)
daysnumbernoLook back N days (default 7)
importancestringnoFilter by importance: low, normal, high, breaking
limitnumbernoMax results (default 20)

Example call

Arguments

{
  "category": "mcp",
  "days": 7
}

curl

curl -X POST https://gateway.pipeworx.io/ai-briefing/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_recent","arguments":{"category":"mcp","days":7}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_recent', {
  "category": "mcp",
  "days": 7
});

More examples

{
  "source": "github",
  "importance": "high",
  "limit": 10
}

Response shape

Always returns: period, total, developments

FieldTypeDescription
periodstringTime period description
totalnumberNumber of developments found
developmentsarrayRecent developments
Full JSON Schema
{
  "type": "object",
  "properties": {
    "period": {
      "type": "string",
      "description": "Time period description"
    },
    "total": {
      "type": "number",
      "description": "Number of developments found"
    },
    "developments": {
      "type": "array",
      "description": "Recent developments",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "description": "Development title"
          },
          "summary": {
            "type": "string",
            "description": "Development summary"
          },
          "url": {
            "type": "string",
            "description": "Source URL"
          },
          "source": {
            "type": "string",
            "description": "Source identifier"
          },
          "category": {
            "type": "string",
            "description": "Development category"
          },
          "importance": {
            "type": "string",
            "description": "Importance level"
          },
          "published_at": {
            "type": "string",
            "description": "Publication timestamp"
          }
        }
      }
    }
  },
  "required": [
    "period",
    "total",
    "developments"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "ai-briefing": {
      "url": "https://gateway.pipeworx.io/ai-briefing/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026