The NYTimes Article Search MCP Server provides a seamless way to search for New York Times articles published within the last 30 days using specific keywords. This TypeScript-based server integrates with the New York Times API to deliver relevant news articles directly to your AI assistant. With this MCP, you can enhance your AI assistant's capabilities by giving it access to recent news and information from one of the world's most respected news sources. The server returns comprehensive article details including titles, abstracts, URLs, publication dates, and author information.
The NYTimes Article Search MCP Server allows you to search for New York Times articles from the last 30 days based on keywords. This integration gives your AI assistant access to recent news and information from the New York Times.
This tool allows you to search for NYTimes articles from the last 30 days based on a keyword.
Parameters:
keyword
(required): The search term to find relevant articlesReturns: A list of articles with the following information:
Before installing this MCP server, you'll need:
The easiest way to install the NYTimes Article Search MCP for Claude Desktop is via Smithery:
npx -y @smithery/cli install nyt --client claude
git clone https://github.com/angheljf/nyt
cd nyt
npm install
npm run build
.env
file in the root directory and add your NYTimes API key:NYTIMES_API_KEY=your_api_key_here
For Claude Desktop:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%/Claude/claude_desktop_config.json
Add the following configuration:
{
"mcpServers": {
"nyt": {
"command": "node",
"args": ["path/to/your/build/index.js"],
"env": {
"NYTIMES_API_KEY": "your_api_key_here"
}
}
}
}
Once installed, you can use the NYTimes Article Search MCP in your conversations with Claude. Here are some example prompts:
Since MCP servers communicate over stdio, debugging can be challenging. The repository includes an MCP Inspector for easier debugging:
npm run inspector
This will provide a URL to access debugging tools in your browser.
This MCP server is licensed under the MIT License.