Back to Browse

AllNewsAPI MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocalRemote
Free

Server data from the Official MCP Registry

Get access to real-time and historical news data including top headlines from global sources

About

Get access to real-time and historical news data including top headlines from global sources

Remote endpoints: streamable-http: https://mcp.allnewsapi.com/mcp

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (3 strong, 4 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry. Trust signals: 3 highly-trusted packages.

Endpoint verified · Requires authentication · 2 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Your AllNewsAPI key, used when --apikey is not passed as an argument.Required

Environment variable: ALLNEWSAPI_KEY

How to Install & Connect

Available as Local & Remote

This plugin can run on your machine or connect to a hosted endpoint. during install.

Documentation

View on GitHub

From the project's GitHub README.

AllNewsAPI MCP

npm AllNewsAPI/mcp-server MCP server

AllNewsAPI/mcp-server MCP server

Get access to real-time and historical news data including top headlines from global sources via AllNewsAPI. Supports multiple filter options including keyword search, category, language and more. This Model Context Protocol server lets MCP clients (Claude, Cursor, VS Code, Windsurf, and others) search news articles, fetch top headlines, and check your API usage.

You'll need an API key — get one at allnewsapi.com.

Quick start

Pick one of the two ways to connect.

Hosted (no install)

Point your client at the hosted server and pass your API key in the X-API-Key header:

{
  "mcpServers": {
    "allnewsapi": {
      "type": "remote",
      "url": "https://mcp.allnewsapi.com/mcp",
      "headers": {
        "X-API-Key": "YOUR_API_KEY_HERE"
      }
    }
  }
}

Prefer a URL-only setup? Use https://mcp.allnewsapi.com/mcp?apikey=YOUR_API_KEY_HERE instead of the header.

The key can be supplied three ways, in this order of precedence: the X-API-Key header, the apikey query parameter, or an Authorization: Bearer YOUR_API_KEY_HERE header (a fallback for clients that only support bearer tokens).

Local (npx)

Runs the server on your machine via npx — no clone or build needed:

{
  "mcpServers": {
    "allnewsapi": {
      "command": "npx",
      "args": ["allnewsapi-mcp@latest", "--apikey", "YOUR_API_KEY_HERE"]
    }
  }
}

You can also supply the key as an ALLNEWSAPI_KEY environment variable instead of --apikey.

Client-specific setup

Edit your config (Settings → Developer → Edit Config) and add the local or hosted snippet above. Full guide: modelcontextprotocol.io/quickstart/user.

Cursor SettingsMCPAdd new MCP Server. Name it "AllNewsAPI", choose the command type, and enter:

npx allnewsapi-mcp@latest --apikey YOUR_API_KEY_HERE
code --add-mcp '{"name":"allnewsapi","command":"npx","args":["allnewsapi-mcp@latest","--apikey","YOUR_API_KEY_HERE"]}'

The server is then available to your GitHub Copilot agent. Full guide: VS Code MCP docs.

Add the local or hosted snippet above to your MCP config. Full guide: Windsurf MCP docs.

Add it from the terminal — local:

claude mcp add allnewsapi -- npx allnewsapi-mcp@latest --apikey YOUR_API_KEY_HERE

Or the hosted server:

claude mcp add --transport http allnewsapi https://mcp.allnewsapi.com/mcp --header "X-API-Key: YOUR_API_KEY_HERE"

Cowork runs inside Claude Desktop. Add the hosted server as a custom connector — Customize → Connectors → + — and enter the URL with your key:

https://mcp.allnewsapi.com/mcp?apikey=YOUR_API_KEY_HERE

For a local setup, use the Claude Desktop config shown above.

OpenWork is an open-source Cowork alternative with MCP support. Add AllNewsAPI using either the local command (npx allnewsapi-mcp@latest --apikey YOUR_API_KEY_HERE) or the hosted URL above, following OpenWork's MCP configuration.

Any other MCP client: point it at the hosted URL (https://mcp.allnewsapi.com/mcp) or run the npx allnewsapi-mcp@latest command with your API key.

Tools

search-news

Search articles by keyword, date, and filters.

ParameterTypeDescription
qstringKeywords to search for
startDate / endDatestringDate range (YYYY-MM-DD)
contentbooleanInclude full article content (default: false)
langstringLanguage code(s), e.g. en, fr
countrystringCountry code(s), e.g. us, gb
regionstringRegion(s), e.g. americas, europe
categorystringCategory/categories, e.g. business
maxnumberNumber of articles, 1–100 (default: 5)
pagenumberPage number (default: 1)
attributesstringWhere to match keywords: title, description, content
sortbystringpublishedAt or relevance
publisherstringFilter by publisher(s)
ai_sentimentstringpositive, negative, or neutral
ai_entity_namestringNamed entity, e.g. Apple
ai_entity_typestringEntity type, e.g. person, organization, location

headlines

Get top headlines, optionally filtered.

ParameterTypeDescription
countrystringCountry code(s), e.g. us, gb
categorystringCategory, e.g. technology
langstringLanguage code, e.g. en
maxnumberNumber of articles, 1–100 (default: 5)
ai_sentimentstringpositive, negative, or neutral
ai_entity_namestringNamed entity, e.g. Apple
ai_entity_typestringEntity type, e.g. person, organization, location

usage

Check your plan, request limits, and remaining quota. No parameters.

Plan note: Advanced filters — country, region, category, publisher, lang, attributes, and sortby — require a paid plan. On the free plan, use search-news with q and max. See pricing.

AI filtering

search-news and headlines accept AI-analyzed filters:

  • ai_sentiment — overall article sentiment (positive, negative, neutral)
  • ai_entity_name — a named entity in the article (e.g. United Nations)
  • ai_entity_type — entity category (person, organization, location)

Returned articles may also include AI sentiment scores, detected entities, and a short AI summary when available.

Example prompts

  • "Get me the latest technology news from the US"
  • "Find articles about climate change from European sources"
  • "Show me top business headlines from the past week"
  • "Find positive news about renewable energy"
  • "Show me articles mentioning Apple as an organization"
  • "Check my API usage and remaining quota"

Supported values

Full lists of accepted values live in the AllNewsAPI docs:

License

MIT © AllNewsAPI — see LICENSE for details.

Reviews

No reviews yet

Be the first to review this server!