Fetch News

Provides an MCP server that fetches latest news content from a Git source and processes it with OpenAI integration.
  • other

1

GitHub Stars

other

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": {
    "puwenyin-fetch-news-mcp": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/PuWenyin/fetch-news-mcp.git",
        "fetch-news"
      ],
      "env": {
        "OPENAI_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

You run lightweight MCP servers that expose specific capabilities as standalone processes. This Fetch News MCP Server pulls the fetch-news implementation from a Git source and wires it into the MCP ecosystem so you can access latest news content through a standardized MCP interface and OpenAI-backed processing.

How to use

To use this MCP server with an MCP client, start the server to expose its functionality as a local or remote endpoint. You will provide your MCP client with the ability to fetch the latest news data and, if you integrate with OpenAI, process that content through your existing workflows.

How to install

Prerequisites: ensure you have access to run MCP servers in your environment. You will run the MCP using the provided command and arguments, and the server may rely on an OpenAI API key for processing.

  1. Set the required environment variable for OpenAI API access.

  2. Start the MCP server using the exact command below.

uvx --from git+https://github.com/PuWenyin/fetch-news-mcp.git fetch-news

Additional sections

Configuration for this MCP server uses a single stdio entry. The server runs as a local process and reads its settings from the runtime environment. The only environment variable shown in the config is the OpenAI API key, which you should supply securely in your deployment environment.

Environment variable for the server:

  • OPENAI_API_KEY: Your OpenAI API key used for content processing.
Example runtime command with the required environment variable:
- OPENAI_API_KEY=sk-xxxxxxxxx
- uvx --from git+https://github.com/PuWenyin/fetch-news-mcp.git fetch-news

Available tools

fetch-news

MCP tool that fetches the latest news content from a Git-based MCP module and exposes it through the MCP interface for downstream processing.

Built by
VeilStrat
AI signals for GTM teams
© 2026 VeilStrat. All rights reserved.All systems operational
Fetch News MCP Server - puwenyin/fetch-news-mcp | VeilStrat