top_stories

Pack: nyt · Endpoint: https://gateway.pipeworx.io/nyt/mcp

Get current New York Times top stories for a section (home, world, business, technology, science, health, sports, arts, etc.). Returns titles, abstracts, bylines, and URLs. Example: top_stories({ section: “technology” })

Parameters

NameTypeRequiredDescription
sectionstringnoSection name, e.g. “home”, “world”, “business”, “technology”, “science”, “health”, “sports”, “arts”. Default “home”.
_apiKeystringnoOptional — your own NYT API key for higher limits; omit to use the shared Pipeworx key.

Example call

Arguments

{
  "section": "technology"
}

curl

curl -X POST https://gateway.pipeworx.io/nyt/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"top_stories","arguments":{"section":"technology"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('top_stories', {
  "section": "technology"
});

More examples

{
  "section": "business"
}

Connect

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

{
  "mcpServers": {
    "nyt": {
      "url": "https://gateway.pipeworx.io/nyt/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026