N

NewsAPI

Fetch headlines and articles from NewsAPI.

·No reviews yet
Repo
Share:

About

Auto-generated

NewsAPI is a Model Context Protocol server in the Search & Web category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

web_search
Search the web and return top results
fetch_url
Fetch and return the contents of a URL

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about NewsAPI.

What is the NewsAPI MCP?
The NewsAPI MCP allows clients to fetch current headlines and articles using the NewsAPI service. It provides a standardized interface for accessing news content programmatically.
How do I configure the NewsAPI MCP with a client?
Configuration details depend on the specific MCP client used. Generally, you would provide the MCP's slug ('news-api') and the required API key within your client's settings or connection manager.
Does the NewsAPI MCP require an API key?
Yes, access to the NewsAPI service via this MCP requires an API key for authentication. You will need to obtain an API key from the NewsAPI service directly.
What specific news features can I access through this MCP?
This MCP is designed to fetch headlines and articles, enabling users to retrieve information on various news topics. The exact capabilities exposed depend on the underlying NewsAPI service and its offerings.
Is there a cost associated with using the NewsAPI MCP?
The MCP itself is community-provided, implying no direct cost for the MCP software. However, usage of the underlying NewsAPI service may incur costs or be subject to rate limits, depending on your NewsAPI subscription plan.
Are there any limitations or prerequisites for using the NewsAPI MCP?
A primary prerequisite is obtaining a valid API key from the NewsAPI service. Usage may also be subject to API rate limits or restrictions imposed by NewsAPI, which could affect data retrieval frequency and volume.

Install NewsAPI

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "news-api": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-news-api"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "news-api": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-news-api"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "news-api": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-news-api"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.