Skip to main content
Glama

TokenBel Financial Data

company_financial_params_get

Read-onlyIdempotent

Get financial parameters for a company or securities issuer by TokenBel internal identifier (field name: uuid). Returns periodic financial statement metrics (balance, equity, long/short-term assets and liabilities) and calculated financial ratios (liquidity, leverage, independence, stability, capitalization). Accepts a company id or an issuer id — issuer ids are resolved to their linked company. Find the id via search_by_name first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesTokenBel internal identifier: opaque hexadecimal string, usually 8 characters such as "78c7e502"; despite uuid field/tool names, it is not an RFC UUID and normally has no hyphens. Company or issuer id, usually discovered via search_by_name.
limit_periodsNoMax number of periods to return (newest first). Default 8.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
countYes
periodsYes
issuer_nameYes
issuer_uuidYes
company_nameYes
company_uuidYesTokenBel internal identifier: opaque hexadecimal string, usually 8 characters such as "78c7e502"; despite uuid field names, it is not an RFC UUID and normally has no hyphens.
requested_uuidYesTokenBel internal identifier: opaque hexadecimal string, usually 8 characters such as "78c7e502"; despite uuid field names, it is not an RFC UUID and normally has no hyphens.
requested_entity_typeYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changed
    • removedOutput schema / properties / issuer_name / anyOf
      Removed value: -[
      -  {
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • addedOutput schema / properties / issuer_name / type
      Added value: +[
      +  "string",
      +  "null"
      +]
    • changedOutput schema / properties / periods / items / properties / ratios / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "capitalization_ratio": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "current_liquidity_ratio": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "financial_independence_ratio": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "financial_leverage_ratio": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "financial_liabilities_ratio": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "financial_stability_ratio": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "own_working_capital_ratio": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      }
      -    },
      -    "required": [
      -      "current_liquidity_ratio",
      -      "financial_liabilities_ratio",
      -      "financial_independence_ratio",
      -      "own_working_capital_ratio",
      -      "financial_stability_ratio",
      -      "capitalization_ratio",
      -      "financial_leverage_ratio"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "capitalization_ratio": {
      +        "type": [
      +          "string",
      +          "null"
      +        ]
      +      },
      +      "current_liquidity_ratio": {
      +        "type": [
      +          "string",
      +          "null"
      +        ]
      +      },
      +      "financial_independence_ratio": {
      +        "type": [
      +          "string",
      +          "null"
      +        ]
      +      },
      +      "financial_leverage_ratio": {
      +        "type": [
      +          "string",
      +          "null"
      +        ]
      +      },
      +      "financial_liabilities_ratio": {
      +        "type": [
      +          "string",
      +          "null"
      +        ]
      +      },
      +      "financial_stability_ratio": {
      +        "type": [
      +          "string",
      +          "null"
      +        ]
      +      },
      +      "own_working_capital_ratio": {
      +        "type": [
      +          "string",
      +          "null"
      +        ]
      +      }
      +    },
      +    "required": [
      +      "current_liquidity_ratio",
      +      "financial_liabilities_ratio",
      +      "financial_independence_ratio",
      +      "own_working_capital_ratio",
      +      "financial_stability_ratio",
      +      "capitalization_ratio",
      +      "financial_leverage_ratio"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
  2. Changed2 schema fields changed
    • changedInput schema / properties / uuid / description
      Previous value: -"Company or issuer UUID (8-36 hex characters), usually discovered via search_by_name"New value: +"TokenBel internal identifier: opaque hexadecimal string, usually 8 characters such as \"78c7e502\"; despite uuid field/tool names, it is not an RFC UUID and normally has no hyphens. Company or issuer id, usually discovered via search_by_name."
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "company_name": {
      +      "type": "string"
      +    },
      +    "company_uuid": {
      +      "description": "TokenBel internal identifier: opaque hexadecimal string, usually 8 characters such as \"78c7e502\"; despite uuid field names, it is not an RFC UUID and normally has no hyphens.",
      +      "type": "string"
      +    },
      +    "count": {
      +      "type": "number"
      +    },
      +    "issuer_name": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "issuer_uuid": {
      +      "anyOf": [
      +        {
      +          "description": "TokenBel internal identifier: opaque hexadecimal string, usually 8 characters such as \"78c7e502\"; despite uuid field names, it is not an RFC UUID and normally has no hyphens.",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "periods": {
      +      "items": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "metrics": {
      +            "additionalProperties": {
      +              "type": "string"
      +            },
      +            "propertyNames": {
      +              "type": "string"
      +            },
      +            "type": "object"
      +          },
      +          "period_date": {
      +            "type": "string"
      +          },
      +          "ratios": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "capitalization_ratio": {
      +                    "anyOf": [
      +                      {
      +                        "type": "string"
      +                      },
      +                      {
      +                        "type": "null"
      +                      }
      +                    ]
      +                  },
      +                  "current_liquidity_ratio": {
      +                    "anyOf": [
      +                      {
      +                        "type": "string"
      +                      },
      +                      {
      +                        "type": "null"
      +                      }
      +                    ]
      +                  },
      +                  "financial_independence_ratio": {
      +                    "anyOf": [
      +                      {
      +                        "type": "string"
      +                      },
      +                      {
      +                        "type": "null"
      +                      }
      +                    ]
      +                  },
      +                  "financial_leverage_ratio": {
      +                    "anyOf": [
      +                      {
      +                        "type": "string"
      +                      },
      +                      {
      +                        "type": "null"
      +                      }
      +                    ]
      +                  },
      +                  "financial_liabilities_ratio": {
      +                    "anyOf": [
      +                      {
      +                        "type": "string"
      +                      },
      +                      {
      +                        "type": "null"
      +                      }
      +                    ]
      +                  },
      +                  "financial_stability_ratio": {
      +                    "anyOf": [
      +                      {
      +                        "type": "string"
      +                      },
      +                      {
      +                        "type": "null"
      +                      }
      +                    ]
      +                  },
      +                  "own_working_capital_ratio": {
      +                    "anyOf": [
      +                      {
      +                        "type": "string"
      +                      },
      +                      {
      +                        "type": "null"
      +                      }
      +                    ]
      +                  }
      +                },
      +                "required": [
      +                  "current_liquidity_ratio",
      +                  "financial_liabilities_ratio",
      +                  "financial_independence_ratio",
      +                  "own_working_capital_ratio",
      +                  "financial_stability_ratio",
      +                  "capitalization_ratio",
      +                  "financial_leverage_ratio"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          }
      +        },
      +        "required": [
      +          "period_date",
      +          "metrics",
      +          "ratios"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "requested_entity_type": {
      +      "enum": [
      +        "company",
      +        "issuer"
      +      ],
      +      "type": "string"
      +    },
      +    "requested_uuid": {
      +      "description": "TokenBel internal identifier: opaque hexadecimal string, usually 8 characters such as \"78c7e502\"; despite uuid field names, it is not an RFC UUID and normally has no hyphens.",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "requested_uuid",
      +    "requested_entity_type",
      +    "company_uuid",
      +    "company_name",
      +    "issuer_uuid",
      +    "issuer_name",
      +    "periods",
      +    "count"
      +  ],
      +  "type": "object"
      +}
  3. Added

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint, so safety is covered. The description adds genuine non-obvious behavior: issuer ids are silently resolved to their linked company, and results are periodic (series, not a single snapshot), which an agent needs to interpret results correctly.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, front-loaded: purpose and identifier first, then contents, then the id-discovery hint. Dense with terms but every sentence carries information; no filler.

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?

With an output schema present, the return values need not be spelled out, and both parameters are fully described in-schema with annotations covering the safety profile. Nothing an agent needs to call this correctly or interpret results is missing.

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 coverage is 100%, so both parameters (uuid format, limit_periods min/max/default) are already fully documented in the schema. The description restates the uuid as the internal identifier and its discovery path, adding little beyond what the schema text already says, so baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb ('Get') and resource ('financial parameters for a company or securities issuer') and then enumerates exactly what comes back: periodic balance/equity/asset/liability metrics plus calculated ratios (liquidity, leverage, independence, stability, capitalization). That content list effectively distinguishes it from company_get_by_uuid, though it never names a sibling explicitly.

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?

Gives clear routing context — 'Find the id via search_by_name first' and the note that issuer ids are accepted and resolved — so an agent knows the prerequisite step. It stops short of explicit when-not-to-use or a direct comparison against company_get_by_uuid / the other company_* list tools.

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