NewsPulse MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| latest_newsA | Retrieve the latest news articles filtered by category. |
| search_newsB | Search all feeds for articles matching a keyword. |
| summarize_articleB | Download, parse, and summarize an article using LLM. |
| trending_topicsA | Identify most frequently discussed technologies across recent articles. Returns: dict with keys: - topics: list of {name, frequency} ordered by frequency descending - message: descriptive message if no data available |
| compare_sourcesC | Compare how two sources cover the same topic. |
| bookmark_articleA | Bookmark an article for later reference. |
| saved_articlesA | Retrieve all bookmarked articles ordered by bookmark timestamp descending. Returns: dict with keys: - articles: list of bookmarked article dicts with id, title, url, source_name, published_date, bookmarked_at - count: number of bookmarks |
| daily_digestA | Generate a digest of articles from the last 24 hours grouped by category. Returns: dict with keys: - categories: list of {category, articles} groupings - message: descriptive message if no recent articles |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool serves a unique purpose: category-based news, keyword search, summarization, trending topics, source comparison, bookmarking (add/list), and daily digest. No functional overlap.
All tool names follow a clear snake_case pattern with descriptive verbs and nouns (e.g., latest_news, search_news, bookmark_article). Consistent convention throughout.
8 tools is well-scoped for a news aggregation server, covering essential features without unnecessary bloat or deficiency.
Core news workflows are covered: retrieval, search, summarization, trends, comparison, bookmarking, and daily digest. Minor gaps exist (e.g., no update/delete for bookmarks), but the surface is largely complete.