Skip to main content
Glama
danchev

openmarkets

by danchev

get_fund_info

Retrieve general information for a specific fund using its ticker symbol. Access fund details from Yahoo Finance.

Instructions

Retrieve general information for a specific fund.

Args: ticker (str): The symbol of the fund.

Returns: FundInfo: Information about the fund.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tickerYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
phoneNoContact phone number.
longBusinessSummaryNoLong business summary of the fund.
companyOfficersNoList of company officers.
executiveTeamNoExecutive team members.
maxAgeNoMaximum age of the data in seconds.
priceHintNoPrice hint for formatting.
previousCloseNoPrevious day's closing price.
openNoOpening price.
dayLowNoDay's lowest price.
dayHighNoDay's highest price.
regularMarketPreviousCloseNoRegular market previous close price.
regularMarketOpenNoRegular market opening price.
regularMarketDayLowNoRegular market day's lowest price.
regularMarketDayHighNoRegular market day's highest price.
trailingPENoTrailing price-to-earnings ratio.
volumeNoTrading volume.
regularMarketVolumeNoRegular market trading volume.
averageVolumeNoAverage trading volume.
averageVolume10daysNoAverage trading volume over 10 days.
averageDailyVolume10DayNoAverage daily volume over 10 days.
bidNoCurrent bid price.
askNoCurrent ask price.
bidSizeNoSize of current bid.
askSizeNoSize of current ask.
yieldNoFund yield.
totalAssetsNoTotal assets under management.
fiftyTwoWeekLowNo52-week low price.
fiftyTwoWeekHighNo52-week high price.
allTimeHighNoAll-time high price.
allTimeLowNoAll-time low price.
fiftyDayAverageNo50-day moving average.
twoHundredDayAverageNo200-day moving average.
trailingAnnualDividendRateNoTrailing annual dividend rate.
trailingAnnualDividendYieldNoTrailing annual dividend yield.
navPriceNoNet asset value price.
currencyNoCurrency of the fund.
tradeableNoWhether the fund is tradeable.
categoryNoFund category.
ytdReturnNoYear-to-date return.
beta3YearNo3-year beta.
fundFamilyNoFund family name.
fundInceptionDateNoFund inception date as Unix timestamp.
legalTypeNoLegal type of the fund.
threeYearAverageReturnNo3-year average return.
fiveYearAverageReturnNo5-year average return.
quoteTypeNoType of quote.
symbolNoTicker symbol.
languageNoLanguage code.
regionNoRegion code.
typeDispNoDisplay type.
quoteSourceNameNoQuote source name.
triggerableNoWhether price alerts can be triggered.
customPriceAlertConfidenceNoCustom price alert confidence level.
longNameNoLong name of the fund.
shortNameNoShort name of the fund.
marketStateNoCurrent market state (e.g., PRE, REGULAR, POST, CLOSED).
fiftyTwoWeekLowChangePercentNoPercentage change from 52-week low.
fiftyTwoWeekRangeNo52-week price range.
fiftyTwoWeekHighChangeNoChange from 52-week high.
fiftyTwoWeekHighChangePercentNoPercentage change from 52-week high.
fiftyTwoWeekChangePercentNo52-week percentage change.
dividendYieldNoDividend yield.
trailingThreeMonthReturnsNoTrailing 3-month returns.
trailingThreeMonthNavReturnsNoTrailing 3-month NAV returns.
netAssetsNoNet assets of the fund.
epsTrailingTwelveMonthsNoEarnings per share over trailing twelve months.
bookValueNoBook value per share.
fiftyDayAverageChangeNoChange from 50-day average.
fiftyDayAverageChangePercentNoPercentage change from 50-day average.
twoHundredDayAverageChangeNoChange from 200-day average.
twoHundredDayAverageChangePercentNoPercentage change from 200-day average.
netExpenseRatioNoNet expense ratio.
priceToBookNoPrice-to-book ratio.
sourceIntervalNoSource data interval in seconds.
exchangeDataDelayedByNoExchange data delay in minutes.
cryptoTradeableNoWhether crypto trading is available.
hasPrePostMarketDataNoWhether pre/post-market data is available.
firstTradeDateMillisecondsNoFirst trade date in milliseconds since epoch.
postMarketChangePercentNoPost-market percentage change.
postMarketPriceNoPost-market price.
postMarketChangeNoPost-market price change.
regularMarketChangeNoRegular market price change.
regularMarketDayRangeNoRegular market day price range.
fullExchangeNameNoFull name of the exchange.
financialCurrencyNoCurrency used for financial statements.
averageDailyVolume3MonthNoAverage daily volume over 3 months.
fiftyTwoWeekLowChangeNoChange from 52-week low.
corporateActionsNoList of corporate actions.
postMarketTimeNoPost-market time as Unix timestamp.
regularMarketTimeNoRegular market time as Unix timestamp.
exchangeNoExchange code.
messageBoardIdNoMessage board identifier.
exchangeTimezoneNameNoExchange timezone name.
exchangeTimezoneShortNameNoExchange timezone short name.
gmtOffSetMillisecondsNoGMT offset in milliseconds.
marketNoMarket identifier.
esgPopulatedNoWhether ESG data is populated.
regularMarketChangePercentNoRegular market percentage change.
regularMarketPriceNoRegular market price.
trailingPegRatioNoTrailing price/earnings to growth ratio.
Behavior3/5

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

No annotations are provided, so the description carries the transparency burden. It states it retrieves information but does not disclose behavior on invalid tickers, rate limits, or return format. For a simple read tool, it is minimally adequate.

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?

The description is compact with optional Args/Returns sections. It is front-loaded with the core purpose. The Returns line is generic but acceptable given an output schema exists. No wasted words.

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?

Given one parameter, no annotations, and an output schema, the description adequately states purpose and parameter. However, it misses context about fund types (mutual funds vs ETFs) and does not differentiate from get_info, making it less complete in the sibling context.

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%. The description adds 'The symbol of the fund' for the ticker parameter, which is not much more than the schema's 'Ticker' title. It does not specify ticker format or provide examples.

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 ('Retrieve') and identifies the resource ('general information for a specific fund'). It clearly distinguishes from sibling tools that retrieve specific aspects (e.g., holdings, operations).

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 like get_info, get_fund_overview, or others. No when-not or context is given.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/danchev/openmarkets'

If you have feedback or need assistance with the MCP directory API, please join our Discord server