news-checker-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
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| check_newsB | 最新ニュースを取得します。ジャンルを指定して世界中のニュースソースから最新記事を一覧表示。デフォルトでは世界の主要ニュースを横断的に取得します。 |
| read_articleA | ニュース記事のURLを指定して本文を取得します。check_newsで見つけた記事の詳細を読むのに使います。 |
| list_categoriesA | 利用可能なニュースカテゴリの一覧を表示します。 |
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 3 tools
Each tool serves a distinct purpose: check_news fetches articles, list_categories provides categories, and read_article retrieves full content. There is no overlap or ambiguity.
All tool names follow a consistent verb_noun pattern in snake_case (check_news, list_categories, read_article), making the set predictable and easy to understand.
With only 3 tools, the set is minimal but appropriate for a basic news checking server—covering fetching, category listing, and article reading. It could be expanded with search or filtering, but the count is not inappropriate.
The tool set covers the core workflow (fetch, categorize, read). Missing advanced features like keyword search or date filtering, but for a simple news checker, it is reasonably complete.