UNPKG

mcp-newsapi

Version:

MCP Server for accessing News API endpoints.

42 lines (41 loc) 987 B
{ "name": "mcp-newsapi", "version": "1.0.0", "description": "MCP Server for accessing News API endpoints.", "main": "build/index.js", "type": "module", "bin": { "mcp-newsapi": "build/index.js" }, "scripts": { "build": "tsc && shx chmod +x build/*.js", "start": "node build/index.js", "lint": "eslint --fix --ext .ts src/", "typecheck": "tsc --noEmit" }, "keywords": [ "mcp", "newsapi", "news", "api" ], "author": "", "license": "ISC", "dependencies": { "@modelcontextprotocol/sdk": "^1.10.2", "newsapi": "^2.4.1", "zod": "^3.24.3" }, "devDependencies": { "@types/node": "^22.15.17", "@typescript-eslint/eslint-plugin": "^8.31.1", "@typescript-eslint/parser": "^8.31.1", "eslint": "^9.25.1", "eslint-config-prettier": "^10.1.2", "eslint-plugin-import": "^2.31.0", "eslint-plugin-prettier": "^5.2.6", "prettier": "^3.5.3", "typescript": "^5.8.3", "shx": "^0.3.4" } }