Skip to main content
Glama

Server Details

27 verified financial calculators with published specs; responses cite assumptions and sources.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.3/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool serves a distinct, non-overlapping purpose: listing available models, retrieving a model's input contract, and executing a model. There is no ambiguity about which tool to call for discovery, configuration, or execution.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: get_model_contract, list_models, run_model. The pattern is predictable and the verbs clearly indicate the action.

Tool Count5/5

With only 3 tools, the server is tightly scoped to its purpose: discovering, understanding, and running verified models. Each tool is essential and there is no unnecessary bloat.

Completeness5/5

The tool set covers the complete lifecycle for consuming a model: list to see what's available, get the contract to understand inputs, and run to execute. There are no obvious missing operations or dead ends.

Available Tools

3 tools
get_model_contractAInspect

Get a model's machine-readable contract: required inputs with types and valid domains, cross-field constraints, sentinel-value meanings, and the government constants (with sources) the model uses. Set include_spec to also receive the full specification markdown (exact formulas, assumptions, exclusions, known issues).

ParametersJSON Schema
NameRequiredDescriptionDefault
modelYesModel name from list_models, e.g. 'relocation'
include_specNoAlso return the full spec markdown (default false)
Behavior4/5

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

No annotations provided, so the description carries the burden. It thoroughly discloses what the contract includes (types, domains, constraints, sentinel meanings, constants with sources) and what include_spec adds (full spec with formulas, assumptions, exclusions, known issues). This is solid behavioral disclosure for a read-only retrieval tool.

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, front-loaded with the core purpose, then a useful conditional detail. Each sentence earns its place; no redundancy or fluff.

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's simplicity (2 params, no output schema), the description is complete. It explains what the tool returns in detail and what the optional flag does. The sibling tools are not referenced, but that's not necessary for invoking this tool correctly.

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 description coverage is 100%, so baseline 3 applies. The description adds minimal extra semantic value beyond the schema: it clarifies the contents of the contract and the markdown, but doesn't introduce new meaning for params. Schema already defines model and include_spec adequately.

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 uses a specific verb ('get') and resource ('model's machine-readable contract'), then enumerates specific contents. It clearly distinguishes from siblings: list_models lists models, run_model executes, this retrieves contract metadata.

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

Usage Guidelines2/5

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

No guidance on when to use this tool vs alternatives. The conditional include_spec parameter instruction is the only usage hint, but there's no mention of scenarios like 'before running a model' or 'when you need input requirements'. Lacks explicit when/why.

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

list_modelsAInspect

List Worthune's verified financial calculation models (dual-implementation tested against published specs). Returns model names and spec versions. Call get_model_contract before running a model.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

No annotations are present; description discloses that the tool is a listing operation (read-only) and adds quality context (dual-implementation tested). Does not explicitly state side effects, but not needed for a list operation.

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 short sentences: purpose, return value, and next-step guidance. No filler words.

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?

Includes what it returns (model names and spec versions), the verification criterion, and the proper next step (get_model_contract). Sufficient for a zero-parameter list tool.

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?

No parameters in the schema; baseline of 4 applies. Description adds no parameter details because none exist.

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?

Clearly states it lists verified financial calculation models, with the qualifier of dual-implementation testing. Distinguishes from sibling tools (get_model_contract, run_model) by being the enumeration step.

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?

Guides the user to call get_model_contract before running a model, establishing a workflow. Doesn't explicitly contrast with alternatives, but the sequential instruction makes usage clear.

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

run_modelAInspect

Run a verified calculation model. Inputs must satisfy the contract from get_model_contract (all fields required, values inside their domains — out-of-domain requests are rejected, never clamped). The response echoes inputs, spec version, assumptions, triggered sentinels, and sourced constants; outputs are the exact verified model outputs. Share the matching interactive calculator with users: https://worthune.com/scenarios/ for scenario models.

ParametersJSON Schema
NameRequiredDescriptionDefault
modelYesModel name from list_models
inputsYesModel inputs per the contract's domains
Behavior5/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly states that out-of-domain requests are rejected and never clamped, details the response contents (inputs, spec version, assumptions, sentinels, sourced constants), and confirms outputs are exact. This is thorough for a calculation tool, though it omits auth or rate limits.

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 three sentences long, each serving a distinct purpose: action, contract enforcement, and response/usage. It is front-loaded with the verb and contains no fluff. The inclusion of the share URL is pragmatic and does not detract from clarity.

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?

Given the nested object and lack of output schema, the description compensates well by describing the response structure. It references sibling tools for context and provides a real-world sharing URL. It does not specify error formats or authentication requirements, but these are less critical for a scenario model runner.

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?

The schema already defines 'model' and 'inputs' with basic descriptions, giving 100% coverage. The description adds meaningful operational semantics by explaining that inputs must adhere to contract domains and that violations are rejected rather than clamped, augmenting the bare schema definitions.

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 explicitly states the action ('Run') and the resource ('a verified calculation model'), making its purpose immediately clear. It distinguishes itself from siblings list_models and get_model_contract by focusing on the execution step rather than listing or contracting.

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 specifies a clear prerequisite: inputs must satisfy the contract from get_model_contract, implying users should retrieve that contract first. It also provides a post-action share instruction. However, it does not explicitly mention when not to use this tool or name alternative tools for other situations.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    B
    quality
    A
    maintenance
    Provides 77 deterministic financial calculators, live market data, and a meta-advisor that chains tools into prioritized plans from plain-language descriptions.
    77
    5
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    63 deterministic quant computation tools for autonomous financial agents. Options pricing, derivatives, risk metrics, portfolio optimization, statistics, crypto/DeFi, macro/FX, time value of money. 1,000 free calls/day, no signup required.
    74
    11
    MIT
  • A
    license
    -
    quality
    B
    maintenance
    The verifiable risk engine for autonomous agents: deterministic, self-verifying financial calculations that an agent can delegate and prove. It covers liquidation and funding, position sizing and risk of ruin, options Greeks and margin, LP divergence, treasury concentration and depeg, execution quality checks, plus intelligence on options, DeFi, prediction markets, and transaction safety analysis.
    7
    1
    MIT
  • F
    license
    -
    quality
    B
    maintenance
    Enables financial calculations such as compound interest, loan EMI, and savings goal projections through natural language.

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources