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.
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 3.7/5 across 4 of 4 tools scored. Lowest: 2.9/5.
Each tool has a clearly distinct purpose: currency conversion, crypto price, exchange rates, and health check. No overlap or ambiguity.
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.
With 4 tools, the server is well-scoped for a finance data provider, covering key operations without unnecessary bloat.
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 toolsconvert_currencyAInspect
Convert amount between currencies using live rates. Returns: {amount, from, to, rate, result}
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | ||
| to_cur | Yes | ||
| from_cur | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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}
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| vs_currency | No | usd |
Tool Definition Quality
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.
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.
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.
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.
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.
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, ...}}
| Name | Required | Description | Default |
|---|---|---|---|
| base | No | USD |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
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.
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.
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.
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.
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.
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.
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!