Skip to main content
Glama

Zyberno stock valuation

Two-stage discounted cash flow under assumptions you supply

calculate_dcf_value
Read-onlyIdempotent

Runs a two-stage discounted cash flow on numbers you provide and returns the fair value per share, the margin of safety against the price you gave, and how much of the value sits in the terminal stage. Cash flow grows at your growth rate for the stage-one years, then forever at your terminal rate, with the terminal value from the Gordon Growth Model discounted back over the stage-one years.

Use when the user wants to value a company under their own assumptions, test how sensitive a valuation is to the discount or growth rate, or check the arithmetic of a DCF they are building. Do not use it to look up what a company is worth on Zyberno's own assumptions, which is get_stock_valuation and uses a different, fade-based model; the two will not agree and are not meant to.

This computes your assumptions, it does not endorse them. The output is arithmetic, and a two-stage DCF is highly sensitive to the discount and terminal rates, so treat a single result as one point rather than an answer.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
growth_rateYesAnnual cash flow growth during the first stage, in percent. Pass 8 for 8 percent. Range -20 to 100.
growth_yearsYesLength of the high-growth first stage, in years.
discount_rateYesDiscount rate (required return or WACC) in percent. Pass 10 for 10 percent. Must be greater than the terminal growth rate.
cash_flow_per_shareYesStarting free cash flow or owner earnings PER SHARE, not the company total. This is the base the projection grows from.
current_stock_priceYesCurrent share price, used only to compute the margin of safety against the fair value.
terminal_growth_rateYesPerpetual growth rate after the first stage, in percent. Pass 2.5 for 2.5 percent. Range -5 to 15, and must be below the discount rate.

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already provide readOnlyHint/idempotentHint/destructiveHint, so the bar is lower. The description adds meaningful behavioral context: that the tool 'computes your assumptions, it does not endorse them,' that output is arithmetic only, and that DCF results are highly sensitive to discount and terminal rates. It communicates the tool's non-authoritative, calculation-only nature well.

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?

The description is tightly organized into three paragraphs: what it does, when to use it (with sibling differentiation), and a caveat paragraph. Every sentence earns its place — no fluff, no repetition of schema fields. It's front-loaded with the core purpose.

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?

For a 6-param computational tool with 100% schema coverage and no output schema, the description is complete. It explains the calculation model (two-stage, Gordon Growth terminal), the purpose of each input relationship (discount rate above terminal rate is already in schema), and what outputs to expect. The sensitivity caveat is appropriate context for a tool whose results are assumption-dependent.

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 all six parameters are documented in the schema. The description adds framing beyond the schema: it explains how cash flow grows (stage-one years then forever at terminal rate via Gordon Growth Model) and notes the output uses the supplied price for margin of safety. This supplements the schema rather than repeating it, though the schema already carries a heavy load.

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 identifies the tool as running a two-stage DCF on user-supplied numbers, returning fair value per share, margin of safety, and terminal-value share. It names the specific verb ('Runs'), the resource (DCF), and the substantive outputs, which clearly distinguishes it from sibling valuation tools.

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

Usage Guidelines5/5

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

The description is exemplary here. It explicitly states when to use ('when the user wants to value a company under their own assumptions, test sensitivity, or check arithmetic') and explicitly names the alternative (get_stock_valuation) with a clear when-not-to-use and rationale for why the two won't agree. This is the best kind of usage guidance.

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.

TDQS

A4.6/5.0
Disambiguation5/5

Each tool targets a clearly distinct purpose: single-company valuation (get_stock_valuation), market-level indicator (get_us_market_valuation), custom screening (screen_stocks), published lists (list_flagged_stocks), user-driven DCF arithmetic (calculate_dcf_value), and portfolio simulation (simulate_portfolio_outcomes). Descriptions even cross-reference to prevent misselection, making boundaries crisp.

Naming Consistency4/5

Most tools follow a verb_object snake_case pattern (calculate_dcf_value, get_stock_valuation, get_us_market_valuation, list_flagged_stocks, screen_stocks, simulate_portfolio_outcomes). All are consistent in style, though verbs vary somewhat between 'get', 'list', 'screen', 'calculate', and 'simulate', which is acceptable given the domain diversity.

Tool Count5/5

Six tools appropriately cover single-company analysis, market-level analysis, screening, published lists, DCF calculation, and portfolio simulation. Each tool holds clear territory without redundancy, and six is well within the ideal 3-15 range for a valuation-focused server.

Completeness4/5

The surface covers individual valuation, market valuation, screening, published lists, DCF modeling, and portfolio outcomes—covering the core analytics workflows. Minor gaps include no dedicated sector/index analysis, no price quotes or charts, and no explanation-of-framework tool, but these are explicitly noted as out of scope rather than dead ends, and the documented coverage is coherent for the stated purpose.

Resources