Back to MCP Catalog
NYTimes Article Search MCP Server
SearchTypeScript
A Model Context Protocol server for Search

About this MCP

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.

Documentation

Overview

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.

Available Tools

search_articles

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 articles

Returns: A list of articles with the following information:

  • Title
  • Abstract
  • URL
  • Published date
  • Author

Installation

Prerequisites

Before installing this MCP server, you'll need:

Option 1: Installing via Smithery (Recommended)

The easiest way to install the NYTimes Article Search MCP for Claude Desktop is via Smithery:

npx -y @smithery/cli install nyt --client claude

Option 2: Manual Installation

  1. Clone the repository:
git clone https://github.com/angheljf/nyt
cd nyt
  1. Install dependencies:
npm install
  1. Build the server:
npm run build
  1. Create a .env file in the root directory and add your NYTimes API key:
NYTIMES_API_KEY=your_api_key_here
  1. Configure your AI client to use the MCP server:

For Claude Desktop:

  • On MacOS: Edit ~/Library/Application Support/Claude/claude_desktop_config.json
  • On Windows: Edit %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"
      }
    }
  }
}

Usage Examples

Once installed, you can use the NYTimes Article Search MCP in your conversations with Claude. Here are some example prompts:

  1. "Find me recent articles about climate change"
  2. "What has the New York Times published about artificial intelligence in the last month?"
  3. "Search for articles about the latest developments in quantum computing"

Debugging

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.

License

This MCP server is licensed under the MIT License.

Related MCPs

Web Search MCP Server
SearchJavaScript

Free Google web search integration without API keys

MCP Everything Search
SearchPython

A cross-platform file search tool for Claude using local search utilities

Brave Search MCP Server
SearchTypeScript

Integrate Brave Search API for web and local search capabilities

About Model Context Protocol

Model Context Protocol (MCP) allows AI models to access external tools and services, extending their capabilities beyond their training data.

Generate Cursor Documentation

Save time on coding by generating custom documentation and prompts for Cursor IDE.