Skip to main content
Glama
hamzafaiz17

TradeZylo MCP Server

by hamzafaiz17

get_daily_notes

Fetch daily journal notes for a specific date to review reflections, pre-market prep, and mindset observations.

Instructions

Fetch the overall daily journal note written in TradeZylo for a specific date (overall daily reflections, pre-market prep, mindset observations).

Example questions:

  • "What did I write in my daily journal for today?"

  • "Show my daily reflection notes for 2026-08-21"

  • "What were my morning thoughts on yesterday's journal?"

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateYesISO date YYYY-MM-DD to fetch the daily note for

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full behavioral burden. 'Fetch' implies a read-only operation and the description scopes the content to journal-style notes, but it says nothing about what is returned when no note exists for the date, whether the note is free text or structured, or any permissions/account scoping.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The purpose sentence is front-loaded and efficient. The three illustrative questions take space but are functional for disambiguating the tool's intent, so little is wasted overall.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter read tool with full schema coverage and no output schema, the description supplies enough to call it correctly. The main gap is the absence of any sibling routing guidance and of empty-result behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% and the only parameter's format (ISO YYYY-MM-DD) is already documented in the schema. The description's phrase 'for a specific date' adds no syntax or constraint beyond that, so the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource ('Fetch the overall daily journal note written in TradeZylo') and enumerates the content types covered (reflections, pre-market prep, mindset observations). It does not, however, distinguish itself from nearby siblings such as search_notebook or save_daily_review, so an agent must infer the boundary.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The example questions imply the intended usage ('What did I write in my daily journal for today?'), which is decent context, but there is no explicit statement of when to use this versus search_notebook or the save-side siblings, and no exclusions or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.