Get Today's Date
GetTodayDateReturns today's date in Warsaw timezone (Europe/Warsaw). Use this when you need to know the current date, e.g. to check promotion deadlines.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
GetTodayDateReturns today's date in Warsaw timezone (Europe/Warsaw). Use this when you need to know the current date, e.g. to check promotion deadlines.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already disclose read-only, idempotent, and non-destructive behavior. The description adds timezone context (Europe/Warsaw), which is valuable beyond annotations. It does not cover return format, but for a zero-parameter tool this is acceptable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence followed by a usage example. It is front-loaded with the core purpose and contains no redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the trivial complexity (no parameters, no output schema, no side effects), the description is fully adequate. It states the outcome, timezone, and a typical use case. It could specify the date format, but this is not critical for the tool's operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so baseline is 4. The description adds semantic meaning by clarifying that 'today' is defined in Warsaw timezone, which is relevant to the result.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Returns' and resource 'today's date' with timezone specification, clearly distinguishing it from sibling tools that handle banks, deposits, promotions, etc.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use this tool ('Use this when you need to know the current date') with an example (checking promotion deadlines). It does not list alternatives, but no competing date tool exists among siblings, so the guidance is adequate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool targets a distinct resource or action: search tools are clearly separated by product type (accounts, deposits, cards, etc.), and utility tools (calculation, bank list, referral, date) have no overlap. The relationship between SearchPromotions and GetPromotionDetails is a standard search/detail pattern that is easy to understand.
All tools follow a consistent VerbNoun PascalCase pattern (GetBanks, SearchDeposits, CalculateDepositInterest). The verbs Get, Search, and Calculate are used consistently across the set, making the intent of each tool predictable from its name.
With 13 tools, the server is well-scoped for a bank comparison platform. Each tool serves a clear purpose—covering searches for six product types, promotion management, and supporting utilities—without unnecessary bloat or missing essentials.
The tool set covers the full lifecycle of a bank offer comparison workflow: listing banks, searching all major product categories, retrieving promotion details, calculating deposit interest, obtaining referral codes, and accessing educational blog content. No obvious critical gaps are apparent for the stated purpose.