Skip to main content
Glama
hamzafaiz17

TradeZylo MCP Server

by hamzafaiz17

save_daily_review

Save or append a dated trading journal entry with morning prep, session notes, mindset reflection, lessons learned, and discipline rating. Returns the full saved daily note.

Instructions

[WRITE ACTION] Save or append a daily journal review in TradeZylo for a specific date (morning prep, session notes, psychology reflection, lessons learned, and discipline rating). Returns full saved daily journal note.

Example questions:

  • "Save my daily review for today: morning prep was bullish EUR, session was disciplined, rating 8/10"

  • "Write a daily journal note for 2026-09-12: waited for NY open, followed all rules"

  • "Add evening reflection to today's journal note"

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoISO date string YYYY-MM-DD (defaults to today)
appendNoIf true, appends to existing note for the date (if any). If false, overwrites.
contentNoDirect markdown or text content for the daily note
morning_prepNoPre-market preparation, HTF bias, key levels, economic news expectations
session_notesNoTrading session commentary, trades taken, execution observations
lessons_learnedNoKey takeaways, rules reinforced, or adjustments for tomorrow
discipline_ratingNoSelf-evaluation discipline score from 1 to 10
mindset_reflectionNoPsychology, emotional state, patience, discipline level

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the burden and does well: it flags the write action, discloses append-vs-overwrite behavior, and names the return value (full saved daily journal note). It doesn't cover permissions or overwrite data-loss specifics, keeping it short of a 5.

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?

Front-loaded WRITE ACTION tag and a compact purpose sentence, followed by useful examples. The example block is somewhat long but each line demonstrates a distinct invocation pattern, so it earns its space.

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 an 8-param write tool with no annotations and no output schema, the description covers purpose, write nature, append behavior, and return value. It lacks permission/auth notes and conflict handling with existing notes, but is otherwise sufficient.

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 coverage is 100%, so all 8 params including append default and date format are already documented. The description adds only implicit guidance (append semantics, rating examples) beyond the schema, matching the baseline 3.

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

Purpose5/5

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

States a specific verb (save/append) and resource (daily journal review) with explicit scope fields (morning prep, session notes, psychology, lessons, discipline rating). The [WRITE ACTION] tag and sibling get_daily_notes make read/write distinction immediate.

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

Usage Guidelines4/5

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

Example questions demonstrate when to invoke, including the append/date cases, and the WRITE tag contrasts with the read sibling get_daily_notes. No explicit when-not-to-use or mention of nearby create/save alternatives, but context is clear.

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