kw-notice-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": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_noticesB | Search redacted cached notices with bounded filters. |
| get_noticeA | Get one redacted cached notice by its decimal DUID. |
| list_latest_noticesB | List the latest cached notices by posted date. |
| list_categoriesA | List the fixed eleven categories and cached notice counts. |
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 4 tools
Each tool has a distinct role: searching with filters, fetching a specific notice by ID, listing recent notices, and listing categories. There is no overlap between these operations.
All tool names follow a consistent verb_noun snake_case pattern: search_notices, get_notice, list_latest_notices, list_categories. This makes the set predictable and easy to navigate.
With four tools, the server is tightly scoped for a notice retrieval use case. Each tool serves a clear purpose without redundancy, and the count is neither too thin nor excessive.
For a read-only cache of notices, the set covers the essential operations: searching, retrieving individual notices, browsing the latest, and understanding available categories. There are no obvious missing functions for this scope.