global-news-intelligence-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 |
|---|---|
| get_newsA | Get news by category. Use when the user asks for a specific domain. category: all, ai, technology, hardware, opensource, international, politics, finance, military, space_science, energy, entertainment, domestic. |
| get_top_newsA | Get the most important global news right now. Tech/AI prioritized. |
| get_technology_newsA | Get technology news: AI, chips, software, hardware, open source. |
| get_ai_newsA | Get the latest artificial intelligence news. |
| get_hardware_newsA | Get hardware news: CPUs, GPUs, chips, semiconductors, devices. |
| get_opensource_newsA | Get open source and developer community news. |
| get_international_newsB | Get major international news from global sources. |
| get_politics_newsB | Get political news. |
| get_finance_newsA | Get finance and business news: stocks, economy, markets. |
| get_military_newsB | Get military and defense news. |
| get_space_newsA | Get space and aerospace news: missions, science, technology. |
| get_world_newsB | Get major world news: international, politics, finance, military. |
| get_domestic_newsB | Get domestic China news from Chinese sources. |
| get_energy_newsA | Get energy sector news: oil, gas, renewables, policy. |
| get_entertainment_newsA | Get entertainment industry news. |
| get_news_summaryB | Get a summary of a specific article by URL. |
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 16 tools
The generic get_news tool accepts a category parameter covering all specialized categories, making get_technology_news, get_ai_news, and others redundant. Additionally, get_world_news overlaps with get_international_news, get_politics_news, get_finance_news, and get_military_news, creating significant boundary ambiguity.
All tools follow a consistent 'get_' verb prefix with descriptive nouns (e.g., get_finance_news, get_top_news). Even get_news_summary fits the pattern of 'get' + noun phrase, and no naming conventions are mixed.
With 16 tools, the server is heavy, and the count is inflated by unnecessary category-specific variants that duplicate the functionality of get_news with a category parameter. The server could be reduced to get_news, get_top_news, and get_news_summary while maintaining full coverage, making the current count excessive.
The tool set covers the core news workflow: fetching by category, getting top news, and retrieving article summaries. However, it lacks search functionality and filtering by date/source, which are common in news intelligence, leaving minor gaps.