- Home
- MCP servers
- The Verge News
The Verge News
- javascript
3
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"manimohans-verge-news-mcp": {
"command": "node",
"args": [
"/absolute/path/to/verge-news-mcp/build/index.js"
]
}
}
}You can run a compact MCP server that fetches and searches The Verge news feed. It exposes tools to get today’s headlines, a random slice of the past week, and keyword-based searches, making it easy to build apps or chat assistants that stay up to date with Verge coverage.
How to use
Connect to the Verge News MCP server from any MCP client. You will access three built-in tools: get-daily-news to fetch the latest 24 hours of Verge articles, get-weekly-news to retrieve a random selection from the past seven days, and search-news to find articles containing a keyword.
How to install
Prerequisites: you need Node.js and npm installed on your system.
Clone the repository, install dependencies, and build the project.
# Clone the repository
git clone https://github.com/manimohans/verge-news-mcp.git
cd verge-news-mcp
# Install dependencies
npm install
# Build the project
npm run build
Additional notes
Configuration in MCP clients uses a local runtime command. The server runs as a local process accessed via a stdio interface.
Configuration and notes
{
"mcpServers": {
"verge_news": {
"command": "node",
"args": ["/absolute/path/to/verge-news-mcp/build/index.js"]
}
}
}
Troubleshooting
If the server fails to start, verify that Node.js and npm are installed, then confirm the build output exists at the specified path. Ensure you use the exact path to the built index.js as shown in the configuration snippet.
Available tools
get-daily-news
Fetches the latest Verge articles published in the last 24 hours.
get-weekly-news
Fetches Verge articles from the past week; returns a random selection of 10 items.
search-news
Searches Verge articles containing a specific keyword with an optional look-back window.