Wraps The New York Times Developer APIs so you can pull news data, archives, and article metadata directly into Claude. The server connects through Pipeworx, a gateway that hosts 737+ data sources and lets you query them with natural language via ask_pipeworx instead of calling tools manually. You get access to NYT's full developer API surface, from article search to top stories to book reviews. Useful when you're building news analysis workflows, researching current events, or need programmatic access to Times content without managing authentication yourself. Remote only, no local installation needed.
NYT MCP — wraps The New York Times Developer APIs (developer.nytimes.com)
Part of Pipeworx — an MCP gateway connecting AI agents to 737+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"nyt": {
"url": "https://gateway.pipeworx.io/nyt/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 737+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Nyt data" })
The gateway picks the right tool and fills the arguments automatically.
MIT