Skip to main content
Glama

Finance Fintech Mcp

Server Details

Unlock the power of real-time financial data with our Finance MCP. Easily retrieve the latest

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
varvararatta/botfactory-mcp
GitHub Stars
0

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 DescriptionsB

Average 3.7/5 across 4 of 4 tools scored. Lowest: 2.9/5.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: currency conversion, crypto price, exchange rates, and health check. No overlap or ambiguity.

Naming Consistency5/5

All tool names follow the consistent verb_noun snake_case pattern (convert_currency, get_crypto_price, get_exchange_rates, health_check), with clear and predictable naming.

Tool Count5/5

With 4 tools, the server is well-scoped for a finance data provider, covering key operations without unnecessary bloat.

Completeness4/5

The tool set covers core finance functionality: currency conversion, crypto prices, and foreign exchange rates. A minor gap is the lack of historical data or multi-currency conversion in one call, but the surface is reasonable for its size.

Available Tools

4 tools
convert_currencyAInspect

Convert amount between currencies using live rates. Returns: {amount, from, to, rate, result}

ParametersJSON Schema
NameRequiredDescriptionDefault
amountYes
to_curYes
from_curYes
Behavior3/5

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

No annotations are provided, so the description carries the burden. It mentions live rates and shows the return structure but lacks details on source reliability, update frequency, error handling, 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?

Two sentences, front-loaded with purpose and return structure. No fluff, each sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple conversion tool with three parameters and no output schema, the description covers the basic purpose and return format. However, missing parameter details and behavioral traits make it barely adequate for an agent to invoke confidently.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description adds no parameter-specific details beyond names (e.g., no format, allowed values, or examples for amount, from_cur, to_cur). The return object is specified but input parameters are not elaborated.

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 the tool converts currency amounts using live rates, with a specific verb and resource. It distinguishes from siblings like get_exchange_rates by focusing on conversion rather than rate retrieval.

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

Usage Guidelines3/5

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

Implies use for currency conversion but provides no guidance on when to use this versus siblings like get_exchange_rates, nor any exclusions (e.g., unsupported currencies).

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

get_crypto_priceAInspect

Get cryptocurrency spot price via CoinGecko (no API key). symbol: btc, eth, sol, etc. Returns: {symbol, id, price, currency}

ParametersJSON Schema
NameRequiredDescriptionDefault
symbolYes
vs_currencyNousd
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses the external data source (CoinGecko), that no API key is required, and the return format partially. This provides useful behavioral context beyond the schema.

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 very concise: two sentences that efficiently convey purpose, source, input examples, and output format. No unnecessary 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?

For a simple tool with 2 parameters and no output schema, the description adequately covers inputs (with examples) and output structure, enabling an agent to use it correctly.

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 has no descriptions for parameters (0% coverage). The description adds meaning to 'symbol' by listing examples (btc, eth, sol) and implies it's a crypto ticker. Though 'vs_currency' is not explained, its name and default value make it clear.

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 retrieves cryptocurrency spot prices via CoinGecko. It specifies verb 'Get', resource 'cryptocurrency spot price', and distinguishes from sibling tools (convert_currency, get_exchange_rates) by focusing on crypto prices.

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

Usage Guidelines3/5

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

The description implies usage by giving example symbols and noting no API key is needed, but does not explicitly state when to use this tool over alternatives like convert_currency, nor when not to use it.

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

get_exchange_ratesAInspect

Get latest foreign exchange rates for a base currency via Frankfurter API. Returns: {base, date, rates: {EUR: 0.92, ...}}

ParametersJSON Schema
NameRequiredDescriptionDefault
baseNoUSD
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It reveals the return format and implies a read-only operation, but does not disclose potential limitations such as supported currencies, rate update frequency, or any API restrictions. The mention of 'Frankfurter API' gives some context but is insufficient for full transparency.

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 extremely concise: two sentences totaling 20 words. The first sentence states the purpose and data source, the second shows the return format. Every word is necessary with no redundancy.

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?

For a simple one-parameter tool with no output schema and no annotations, the description provides essential information: what it does, what it returns, and the source. It lacks details like supported currency codes or error handling, but these are not critical for basic usage. The context signals suggest this tool is low complexity, making the description largely adequate.

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 input schema only defines the 'base' parameter with a default of USD, leaving its purpose unclear. The description adds meaning by stating it is the base currency for which rates are fetched. However, it does not specify that the value must be a three-letter ISO currency code, which would further aid agents.

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 retrieves latest foreign exchange rates for a base currency via the Frankfurter API. This specific verb-resource combination effectively distinguishes it from sibling tools like convert_currency (which converts amounts) and get_crypto_price (which deals with cryptocurrencies).

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?

The description does not provide any guidance on when to use this tool versus alternatives such as convert_currency or get_crypto_price. It lacks explicit usage context, like suggesting this tool for obtaining rate lists before calling convert_currency for conversions.

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

health_checkCInspect

Server health check.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior2/5

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

No annotations provided and the description is minimal. Does not disclose what the health check measures (e.g., connectivity, latency) or what the output represents.

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?

Extremely concise at 5 words, but effectively communicates the tool's purpose. No extraneous content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Description is insufficient for a tool with no parameters, no output schema, and no annotations. Does not specify return type or behavior, leaving the agent to guess.

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% with no parameters. Description adds no param detail; 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?

Description states 'Server health check', clearly indicating a health-check operation. Differentiates from sibling tools which are all financial data functions.

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 versus alternatives. It lacks context on typical use cases or prerequisites.

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!

Try in Browser

Your Connectors

Sign in to create a connector for this server.