This is a TypeScript-based MCP server that allows searching for New York Times articles from the last 30 days based on a keyword. It demonstrates core MCP concepts by providing: - Tools for searching articles - Integration with the New York Times API - searcharticles - Search NYTimes articles from the last 30 days based on a keyword - Takes keyword as a required parameter - Returns a list of artic
Add this skill
npx mdskills install angheljf/nytWell-documented MCP server with clear setup and useful NYT search capability
1# NYTimes Article Search MCP Server23[](https://smithery.ai/server/nyt)45This is a TypeScript-based MCP server that allows searching for New York Times articles from the last 30 days based on a keyword. It demonstrates core MCP concepts by providing:67- Tools for searching articles8- Integration with the New York Times API9101112<a href="https://glama.ai/mcp/servers/ylg4ai4vin"><img width="380" height="200" src="https://glama.ai/mcp/servers/ylg4ai4vin/badge" alt="NYTimes Article Search Server MCP server" /></a>1314## Features1516### Tools17- `search_articles` - Search NYTimes articles from the last 30 days based on a keyword18 - Takes `keyword` as a required parameter19 - Returns a list of articles with title, abstract, URL, published date, and author2021## Development2223Install dependencies:24```bash25npm install26```2728Build the server:29```bash30npm run build31```3233For development with auto-rebuild:34```bash35npm run watch36```3738### Debugging3940Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector), which is available as a package script:4142```bash43npm run inspector44```4546The Inspector will provide a URL to access debugging tools in your browser.4748## Installation4950### Installing via Smithery5152To install NYTimes Article Search for Claude Desktop automatically via [Smithery](https://smithery.ai/server/nyt):5354```bash55npx -y @smithery/cli install nyt --client claude56```5758### Manual Installation59To use with Claude Desktop, add the server config:6061On MacOS: `~/Library/Application Support/Claude/claude_desktop_config.json`62On Windows: `%APPDATA%/Claude/claude_desktop_config.json`6364```json65{66 "mcpServers": {67 "nyt": {68 "command": "node",69 "args": ["path/to/your/build/index.js"],70 "env": {71 "NYTIMES_API_KEY": "your_api_key_here"72 }73 }74 }75}76```7778## Environment Variables7980Create a `.env` file in the root of your project and add your New York Times API key:8182```83NYTIMES_API_KEY=your_api_key_here84```8586## Running the Server8788After building the project, you can run the server with:8990```bash91node build/index.js92```9394The server will start and listen for MCP requests over stdio.9596## License9798This project is licensed under the MIT License.99
Full transparency — inspect the skill content before installing.