Newsmcp MCP Server

World news for AI agents — newsmcp.io

Local serverstdio

What is the Newsmcp MCP server?

World news for AI agents — newsmcp.io. The newsmcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 10 defined tools rather than through you.

What it actually does

newsmcp.io  •  integrations  •  REST API

Adding it to your client

@smithery/cli on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Its toolset

Everything the assistant can do here goes through one of these:

  • Method — Endpoint
  • GET — /news/
  • Cursor — The Cursor tool exposed by this server
  • Windsurf — The Windsurf tool exposed by this server
  • OpenCode — The OpenCode tool exposed by this server
  • Smithery — The Smithery tool exposed by this server
  • get_news — Top events happening right now. Filter by topic, region, time window
  • get_news_detail — Full details on a single event — all source articles, AI-generated context, impact analysis, entity tags
  • get_topics — Lists every topic category available for filtering. No parameters
  • get_regions — Lists every geographic region — 6 continents and 24 countries — available for filtering. No parameters

Configuration

You will need one environment variable: NEWS_API_BASE_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 10 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Newsmcp.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the newsmcp mcp server does with a few real requests.

When to reach for it

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Newsmcp's toolset — Method, GET, Cursor and 7 more — is a fair guide to whether it matches your workflow. It is maintained by pranciskus; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
MethodEndpoint
GET/news/
CursorThe Cursor tool exposed by this server.
WindsurfThe Windsurf tool exposed by this server.
OpenCodeThe OpenCode tool exposed by this server.
SmitheryThe Smithery tool exposed by this server.
get_newsTop events happening right now. Filter by topic, region, time window.
get_news_detailFull details on a single event — all source articles, AI-generated context, impact analysis, entity tags.
get_topicsLists every topic category available for filtering. No parameters.
get_regionsLists every geographic region — 6 continents and 24 countries — available for filtering. No parameters.

How to install the Newsmcp MCP server

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

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
NEWS_API_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Newsmcp to Method.
  • Use Newsmcp to GET.
  • Use Newsmcp to Cursor.

Frequently asked questions

It connects Newsmcp to MCP-compatible AI assistants such as Claude and Cursor, exposing 10 tools (Method, GET, Cursor, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Newsmcp directly.