server_name
stringclasses
156 values
category
stringclasses
1 value
tool
stringlengths
176
38.2k
minecraft-wiki
other
{'type': 'function', 'name': 'MinecraftWiki_getPageSummary', 'description': 'Step 2 of the recommended workflow: After finding a page through search, use this to get both the page summary AND a list of all available sections. This helps determine which specific section to retrieve next using getPageSection.', 'parameters': {'type': 'object', 'properties': {'title': {'type': 'string', 'description': 'Title of the Minecraft Wiki page'}}, 'required': ['title'], 'additionalProperties': False}, 'strict': True}
minecraft-wiki
other
{'type': 'function', 'name': 'MinecraftWiki_getSectionsInPage', 'description': 'Retrieves an overview of all sections in the page.', 'parameters': {'type': 'object', 'properties': {'title': {'type': 'string', 'description': 'Title of the page to retrieve sections for.'}}, 'required': ['title'], 'additionalProperties': False}, 'strict': True}
minecraft-wiki
other
{'type': 'function', 'name': 'MinecraftWiki_listAllCategories', 'description': 'List all categories in the Minecraft Wiki.', 'parameters': {'type': 'object', 'properties': {'limit': {'type': 'number', 'description': 'The maximum number of categories to return (default: 10, max: 500).'}, 'prefix': {'type': 'string', 'description': 'Filters categories by prefix.'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
minecraft-wiki
other
{'type': 'function', 'name': 'MinecraftWiki_listCategoryMembers', 'description': 'List all pages that are members of a specific category on the Minecraft Wiki.', 'parameters': {'type': 'object', 'properties': {'category': {'type': 'string', 'description': "The name of the category to list members from (e.g., 'Items', 'Blocks', 'Entities', 'Structure Blueprints')."}, 'limit': {'type': 'number', 'description': 'The maximum number of pages to return (default: 100, max: 500).'}}, 'required': ['category'], 'additionalProperties': False}, 'strict': True}
minecraft-wiki
other
{'type': 'function', 'name': 'MinecraftWiki_resolveRedirect', 'description': 'Resolve a redirect and return the title of the target page.', 'parameters': {'type': 'object', 'properties': {'title': {'type': 'string', 'description': 'Title of the page to resolve the redirect for.'}}, 'required': ['title'], 'additionalProperties': False}, 'strict': True}
minecraft-wiki
other
{'type': 'function', 'name': 'MinecraftWiki_searchWiki', 'description': "Search the Minecraft Wiki for a specific structure, entity, item or block. NOTE: Only use for basic search terms like item/block/structure/entity names - complex queries (like 'loot table of X' or 'how to craft Y') will not work. For best results: 1. Search for the basic entity/structure/etc name first, 2. Then use getPageSummary to see available sections, 3. Finally use getPageSection to get specific section content.", 'parameters': {'type': 'object', 'properties': {'query': {'type': 'string', 'description': 'Search term to find on the Minecraft Wiki.'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
multiversx-mx
other
{'type': 'function', 'name': 'create-sft-nft-mesdt-tokens', 'description': 'Create a transaction to issue a semi-fungible token (SFT), or a non-fungible token (NFT), or a MetaESDT token for a collection and send it.\nPlease also specify the initial quantity and the royalties.', 'parameters': {'type': 'object', 'properties': {'initialQuantity': {'type': 'string', 'description': 'The initial quantity(number of tokens) that will be minted. If not provided, defaults to 1.'}, 'name': {'type': 'string', 'description': 'The name of the token.'}, 'royalties': {'type': 'string', 'description': "The royalties you'll receive."}, 'tokenIdentifier': {'type': 'string', 'description': 'The identifier of the collection.'}}, 'required': ['tokenIdentifier', 'name', 'initialQuantity'], 'additionalProperties': False}, 'strict': True}
multiversx-mx
other
{'type': 'function', 'name': 'create-wallet', 'description': 'Create a new wallet and save it as a PEM file. PEM file ARE NOT SECURE. If a wallet already exists, will abort operation.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
multiversx-mx
other
{'type': 'function', 'name': 'get-balance-of-address', 'description': 'Get the balance for a MultiversX address', 'parameters': {'type': 'object', 'properties': {'address': {'type': 'string', 'description': 'The bech32 representation of the address'}}, 'required': ['address'], 'additionalProperties': False}, 'strict': True}
multiversx-mx
other
{'type': 'function', 'name': 'get-network', 'description': 'Get the network set in the environment config', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
multiversx-mx
other
{'type': 'function', 'name': 'get-tokens-of-address', 'description': 'Get the tokens of an address. Returns the first 25 fungible tokens and the first 25 NFTs, SFTs and MetaESDT. To get more tokens, specify the number of tokens you want to get. Will return the specified number of fungible tokens and the same number of non-fungible. The returned list will contain twice the number of tokens specified, if tokens are available.', 'parameters': {'type': 'object', 'properties': {'address': {'type': 'string', 'description': 'The bech32 address of the account (erd1...)'}, 'size': {'type': 'number', 'description': 'The number of each token type to be returned. By default, the number is 25.'}}, 'required': ['address'], 'additionalProperties': False}, 'strict': True}
multiversx-mx
other
{'type': 'function', 'name': 'get-wallet-address', 'description': 'Get the bech32 address of the wallet set in the environment config', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
multiversx-mx
other
{'type': 'function', 'name': 'issue-fungible-token', 'description': 'Create a transaction to issue a fungible token and send it. Will issue the token with the specified arguments. All the properties will be set to true.', 'parameters': {'type': 'object', 'properties': {'initialSupply': {'type': 'string', 'description': 'The initial supply that will be minted.'}, 'numDecimals': {'type': 'string', 'description': 'The number of decimals the token will have.'}, 'tokenName': {'type': 'string', 'description': 'The token name.'}, 'tokenTicker': {'type': 'string', 'description': 'The token ticker.'}}, 'required': ['tokenName', 'tokenTicker', 'initialSupply', 'numDecimals'], 'additionalProperties': False}, 'strict': True}
multiversx-mx
other
{'type': 'function', 'name': 'issue-meta-esdt-collection', 'description': 'Create a transaction to issue a MetaESDT token collection (MESDT) and send it. Will issue the collection with the specified arguments. All the properties will be set to true.', 'parameters': {'type': 'object', 'properties': {'numDecimals': {'type': 'string', 'description': 'The number of decimals.'}, 'tokenName': {'type': 'string', 'description': 'The token name.'}, 'tokenTicker': {'type': 'string', 'description': 'The token ticker.'}}, 'required': ['tokenName', 'tokenTicker', 'numDecimals'], 'additionalProperties': False}, 'strict': True}
multiversx-mx
other
{'type': 'function', 'name': 'issue-nft-collection', 'description': 'Create a transaction to issue a non-fungible token collection (NFT) and send it. Will issue the collection with the specified arguments. All the properties will be set to true.', 'parameters': {'type': 'object', 'properties': {'tokenName': {'type': 'string', 'description': 'The token name.'}, 'tokenTicker': {'type': 'string', 'description': 'The token ticker.'}}, 'required': ['tokenName', 'tokenTicker'], 'additionalProperties': False}, 'strict': True}
multiversx-mx
other
{'type': 'function', 'name': 'issue-semi-fungible-collection', 'description': 'Create a transaction to issue a semi-fungible collection (SFT) and send it. Will issue the collection with the specified arguments. All the properties will be set to true.', 'parameters': {'type': 'object', 'properties': {'tokenName': {'type': 'string', 'description': 'The token name.'}, 'tokenTicker': {'type': 'string', 'description': 'The token ticker.'}}, 'required': ['tokenName', 'tokenTicker'], 'additionalProperties': False}, 'strict': True}
multiversx-mx
other
{'type': 'function', 'name': 'send-egld', 'description': 'Create a move balance transaction and send it. Will send EGLD using the wallet set in the env to the specified receiver.', 'parameters': {'type': 'object', 'properties': {'amount': {'type': 'string', 'description': 'The amount of EGLD to send. This amount will then be denominated (1 EGLD=1000000000000000000)'}, 'receiver': {'type': 'string', 'description': 'The bech32 address of the receiver (erd1...)'}}, 'required': ['amount', 'receiver'], 'additionalProperties': False}, 'strict': True}
multiversx-mx
other
{'type': 'function', 'name': 'send-egld-to-multiple-receivers', 'description': 'Create move balance transactions and send them. Will send EGLD using the wallet set in the env to each specified receiver.', 'parameters': {'type': 'object', 'properties': {'amount': {'type': 'string', 'description': 'The amount of EGLD to send. This amount will then be denominated (1 EGLD=1000000000000000000)'}, 'receivers': {'type': 'array', 'description': 'An array of bech32 addresses of the receivers (erd1...)', 'items': {'type': 'string'}}}, 'required': ['amount', 'receivers'], 'additionalProperties': False}, 'strict': True}
multiversx-mx
other
{'type': 'function', 'name': 'send-fungible-tokens', 'description': 'Create a fungible token transfer transaction and send it. Will send the specified token using the wallet set in the env to the specified receiver.', 'parameters': {'type': 'object', 'properties': {'amount': {'type': 'string', 'description': 'The amount to send. This amount will then be denominated.'}, 'receiver': {'type': 'string', 'description': 'The bech32 address of the receiver (erd1...)'}, 'token': {'type': 'string', 'description': 'The identifier of the token to send.'}}, 'required': ['amount', 'token', 'receiver'], 'additionalProperties': False}, 'strict': True}
multiversx-mx
other
{'type': 'function', 'name': 'send-sft-nft-meta-tokens', 'description': 'Create a nft, sft or meta esdt transfer transaction and send it. Will send the specified token using the wallet set in the env to the specified receiver.', 'parameters': {'type': 'object', 'properties': {'amount': {'type': 'string', 'description': 'The amount of tokens to send. ONLY needed for SFT or Meta-ESDT.'}, 'receiver': {'type': 'string', 'description': 'The bech32 address of the receiver (erd1...)'}, 'token': {'type': 'string', 'description': 'The extended identifier of the token to send (e.g. NFTEST-123456-0a).'}}, 'required': ['token', 'receiver'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'country_code', 'description': "Converts a country name to its ISO 3166-1 alpha-2 country code.\n\nParameters:\n - country_name: Full country name (e.g., 'United States', 'Germany')\n\nReturns the 2-letter ISO country code (e.g., 'US', 'DE')\n\nExample: country_code(country_name='United States') returns 'US'", 'parameters': {'type': 'object', 'properties': {'country_name': {'type': 'string', 'title': 'Country Name'}}, 'required': ['country_name'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_balance_sheet_data', 'description': "Retrieves balance sheet data from Nasdaq Equities 360 Balance Sheet database.\n\nProvides comprehensive balance sheet data including assets, liabilities, equity,\nand detailed breakdowns of each category.\n\nEither symbol or figi must be provided.\n\nParameters:\n - symbol: Stock ticker symbol (e.g., 'MSFT')\n - figi: Bloomberg FIGI identifier (e.g., 'BBG000BPH459')\n - calendardate: Calendar date in YYYY-MM-DD format (e.g., '2022-12-31')\n - dimension: Data dimension (MRQ: quarterly, MRY: annual,\n MRT: trailing twelve months)\n\nExample: get_balance_sheet_data(symbol='MSFT', dimension='MRY')\nExample: get_balance_sheet_data(figi='BBG000BPH459', calendardate='2022-12-31')", 'parameters': {'type': 'object', 'properties': {'calendardate': {'title': 'Calendardate', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'dimension': {'title': 'Dimension', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'figi': {'title': 'Figi', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'symbol': {'title': 'Symbol', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': [], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_cash_flow_data', 'description': "Retrieves cash flow statement data from Nasdaq Equities 360 Cash Flow database.\n\nProvides cash flow statement data including operating, investing, and financing\nactivities, as well as free cash flow and capital expenditure information.\n\nEither symbol or figi must be provided.\n\nParameters:\n - symbol: Stock ticker symbol (e.g., 'MSFT')\n - figi: Bloomberg FIGI identifier (e.g., 'BBG000BPH459')\n - calendardate: Calendar date in YYYY-MM-DD format (e.g., '2022-12-31')\n - dimension: Data dimension (MRQ: quarterly, MRY: annual,\n MRT: trailing twelve months)\n\nExample: get_cash_flow_data(symbol='MSFT', dimension='MRY')\nExample: get_cash_flow_data(figi='BBG000BPH459', calendardate='2022-12-31')", 'parameters': {'type': 'object', 'properties': {'calendardate': {'title': 'Calendardate', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'dimension': {'title': 'Dimension', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'figi': {'title': 'Figi', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'symbol': {'title': 'Symbol', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': [], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_company_reference_data', 'description': "Retrieves company reference data from Nasdaq Equities 360 Reference Data database.\n\nProvides static information about companies including exchange, industry, sector,\ncompany website, SEC filings links, and location information.\n\nEither symbol or figi must be provided.\n\nParameters:\n - symbol: Stock ticker symbol (e.g., 'AMD')\n - figi: Bloomberg FIGI identifier (e.g., 'BBG000BBQCY0')\n\nExample: get_company_reference_data(symbol='AMD')\nExample: get_company_reference_data(figi='BBG000BBQCY0')", 'parameters': {'type': 'object', 'properties': {'figi': {'title': 'Figi', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'symbol': {'title': 'Symbol', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': [], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_corporate_action_data', 'description': "Retrieves corporate actions data from Nasdaq Equities 360 Corporate Actions\ndatabase.\n\nProvides information about corporate events such as stock splits, mergers,\nacquisitions, and other significant company actions that can affect stock price\nand ownership.\n\nParameters:\n - symbol: Stock ticker symbol (e.g., 'TSLA')\n - figi: Bloomberg FIGI identifier\n - date: Date of the corporate action in YYYY-MM-DD format (e.g., '2023-03-24')\n - action: Type of corporate action (e.g., 'split', 'merger')\n\nExample: get_corporate_action_data(symbol='TSLA', action='split')\nExample: get_corporate_action_data(date='2023-03-24')", 'parameters': {'type': 'object', 'properties': {'action': {'title': 'Action', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'date': {'title': 'Date', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'figi': {'title': 'Figi', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'symbol': {'title': 'Symbol', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': [], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_detailed_financials', 'description': "Retrieves detailed financial data from Nasdaq Equities 360 Fundamental\nDetails database.\n\nProvides comprehensive financial statement data including balance sheet items,\nincome statement components, cash flow statement details, and financial ratios.\n\nEither symbol or figi must be provided.\n\nParameters:\n - symbol: Stock ticker symbol (e.g., 'MSFT')\n - figi: Bloomberg FIGI identifier (e.g., 'BBG000BPH459')\n - calendardate: Calendar date in YYYY-MM-DD format (e.g., '2022-12-31')\n - dimension: Data dimension (MRQ: quarterly, MRY: annual,\n MRT: trailing twelve months)\n\nExample: get_detailed_financials(symbol='MSFT', dimension='MRY')\nExample: get_detailed_financials(figi='BBG000BPH459', calendardate='2022-12-31')", 'parameters': {'type': 'object', 'properties': {'calendardate': {'title': 'Calendardate', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'dimension': {'title': 'Dimension', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'figi': {'title': 'Figi', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'symbol': {'title': 'Symbol', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': [], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_fees_and_expenses', 'description': "Retrieves Fund Fee and Expense Data (NFN/MFRPM) from Nasdaq Fund Network.\n\nProvides information about fund fees, expenses, and sales charges.\n\nParameters:\n - fund_id: Optional unique fund identifier\n - ticker: Optional ticker symbol\n - Additional parameters supported by the Nasdaq Data Link API\n\nExample: get_fees_and_expenses(ticker='ABCDX')\nExample: get_fees_and_expenses(fund_id='12345')", 'parameters': {'type': 'object', 'properties': {'fund_id': {'title': 'Fund Id', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'kwargs': {'type': 'string', 'title': 'kwargs'}, 'ticker': {'title': 'Ticker', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': ['kwargs'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_fund_information', 'description': "Retrieves Fund Information Report (NFN/MFRFI) data from Nasdaq Fund Network.\n\nProvides detailed information about funds including investment strategy, objectives,\nand classification data.\n\nParameters:\n - fund_id: Optional unique fund identifier\n - name: Optional fund name\n - investment_company_type: Optional investment company type\n (N-1A for Open-Ended mutual funds, N-2 for Closed-End funds)\n - Additional parameters supported by the Nasdaq Data Link API\n\nExample: get_fund_information(fund_id='12345')\nExample: get_fund_information(investment_company_type='N-1A')", 'parameters': {'type': 'object', 'properties': {'fund_id': {'title': 'Fund Id', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'investment_company_type': {'title': 'Investment Company Type', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'kwargs': {'type': 'string', 'title': 'kwargs'}, 'name': {'title': 'Name', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': ['kwargs'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_fund_master_report', 'description': "Retrieves Fund Master Report (NFN/MFRFM) data from Nasdaq Fund Network.\n\nProvides basic information about live NFN funds, mutual funds and closed-end funds.\n\nParameters:\n - fund_id: Optional unique fund identifier\n - name: Optional fund name\n - investment_company_type: Optional investment company type\n (N-1A for Open-Ended mutual funds, N-2 for Closed-End funds)\n - Additional parameters supported by the Nasdaq Data Link API\n\nExample: get_fund_master_report(fund_id='12345')\nExample: get_fund_master_report(investment_company_type='N-1A')", 'parameters': {'type': 'object', 'properties': {'fund_id': {'title': 'Fund Id', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'investment_company_type': {'title': 'Investment Company Type', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'kwargs': {'type': 'string', 'title': 'kwargs'}, 'name': {'title': 'Name', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': ['kwargs'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_fundamental_data', 'description': "Retrieves fundamental financial data from Nasdaq Equities 360 Fundamental\nSummary database.\n\nProvides comprehensive fundamental data including profitability ratios,\nvaluation metrics, income statement items, and financial health indicators.\n\nEither symbol or figi must be provided.\n\nParameters:\n - symbol: Stock ticker symbol (e.g., 'MSFT')\n - figi: Bloomberg FIGI identifier (e.g., 'BBG000BPH459')\n - calendardate: Calendar date in YYYY-MM-DD format (e.g., '2022-12-31')\n - dimension: Data dimension (MRQ: quarterly, MRY: annual,\n MRT: trailing twelve months)\n\nExample: get_fundamental_data(symbol='MSFT', dimension='MRY')\nExample: get_fundamental_data(figi='BBG000BPH459', calendardate='2022-12-31')", 'parameters': {'type': 'object', 'properties': {'calendardate': {'title': 'Calendardate', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'dimension': {'title': 'Dimension', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'figi': {'title': 'Figi', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'symbol': {'title': 'Symbol', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': [], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_indicator_value', 'description': "Retrieves World Bank indicator value for a specific country and indicator.\n\nParameters:\n - country: Country name or ISO code (e.g., 'United States', 'US')\n - indicator: World Bank indicator code (e.g., 'NY.GDP.MKTP.CD')\n\nExample: get_indicator_value(country='United States', indicator='NY.GDP.MKTP.CD')", 'parameters': {'type': 'object', 'properties': {'country': {'type': 'string', 'title': 'Country'}, 'indicator': {'type': 'string', 'title': 'Indicator'}}, 'required': ['country', 'indicator'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_monthly_flows', 'description': "Retrieves Fund Monthly Flows (NFN/MFRMF) data from Nasdaq Fund Network.\n\nProvides historical fund flow data on a monthly basis.\n\nParameters:\n - fund_id: Optional unique fund identifier\n - ticker: Optional ticker symbol\n - Additional parameters supported by the Nasdaq Data Link API\n\nExample: get_monthly_flows(ticker='ABCDX')\nExample: get_monthly_flows(fund_id='12345')", 'parameters': {'type': 'object', 'properties': {'fund_id': {'title': 'Fund Id', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'kwargs': {'type': 'string', 'title': 'kwargs'}, 'ticker': {'title': 'Ticker', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': ['kwargs'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_performance_analytics', 'description': "Retrieves Fund Performance Analytics (NFN/MFRPA) data from Nasdaq Fund Network.\n\nProvides analytical metrics such as alpha, beta, R-squared, Sharpe ratio, etc.\n\nParameters:\n - fund_id: Optional unique fund identifier\n - ticker: Optional ticker symbol\n - Additional parameters supported by the Nasdaq Data Link API\n\nExample: get_performance_analytics(ticker='ABCDX')\nExample: get_performance_analytics(fund_id='12345')", 'parameters': {'type': 'object', 'properties': {'fund_id': {'title': 'Fund Id', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'kwargs': {'type': 'string', 'title': 'kwargs'}, 'ticker': {'title': 'Ticker', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': ['kwargs'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_performance_benchmark', 'description': "Retrieves Fund Performance Benchmark (NFN/MFRPRB) data from Nasdaq Fund Network.\n\nProvides information about fund benchmark indexes used for performance comparison.\n\nParameters:\n - fund_id: Optional unique fund identifier\n - ticker: Optional ticker symbol\n - Additional parameters supported by the Nasdaq Data Link API\n\nExample: get_performance_benchmark(ticker='ABCDX')\nExample: get_performance_benchmark(fund_id='12345')", 'parameters': {'type': 'object', 'properties': {'fund_id': {'title': 'Fund Id', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'kwargs': {'type': 'string', 'title': 'kwargs'}, 'ticker': {'title': 'Ticker', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': ['kwargs'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_performance_statistics', 'description': "Retrieves Fund Performance Statistics (NFN/MFRPS) data from Nasdaq Fund Network.\n\nProvides performance returns for various time periods\n(1mo, 3mo, YTD, 1yr, 3yr, etc.).\n\nParameters:\n - fund_id: Optional unique fund identifier\n - ticker: Optional ticker symbol\n - Additional parameters supported by the Nasdaq Data Link API\n\nExample: get_performance_statistics(ticker='ABCDX')\nExample: get_performance_statistics(fund_id='12345')", 'parameters': {'type': 'object', 'properties': {'fund_id': {'title': 'Fund Id', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'kwargs': {'type': 'string', 'title': 'kwargs'}, 'ticker': {'title': 'Ticker', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': ['kwargs'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_price_history', 'description': "Retrieves Fund Price History (NFN/MFRPH) data from Nasdaq Fund Network.\n\nProvides historical NAV, offering, and redemption prices for funds.\n\nParameters:\n - fund_id: Optional unique fund identifier\n - ticker: Optional ticker symbol\n - start_date: Optional start date for price history (YYYY-MM-DD format)\n - end_date: Optional end date for price history (YYYY-MM-DD format)\n - Additional parameters supported by the Nasdaq Data Link API\n\nExample: get_price_history(\n ticker='ABCDX', start_date='2024-01-01', end_date='2024-04-30'\n)\nExample: get_price_history(fund_id='12345')", 'parameters': {'type': 'object', 'properties': {'end_date': {'title': 'End Date', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'fund_id': {'title': 'Fund Id', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'kwargs': {'type': 'string', 'title': 'kwargs'}, 'start_date': {'title': 'Start Date', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'ticker': {'title': 'Ticker', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': ['kwargs'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_recent_price_history', 'description': "Retrieves recent Fund Price History (NFN/MFRPH10) data from Nasdaq Fund Network.\n\nProvides historical NAV, offering, and redemption prices for funds for the\nlast 10 trading days.\n\nParameters:\n - fund_id: Optional unique fund identifier\n - ticker: Optional ticker symbol\n - start_date: Optional start date for price history (YYYY-MM-DD format)\n - end_date: Optional end date for price history (YYYY-MM-DD format)\n - Additional parameters supported by the Nasdaq Data Link API\n\nExample: get_recent_price_history(ticker='ABCDX')\nExample: get_recent_price_history(fund_id='12345')", 'parameters': {'type': 'object', 'properties': {'end_date': {'title': 'End Date', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'fund_id': {'title': 'Fund Id', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'kwargs': {'type': 'string', 'title': 'kwargs'}, 'start_date': {'title': 'Start Date', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'ticker': {'title': 'Ticker', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': ['kwargs'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_rtat', 'description': "Retrieves Retail Trading Activity (RTAT) data for specific dates and optional\ntickers.\n\nExample: get_rtat(\n dates='2025-03-31,2025-03-28,2025-03-27', tickers='TSLA,TQQQ,SQQQ'\n)", 'parameters': {'type': 'object', 'properties': {'dates': {'type': 'string', 'title': 'Dates'}, 'tickers': {'type': 'string', 'title': 'Tickers', 'default': None}}, 'required': ['dates'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_rtat10', 'description': "Retrieves Retail Trading Activity Tracker 10 (RTAT10) data\nfor specific dates and optional tickers.\n\nExample: get_rtat10(\n dates='2025-03-31,2025-03-28,2025-03-27', tickers='TSLA,TQQQ,SQQQ'\n)", 'parameters': {'type': 'object', 'properties': {'dates': {'type': 'string', 'title': 'Dates'}, 'tickers': {'type': 'string', 'title': 'Tickers', 'default': None}}, 'required': ['dates'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_share_class_information', 'description': "Retrieves Fund Share Class Information (NFN/MFRSI) data from Nasdaq Fund Network.\n\nProvides detailed information about fund share classes including minimum\ninvestments, fees, and other attributes.\n\nParameters:\n - fund_id: Optional unique fund identifier\n - ticker: Optional ticker symbol\n - Additional parameters supported by the Nasdaq Data Link API\n\nExample: get_share_class_information(fund_id='12345')\nExample: get_share_class_information(ticker='ABCDX')", 'parameters': {'type': 'object', 'properties': {'fund_id': {'title': 'Fund Id', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'kwargs': {'type': 'string', 'title': 'kwargs'}, 'ticker': {'title': 'Ticker', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': ['kwargs'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_share_class_master', 'description': "Retrieves Fund Share Class Master (NFN/MFRSM) data from Nasdaq Fund Network.\n\nProvides basic information about fund share classes, including identifiers and name.\n\nParameters:\n - fund_id: Optional unique fund identifier\n - name: Optional fund name\n - Additional parameters supported by the Nasdaq Data Link API\n\nExample: get_share_class_master(fund_id='12345')\nExample: get_share_class_master(name='Growth Fund')", 'parameters': {'type': 'object', 'properties': {'fund_id': {'title': 'Fund Id', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'kwargs': {'type': 'string', 'title': 'kwargs'}, 'name': {'title': 'Name', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': ['kwargs'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_stock_stats', 'description': "Retrieves company statistics from Nasdaq Equities 360 database.\n\nProvides comprehensive statistics for a company including market cap, PE ratio,\n52-week highs/lows, dividend information, and more.\n\nEither symbol or figi must be provided.\n\nExample: get_stock_stats(symbol='MSFT')\nExample: get_stock_stats(figi='BBG000BPH459')", 'parameters': {'type': 'object', 'properties': {'figi': {'title': 'Figi', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'symbol': {'title': 'Symbol', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': [], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'get_trade_summary_data', 'description': 'Retrieves Trade Summary data from Nasdaq Data Link NDAQ/TS datatable.\n\nProvides consolidated trade data including open, high, low, close, and volume.\n\nExamples:\n get_trade_summary_data() # Returns all available data\n # (may be limited by API quotas)', 'parameters': {'type': 'object', 'properties': {'kwargs': {'type': 'string', 'title': 'kwargs'}}, 'required': ['kwargs'], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'list_balance_sheet_fields', 'description': 'Lists all available fields in the balance sheet database with descriptions.\n\nThis helps users understand what data is available through the\nget_balance_sheet_data tool, including assets, liabilities, equity, and detailed\nbreakdowns of each category.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'list_cash_flow_fields', 'description': 'Lists all available fields in the cash flow statement database with descriptions.\n\nThis helps users understand what data is available through the\nget_cash_flow_data tool, including operating, investing, and financing cash\nflows, and related metrics.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'list_corporate_action_fields', 'description': 'Lists all available fields in the corporate actions database with descriptions.\n\nThis helps users understand what data is available through the\nget_corporate_action_data tool, including date, action type, value, and related\ncompany information.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'list_detailed_financial_fields', 'description': 'Lists all available fields in the fundamental details database with descriptions.\n\nThis helps users understand what data is available through the\nget_detailed_financials tool, including balance sheet items, income statement\ncomponents, cash flow details, and more.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'list_fundamental_fields', 'description': 'Lists all available fields in the fundamental summary database with descriptions.\n\nThis helps users understand what data is available through the\nget_fundamental_data tool, including profitability ratios, valuation metrics,\nand financial health indicators.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'list_reference_data_fields', 'description': 'Lists all available fields in the company reference database with descriptions.\n\nThis helps users understand what data is available through the\nget_company_reference_data tool, including exchange, industry, sector, company\nwebsite, and location information.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'list_stock_stat_fields', 'description': 'Lists all available fields in the stock statistics database with descriptions.\n\nThis helps users understand what data is available through the get_stock_stats tool.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'list_worldbank_indicators', 'description': 'Lists all available World Bank indicators.\n\nReturns a comprehensive list of all World Bank indicator codes and names\nthat can be used with the get_indicator_value function.\n\nExample: list_worldbank_indicators()', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
nasdaq-data-link
other
{'type': 'function', 'name': 'search_worldbank_indicators', 'description': "Searches World Bank indicators by keyword.\n\nParameters:\n - keyword: Search term to find relevant indicators\n (e.g., 'GDP', 'inflation', 'population')\n\nReturns a list of matching World Bank indicator codes and names.\n\nExample: search_worldbank_indicators(keyword='GDP')", 'parameters': {'type': 'object', 'properties': {'keyword': {'type': 'string', 'title': 'Keyword'}}, 'required': ['keyword'], 'additionalProperties': False}, 'strict': True}
needle-mcp
other
{'type': 'function', 'name': 'needle_add_file', 'description': "Add a new document to a Needle collection by providing a URL for download.\n Supports multiple file formats including:\n - PDF documents\n - Microsoft Word files (DOC, DOCX)\n - Plain text files (TXT)\n - Web pages (HTML)\n \n The document will be:\n 1. Downloaded from the provided URL\n 2. Processed for text extraction\n 3. Indexed for semantic search\n \n Use this tool when you need to:\n - Add new documents to a collection\n - Make documents searchable\n - Expand your knowledge base\n \n Important: Documents require processing time before they're searchable.\n Check processing status using needle_list_files before searching new content.", 'parameters': {'type': 'object', 'properties': {'collection_id': {'type': 'string', 'description': 'The unique collection identifier where the file will be added'}, 'name': {'type': 'string', 'description': 'A descriptive filename that will help identify this document in results'}, 'url': {'type': 'string', 'description': 'Public URL where the document can be downloaded from'}}, 'required': ['collection_id', 'name', 'url'], 'additionalProperties': False}, 'strict': True}
needle-mcp
other
{'type': 'function', 'name': 'needle_create_collection', 'description': "Create a new document collection in Needle for organizing and searching documents. \n A collection acts as a container for related documents and enables semantic search across its contents.\n Use this tool when you need to:\n - Start a new document organization\n - Group related documents together\n - Set up a searchable document repository\n Returns a collection ID that's required for subsequent operations. Choose a descriptive name that \n reflects the collection's purpose for better organization.", 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'A clear, descriptive name for the collection that reflects its purpose and contents'}}, 'required': ['name'], 'additionalProperties': False}, 'strict': True}
needle-mcp
other
{'type': 'function', 'name': 'needle_get_collection_details', 'description': "Fetch comprehensive metadata about a specific Needle collection. \n Provides detailed information about the collection's configuration, creation date, and current status.\n Use this tool when you need to:\n - Verify a collection's existence and configuration\n - Check collection metadata before operations\n - Get creation date and other attributes\n Requires a valid collection ID and returns detailed collection metadata. Will error if collection doesn't exist.", 'parameters': {'type': 'object', 'properties': {'collection_id': {'type': 'string', 'description': 'The unique collection identifier returned from needle_create_collection or needle_list_collections'}}, 'required': ['collection_id'], 'additionalProperties': False}, 'strict': True}
needle-mcp
other
{'type': 'function', 'name': 'needle_get_collection_stats', 'description': "Retrieve detailed statistical information about a Needle collection's contents and status.\n Provides metrics including:\n - Total number of documents\n - Processing status of documents\n - Storage usage and limits\n - Index status and health\n Use this tool to:\n - Monitor collection size and growth\n - Verify processing completion\n - Check collection health before operations\n Essential for ensuring collection readiness before performing searches.", 'parameters': {'type': 'object', 'properties': {'collection_id': {'type': 'string', 'description': 'The unique collection identifier to get statistics for'}}, 'required': ['collection_id'], 'additionalProperties': False}, 'strict': True}
needle-mcp
other
{'type': 'function', 'name': 'needle_list_collections', 'description': "List Needle collections. Returns maximum of 20 results. Get more results by increasing the offset.\n Returns detailed information including collection IDs, names, and creation dates. Use this tool when you need to:\n - Get an overview of available document collections\n - Find collection IDs for subsequent operations\n - Verify collection existence before performing operations\n The response includes metadata that's required for other Needle operations.", 'parameters': {'type': 'object', 'properties': {'offset': {'type': 'number', 'description': 'The offset to start listing from. Default is 0.', 'default': 0}}, 'required': [], 'additionalProperties': False}, 'strict': True}
needle-mcp
other
{'type': 'function', 'name': 'needle_list_files', 'description': 'List all documents stored within a specific Needle collection with their current status.\n Returns detailed information about each file including:\n - File ID and name\n - Processing status (pending, processing, complete, error)\n - Upload date and metadata\n Use this tool when you need to:\n - Inventory available documents\n - Check processing status of uploads\n - Get file IDs for reference\n - Verify document availability before searching\n Essential for monitoring document processing completion before performing searches.', 'parameters': {'type': 'object', 'properties': {'collection_id': {'type': 'string', 'description': 'The unique collection identifier to list files from'}}, 'required': ['collection_id'], 'additionalProperties': False}, 'strict': True}
needle-mcp
other
{'type': 'function', 'name': 'needle_search', 'description': 'Perform intelligent semantic search across documents in a Needle collection.\n This tool uses advanced embedding technology to find relevant content based on meaning,\n not just keywords. The search:\n - Understands natural language queries\n - Finds conceptually related content\n - Returns relevant text passages with source information\n - Ranks results by semantic relevance\n \n Use this tool when you need to:\n - Find specific information within documents\n - Answer questions from document content\n - Research topics across multiple documents\n - Locate relevant passages and their sources\n \n More effective than traditional keyword search for:\n - Natural language questions\n - Conceptual queries\n - Finding related content\n \n Returns matching text passages with their source file IDs.', 'parameters': {'type': 'object', 'properties': {'collection_id': {'type': 'string', 'description': 'The unique collection identifier to search within'}, 'query': {'type': 'string', 'description': "Natural language query describing the information you're looking for"}}, 'required': ['collection_id', 'query'], 'additionalProperties': False}, 'strict': True}
neo4j-cypher
other
{'type': 'function', 'name': 'get_neo4j_schema', 'description': 'List all nodes, their attributes and their relationships to other nodes in the neo4j database.\nThis requires that the APOC plugin is installed and enabled.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
neo4j-cypher
other
{'type': 'function', 'name': 'read_neo4j_cypher', 'description': 'Execute a read Cypher query on the neo4j database.', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'title': 'Params', 'description': 'The parameters to pass to the Cypher query.', 'default': {}, 'additionalProperties': True}, 'query': {'type': 'string', 'title': 'Query', 'description': 'The Cypher query to execute.'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
neo4j-cypher
other
{'type': 'function', 'name': 'write_neo4j_cypher', 'description': 'Execute a write Cypher query on the neo4j database.', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'title': 'Params', 'description': 'The parameters to pass to the Cypher query.', 'default': {}, 'additionalProperties': True}, 'query': {'type': 'string', 'title': 'Query', 'description': 'The Cypher query to execute.'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
neo4j-data-modeling
other
{'type': 'function', 'name': 'export_to_arrows_json', 'description': 'Export the data model to the Arrows web application format. Returns a JSON string. This should be presented to the user as an artifact if possible.', 'parameters': {'type': 'object', 'properties': {'data_model': {'$ref': '#/$defs/DataModel', 'title': 'Data Model'}}, 'required': ['data_model'], 'additionalProperties': False}, 'strict': True}
neo4j-data-modeling
other
{'type': 'function', 'name': 'get_constraints_cypher_queries', 'description': 'Get the Cypher queries to create constraints on the data model. This creates range indexes on the key properties of the nodes and relationships and enforces uniqueness and existence of the key properties.', 'parameters': {'type': 'object', 'properties': {'data_model': {'$ref': '#/$defs/DataModel', 'title': 'Data Model'}}, 'required': ['data_model'], 'additionalProperties': False}, 'strict': True}
neo4j-data-modeling
other
{'type': 'function', 'name': 'get_example_data_model', 'description': 'Get an example graph data model from the available templates. Returns a DataModel object and the Mermaid visualization configuration for the example graph data model.', 'parameters': {'type': 'object', 'properties': {'example_name': {'type': 'string', 'title': 'Example Name', 'description': "Name of the example to load: 'patient_journey', 'supply_chain', 'software_dependency', 'oil_gas_monitoring', 'customer_360', 'fraud_aml', or 'health_insurance_fraud'"}}, 'required': ['example_name'], 'additionalProperties': False}, 'strict': True}
neo4j-data-modeling
other
{'type': 'function', 'name': 'get_mermaid_config_str', 'description': 'Get the Mermaid configuration string for the data model. This may be visualized in Claude Desktop and other applications with Mermaid support.', 'parameters': {'type': 'object', 'properties': {'data_model': {'$ref': '#/$defs/DataModel', 'title': 'Data Model'}}, 'required': ['data_model'], 'additionalProperties': False}, 'strict': True}
neo4j-data-modeling
other
{'type': 'function', 'name': 'get_node_cypher_ingest_query', 'description': 'Get the Cypher query to ingest a list of Node records into a Neo4j database.\nThis should be used to ingest data into a Neo4j database.\nThis is a parameterized Cypher query that takes a list of records as input to the $records parameter.', 'parameters': {'type': 'object', 'properties': {'node': {'$ref': '#/$defs/Node', 'title': 'Node', 'description': 'The node to get the Cypher query for.'}}, 'required': ['node'], 'additionalProperties': False}, 'strict': True}
neo4j-data-modeling
other
{'type': 'function', 'name': 'get_relationship_cypher_ingest_query', 'description': 'Get the Cypher query to ingest a list of Relationship records into a Neo4j database.\nThis should be used to ingest data into a Neo4j database.\nThis is a parameterized Cypher query that takes a list of records as input to the $records parameter.\nThe records must contain the Relationship properties, if any, as well as the sourceId and targetId properties of the start and end nodes respectively.', 'parameters': {'type': 'object', 'properties': {'data_model': {'$ref': '#/$defs/DataModel', 'title': 'Data Model', 'description': 'The data model snippet that contains the relationship, start node and end node.'}, 'relationship_end_node_label': {'type': 'string', 'title': 'Relationship End Node Label', 'description': 'The label of the relationship end node.'}, 'relationship_start_node_label': {'type': 'string', 'title': 'Relationship Start Node Label', 'description': 'The label of the relationship start node.'}, 'relationship_type': {'type': 'string', 'title': 'Relationship Type', 'description': 'The type of the relationship to get the Cypher query for.'}}, 'required': ['data_model', 'relationship_type', 'relationship_start_node_label', 'relationship_end_node_label'], 'additionalProperties': False}, 'strict': True}
neo4j-data-modeling
other
{'type': 'function', 'name': 'list_example_data_models', 'description': 'List all available example data models with descriptions. Returns a dictionary with example names and their descriptions.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
neo4j-data-modeling
other
{'type': 'function', 'name': 'load_from_arrows_json', 'description': 'Load a data model from the Arrows web application format. Returns a data model as a JSON string.', 'parameters': {'type': 'object', 'properties': {'arrows_data_model_dict': {'type': 'object', 'title': 'Arrows Data Model Dict', 'additionalProperties': True}}, 'required': ['arrows_data_model_dict'], 'additionalProperties': False}, 'strict': True}
neo4j-data-modeling
other
{'type': 'function', 'name': 'validate_data_model', 'description': 'Validate the entire data model. Returns True if the data model is valid, otherwise raises a ValueError. If return_validated is True, returns the validated data model.', 'parameters': {'type': 'object', 'properties': {'data_model': {'$ref': '#/$defs/DataModel', 'title': 'Data Model'}, 'return_validated': {'type': 'boolean', 'title': 'Return Validated', 'default': False}}, 'required': ['data_model'], 'additionalProperties': False}, 'strict': True}
neo4j-data-modeling
other
{'type': 'function', 'name': 'validate_node', 'description': 'Validate a single node. Returns True if the node is valid, otherwise raises a ValueError. If return_validated is True, returns the validated node.', 'parameters': {'type': 'object', 'properties': {'node': {'$ref': '#/$defs/Node', 'title': 'Node'}, 'return_validated': {'type': 'boolean', 'title': 'Return Validated', 'default': False}}, 'required': ['node'], 'additionalProperties': False}, 'strict': True}
neo4j-data-modeling
other
{'type': 'function', 'name': 'validate_relationship', 'description': 'Validate a single relationship. Returns True if the relationship is valid, otherwise raises a ValueError. If return_validated is True, returns the validated relationship.', 'parameters': {'type': 'object', 'properties': {'relationship': {'$ref': '#/$defs/Relationship', 'title': 'Relationship'}, 'return_validated': {'type': 'boolean', 'title': 'Return Validated', 'default': False}}, 'required': ['relationship'], 'additionalProperties': False}, 'strict': True}
node-code-sandbox
other
{'type': 'function', 'name': 'get_dependency_types', 'description': "Given an array of npm package names (and optional versions), \n fetch whether each package ships its own TypeScript definitions \n or has a corresponding @types/… package, and return the raw .d.ts text.\n \n Useful whenwhen you're about to run a Node.js script against an unfamiliar dependency \n and want to inspect what APIs and types it exposes.", 'parameters': {'type': 'object', 'properties': {'dependencies': {'type': 'array', 'items': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string'}, 'version': {'type': 'string'}}, 'additionalProperties': False}}}, 'required': ['dependencies'], 'additionalProperties': False}, 'strict': True}
node-code-sandbox
other
{'type': 'function', 'name': 'run_js', 'description': 'Install npm dependencies and run JavaScript code inside a running sandbox container.\n After running, you must manually stop the sandbox to free resources.\n The code must be valid ESModules (import/export syntax). Best for complex workflows where you want to reuse the environment across multiple executions.\n When reading and writing from the Node.js processes, you always need to read from and write to the "./files" directory to ensure persistence on the mounted volume.', 'parameters': {'type': 'object', 'properties': {'code': {'type': 'string', 'description': 'JavaScript code to run inside the container.'}, 'container_id': {'type': 'string', 'description': 'Docker container identifier'}, 'dependencies': {'type': 'array', 'description': 'A list of npm dependencies to install before running the code. Each item must have a `name` (package) and `version` (range). If none, returns an empty array.', 'default': [], 'items': {'type': 'object', 'required': ['name', 'version'], 'properties': {'name': {'type': 'string', 'description': 'npm package name, e.g. lodash'}, 'version': {'type': 'string', 'description': 'npm package version range, e.g. ^4.17.21'}}, 'additionalProperties': False}}, 'listenOnPort': {'type': 'number', 'description': 'If set, leaves the process running and exposes this port to the host.'}}, 'required': ['container_id', 'code'], 'additionalProperties': False}, 'strict': True}
node-code-sandbox
other
{'type': 'function', 'name': 'run_js_ephemeral', 'description': 'Run a JavaScript snippet in a temporary disposable container with optional npm dependencies, then automatically clean up. \n The code must be valid ESModules (import/export syntax). Ideal for simple one-shot executions without maintaining a sandbox or managing cleanup manually.\n When reading and writing from the Node.js processes, you always need to read from and write to the "./files" directory to ensure persistence on the mounted volume.\n This includes images (e.g., PNG, JPEG) and other files (e.g., text, JSON, binaries).\n\n Example:\n ```js\n import fs from "fs/promises";\n await fs.writeFile("./files/hello.txt", "Hello world!");\n console.log("Saved ./files/hello.txt");\n ```', 'parameters': {'type': 'object', 'properties': {'code': {'type': 'string', 'description': 'JavaScript code to run inside the ephemeral container.'}, 'dependencies': {'type': 'array', 'description': 'A list of npm dependencies to install before running the code. Each item must have a `name` (package) and `version` (range). If none, returns an empty array.', 'default': [], 'items': {'type': 'object', 'required': ['name', 'version'], 'properties': {'name': {'type': 'string', 'description': 'npm package name, e.g. lodash'}, 'version': {'type': 'string', 'description': 'npm package version range, e.g. ^4.17.21'}}, 'additionalProperties': False}}, 'image': {'type': 'string', 'description': 'Docker image to use for ephemeral execution. e.g. - **node:lts-slim**: Node.js LTS version, slim variant. (Lightweight and fast for JavaScript execution tasks.)\n- **mcr.microsoft.com/playwright:v1.55.0-noble**: Playwright image for browser automation. (Preconfigured for running Playwright scripts.)\n- **alfonsograziano/node-chartjs-canvas:latest**: Chart.js image for chart generation and mermaid charts generation. (\'Preconfigured for generating charts with chartjs-node-canvas and Mermaid. Minimal Mermaid example:\n import fs from "fs";\n import { run } from "@mermaid-js/mermaid-cli";\n fs.writeFileSync("./files/diagram.mmd", "graph LR; A-->B;", "utf8");\n await run("./files/diagram.mmd", "./files/diagram.svg");)', 'default': 'node:lts-slim'}}, 'required': ['code'], 'additionalProperties': False}, 'strict': True}
node-code-sandbox
other
{'type': 'function', 'name': 'sandbox_exec', 'description': 'Execute one or more shell commands inside a running sandbox container. Requires a sandbox initialized beforehand.', 'parameters': {'type': 'object', 'properties': {'commands': {'type': 'array', 'items': {'type': 'string', 'minLength': 1}}, 'container_id': {'type': 'string'}}, 'required': ['container_id', 'commands'], 'additionalProperties': False}, 'strict': True}
node-code-sandbox
other
{'type': 'function', 'name': 'sandbox_initialize', 'description': 'Start a new isolated Docker container running Node.js. Used to set up a sandbox session for multiple commands and scripts.', 'parameters': {'type': 'object', 'properties': {'image': {'type': 'string'}, 'port': {'type': 'number', 'description': 'If set, maps this container port to the host'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
node-code-sandbox
other
{'type': 'function', 'name': 'sandbox_stop', 'description': 'Terminate and remove a running sandbox container. Should be called after finishing work in a sandbox initialized with sandbox_initialize.', 'parameters': {'type': 'object', 'properties': {'container_id': {'type': 'string', 'pattern': '^[a-zA-Z0-9_.-]+$'}}, 'required': ['container_id'], 'additionalProperties': False}, 'strict': True}
node-code-sandbox
other
{'type': 'function', 'name': 'search_npm_packages', 'description': 'Search for npm packages by a search term and get their name, description, and a README snippet.', 'parameters': {'type': 'object', 'properties': {'qualifiers': {'type': 'object', 'description': 'Optional qualifiers to filter the search results. For example, { not: "insecure" } will exclude insecure packages, { author: "sindresorhus" } will only show packages by that author, { scope: "@vue" } will only show Vue.js scoped packages.', 'properties': {'author': {'type': 'string', 'description': 'Filter by package author name'}, 'boostExact': {'type': 'string', 'description': 'Boost exact matches for this term in search results'}, 'is': {'type': 'string', 'description': 'Include only packages matching this criteria (e.g., "unstable")'}, 'keywords': {'type': 'string', 'description': 'Filter by package keywords'}, 'maintainer': {'type': 'string', 'description': 'Filter by package maintainer name'}, 'not': {'type': 'string', 'description': 'Exclude packages matching this criteria (e.g., "insecure")'}, 'scope': {'type': 'string', 'description': 'Filter by npm scope (e.g., "@vue" for Vue.js packages)'}}, 'additionalProperties': False}, 'searchTerm': {'type': 'string', 'description': 'The term to search for in npm packages. Should contain all relevant context. Should ideally be text that might appear in the package name, description, or keywords. Use plus signs (+) to combine related terms (e.g., "react+components" for React component libraries). For filtering by author, maintainer, or scope, use the qualifiers field instead of including them in the search term. Examples: "express" for Express.js, "ui+components" for UI component packages, "testing+jest" for Jest testing utilities.', 'minLength': 1, 'pattern': '^\\S+$'}}, 'required': ['searchTerm'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmAlternatives', 'description': 'Find alternative packages with similar functionality', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to find alternatives for', 'items': {'type': 'string'}}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmChangelogAnalysis', 'description': 'Analyze changelog and release history of packages', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to analyze changelogs for', 'items': {'type': 'string'}}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmCompare', 'description': 'Compare multiple NPM packages based on various metrics', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to compare', 'items': {'type': 'string'}}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmDeprecated', 'description': 'Check if packages are deprecated', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to check for deprecation', 'items': {'type': 'string'}}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmDeps', 'description': 'Analyze dependencies and devDependencies of an NPM package', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to analyze dependencies for', 'items': {'type': 'string'}}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmLatest', 'description': 'Get the latest version and changelog of an NPM package', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to get latest versions for', 'items': {'type': 'string'}}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmLicenseCompatibility', 'description': 'Check license compatibility between multiple packages', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to check for license compatibility', 'items': {'type': 'string'}, 'minItems': 1}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmMaintainers', 'description': 'Get maintainers information for NPM packages', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to get maintainers for', 'items': {'type': 'string'}}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmMaintenance', 'description': 'Analyze package maintenance metrics', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to analyze', 'items': {'type': 'string'}}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmPackageReadme', 'description': 'Get the README content for NPM packages', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to get READMEs for', 'items': {'type': 'string'}}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmQuality', 'description': 'Analyze package quality metrics', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to analyze', 'items': {'type': 'string'}}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmRepoStats', 'description': 'Get repository statistics for NPM packages', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to get repository stats for', 'items': {'type': 'string'}}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmScore', 'description': 'Get consolidated package score based on quality, maintenance, and popularity metrics', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to get scores for', 'items': {'type': 'string'}}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmSearch', 'description': 'Search for NPM packages with optional limit', 'parameters': {'type': 'object', 'properties': {'limit': {'type': 'number', 'description': 'Maximum number of results to return (default: 10)', 'minimum': 1, 'maximum': 50}, 'query': {'type': 'string', 'description': 'Search query for packages'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmSize', 'description': 'Get package size information including dependencies and bundle size', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to get size information for', 'items': {'type': 'string'}}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmTrends', 'description': 'Get download trends and popularity metrics for packages', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to get trends for', 'items': {'type': 'string'}}, 'period': {'type': 'string', 'description': 'Time period for trends. Options: "last-week", "last-month", "last-year"', 'default': 'last-month', 'enum': ['last-week', 'last-month', 'last-year']}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmTypes', 'description': 'Check TypeScript types availability and version for a package', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to check types for', 'items': {'type': 'string'}}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmVersions', 'description': 'Get all available versions of an NPM package', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to get versions for', 'items': {'type': 'string'}}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
npm-sentinel
other
{'type': 'function', 'name': 'npmVulnerabilities', 'description': 'Check for known vulnerabilities in packages', 'parameters': {'type': 'object', 'properties': {'packages': {'type': 'array', 'description': 'List of package names to check for vulnerabilities', 'items': {'type': 'string'}}}, 'required': ['packages'], 'additionalProperties': False}, 'strict': True}
obsidian
other
{'type': 'function', 'name': 'obsidian_append_content', 'description': 'Append content to a new or existing file in the vault.', 'parameters': {'type': 'object', 'properties': {'content': {'type': 'string', 'description': 'Content to append to the file'}, 'filepath': {'type': 'string', 'description': 'Path to the file (relative to vault root)', 'format': 'path'}}, 'required': ['filepath', 'content'], 'additionalProperties': False}, 'strict': True}