Skip to main content
Glama
gohluke

Dayze MCP

by gohluke

Person Transactions

get_person_transactions
Read-only

Get contact money transactions by person ID or name, showing expense entries and per-currency totals for money owed or received.

Instructions

Me↔contact money ledger from expenses (paid_to_person_id / income_from_person_id). Pass person_id or name. Returns entries + per-currency totals. Reuses existing expenses — no parallel ledger table. ($0.10; API key required)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toNoInclusive YYYY-MM-DD filter
fromNoInclusive YYYY-MM-DD filter
nameNoSurface name if person_id unknown
limitNoMax rows 1–200, default 50
person_idNoCRM people.id

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo
countNo
totalsNo
entriesNo
person_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.28.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds valuable non-obvious context beyond annotations: it reuses existing expense records rather than maintaining a parallel ledger, and it notes cost and API key requirements. No contradiction with annotations.

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

Conciseness5/5

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

Two sentences deliver the core purpose, inputs, outputs, data source, cost, and authentication requirement with no filler. The information is front-loaded and every clause carries meaning.

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

Completeness5/5

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

With a full input schema, complete parameter descriptions, read-only annotations, and an output schema available, the description covers the remaining important context: data derivation, required identifier style, return shape, and operational considerations. Nothing critical for invoking the tool correctly is missing.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3. The description adds meaningful semantic guidance by connecting person_id/name to the ledger concept and explaining the data source ('paid_to_person_id / income_from_person_id'), which helps an agent understand how parameters relate to the domain.

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?

The description clearly defines the tool as a 'Me↔contact money ledger' built from expense fields, which is a specific verb+resource. It also states what it returns ('entries + per-currency totals') and distinguishes it from a generic expense query by focusing on person-related transactions.

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?

The description gives clear usage context: pass person_id or name to get person-to-person money movement. It does not explicitly name alternatives like get_transactions, search_transactions, or get_money_between_people, nor does it state when not to use this tool, but the 'person ledger' framing strongly implies the intended use case.

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

Deploy Server

Other Tools