Skip to main content
Glama

Fi-Plan

Project a single asset month-by-month

asset_projection
Read-onlyIdempotent

Pure calculator for one asset (no plan needed): monthly value, invested, growth, income and TDS over duration months. Pass asset parameters (principal, growth_rate, yield_rate, income_frequency, income_mode, maturity_month, sale_month, sip) — class presets are NOT applied automatically, so pass explicit rates. TDS on FD interest follows the stored rules for the assessment_year. Returns rows plus closing value and totals.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sipNoOptional recurring SIP into the asset.
rentNoReal-estate rent settings.
titleNoDisplay name for the asset (defaults to 'Asset').
categoryNoBucket: s = savings, e = expenses, i = investments (default 'i').
durationNoProjection length in months (default 120).
principalYesStarting value/principal in rupees.
sale_monthNoMonth the asset is sold.
yield_rateNoAnnual income/yield rate in percent (interest, dividend, rent).
asset_classNoAsset type; affects default tax treatment (default 'fd').
compoundingNoCompounding mode for growth (default none).
growth_rateYesAnnual capital growth rate in percent.
income_modeNoWhere income goes: credit (cash) or reinvest.
maturity_monthNoMonth the asset matures; value is released then.
purchase_monthNoMonth the asset is acquired (default 1).
assessment_yearNoAssessment year for tax rules, e.g. '2025-26' (default: current).
income_frequencyNoIncome payout frequency: m monthly, q quarterly, h half-yearly, y yearly.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed24 schema fields changed
    • addedInput schema / properties / assessment_year / description
      Added value: +"Assessment year for tax rules, e.g. '2025-26' (default: current)."
    • addedInput schema / properties / asset_class / description
      Added value: +"Asset type; affects default tax treatment (default 'fd')."
    • addedInput schema / properties / category / description
      Added value: +"Bucket: s = savings, e = expenses, i = investments (default 'i')."
    • addedInput schema / properties / compounding / description
      Added value: +"Compounding mode for growth (default none)."
    • addedInput schema / properties / duration / description
      Added value: +"Projection length in months (default 120)."
    • addedInput schema / properties / growth_rate / description
      Added value: +"Annual capital growth rate in percent."
    • addedInput schema / properties / income_frequency / description
      Added value: +"Income payout frequency: m monthly, q quarterly, h half-yearly, y yearly."
    • addedInput schema / properties / income_mode / description
      Added value: +"Where income goes: credit (cash) or reinvest."
    • addedInput schema / properties / maturity_month / description
      Added value: +"Month the asset matures; value is released then."
    • addedInput schema / properties / principal / description
      Added value: +"Starting value/principal in rupees."
    • addedInput schema / properties / purchase_month / description
      Added value: +"Month the asset is acquired (default 1)."
    • addedInput schema / properties / rent / description
      Added value: +"Real-estate rent settings."
    • addedInput schema / properties / rent / properties / expense_ratio / description
      Added value: +"Share of rent consumed by expenses, percent."
    • addedInput schema / properties / rent / properties / monthly_rent / description
      Added value: +"Monthly rent in rupees."
    • addedInput schema / properties / rent / properties / step_pct / description
      Added value: +"Annual rent escalation percent."
    • addedInput schema / properties / sale_month / description
      Added value: +"Month the asset is sold."
    • addedInput schema / properties / sip / description
      Added value: +"Optional recurring SIP into the asset."
    • addedInput schema / properties / sip / properties / amount / description
      Added value: +"Instalment amount in rupees."
    • addedInput schema / properties / sip / properties / end_month / description
      Added value: +"Last instalment month."
    • addedInput schema / properties / sip / properties / frequency / description
      Added value: +"Instalment frequency."
    • addedInput schema / properties / sip / properties / start_month / description
      Added value: +"First instalment month."
    • addedInput schema / properties / sip / properties / step_pct / description
      Added value: +"Percent each instalment steps up by."
    • addedInput schema / properties / title / description
      Added value: +"Display name for the asset (defaults to 'Asset')."
    • addedInput schema / properties / yield_rate / description
      Added value: +"Annual income/yield rate in percent (interest, dividend, rent)."
  2. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already establish the safe read-only/idempotent profile, so the bar is lower, and the description still adds real behavioral context: presets are not auto-applied, TDS on FD interest follows stored rules keyed to assessment_year, and the return shape is rows plus closing value and totals. It does not mention performance or limits, but for a pure calculator that is minor.

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?

Three sentences, front-loaded with what the tool computes and the no-plan scoping, then the caveat, then the return shape. The parenthetical parameter list is dense but each item earns its place by flagging which inputs drive the projection.

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 16-parameter tool with nested SIP/rent objects and no output schema, the description covers the calculation model, the preset caveat, the tax rule dependency, and the return shape. Remaining gaps (defaults, interaction between maturity/sale months) are largely covered by the 100%-covered schema.

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, but the description adds genuine semantics by naming the key inputs and warning that asset_class presets do not supply rates automatically — a behavior no per-field schema description conveys. It does not clarify interactions such as maturity_month vs sale_month or income_mode vs income_frequency.

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 and resource ('Pure calculator for one asset'), enumerates the computed outputs (monthly value, invested, growth, income, TDS), and explicitly carves out scope with 'no plan needed', which separates it from simulate_plan. An agent can distinguish it from the loan_* siblings without opening any schema.

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 phrase 'no plan needed' implicitly routes plan-based work to simulate_plan, and 'class presets are NOT applied automatically, so pass explicit rates' is an actionable prerequisite that prevents a common misuse. It stops short of naming the sibling alternatives explicitly or stating when not to use this tool.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.