Skip to main content
Glama

get_revenue_projection

Read-only

Return the revenue projection for an idea: financial model, growth scenarios and unit economics. Use it to sanity-check whether the business can make money before investing further. Read-only and free; pass an ideaId you own.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ideaIdYesThe idea ID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYesThe tool result rendered as human and AI readable text or markdown.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "result": {
      +      "description": "The tool result rendered as human and AI readable text or markdown.",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "result"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true, and the description reinforces 'Read-only and free', confirming no side effects. It also adds a critical behavioral constraint: 'pass an ideaId you own,' which informs the agent about access permissions beyond what the schema provides. 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?

The description is two short sentences with no wasted words. The first sentence states what the tool returns, the second provides usage guidance. Every sentence adds distinct value.

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?

Given the tool has only one parameter, has an output schema (so return values are documented separately), and annotations cover safety, the description fully covers what an agent needs: purpose, usage guidance, the fact it's read-only and free, and the ownership requirement. No gaps.

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% with a single parameter (ideaId) described in the schema. The description adds meaningful context by stating the ideaId must be owned by the caller, adding a usage constraint not in the schema. This provides value beyond the base baseline of 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?

The description clearly states the tool returns a revenue projection for an idea, specifying three concrete elements: financial model, growth scenarios, and unit economics. This directly distinguishes it from tools like get_competitive_density, get_market_signals, get_moat_analysis, and other get_* siblings that return different types of analyses about an idea.

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 explicitly advises when to use this tool: 'Use it to sanity-check whether the business can make money before investing further.' This gives clear context. However, it does not explicitly mention when NOT to use it or name alternative tools for other financial checks, such as get_investment_memo or get_founder_dna.

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.

Resources