models
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.
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.
Tool Definition Quality
Average 4.3/5 across 3 of 3 tools scored.
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.
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.
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.
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 toolsget_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).
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | Model name from list_models, e.g. 'relocation' | |
| include_spec | No | Also return the full spec markdown (default false) |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | Model name from list_models | |
| inputs | Yes | Model inputs per the contract's domains |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseBqualityAmaintenanceProvides 77 deterministic financial calculators, live market data, and a meta-advisor that chains tools into prioritized plans from plain-language descriptions.775MIT
- AlicenseAqualityBmaintenance63 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.7411MIT
- Alicense-qualityBmaintenanceThe 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.71MIT
- Flicense-qualityBmaintenanceEnables financial calculations such as compound interest, loan EMI, and savings goal projections through natural language.