qualifiedName
stringlengths
3
59
displayName
stringlengths
3
53
description
stringlengths
0
3.47k
createdAt
stringdate
2024-12-13 15:46:50
2025-05-05 20:05:11
useCount
int64
0
418k
homepage
stringlengths
30
86
remote
bool
2 classes
iconUrl
stringclasses
96 values
security
dict
tools
stringlengths
90
360k
@LaplaceMan/web3-assistant-mcp
Web3 Assistant
Interact with blockchain smart contracts seamlessly across multiple chains. Analyze contract ABIs, invoke methods, and manage wallet addresses securely. Enhance your decentralized applications with powerful contract interaction capabilities.
2025-04-12T10:39:06.048Z
0
https://smithery.ai/server/@LaplaceMan/web3-assistant-mcp
false
https://spjawbfpwezjfmic…e54d652a9b97.png
{ "scanPassed": true }
[{'name': 'analyze_contract_abi', 'description': 'Analyze the functions provided in the solidity contract.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['abi'], 'properties': {'abi': {'type': 'string', 'description': 'Solidity contract ABI JSON string.'}}, 'additionalProperties': False}}, {'name': 'call_contract', 'description': 'Call a function in the solidity contract.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['abi', 'networkName', 'contractAddress', 'functionName'], 'properties': {'abi': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'inputs', 'outputs', 'stateMutability', 'type'], 'properties': {'name': {'type': 'string', 'description': 'Function name in ABI.'}, 'type': {'type': 'string', 'const': 'function', 'description': "The type of the function, always 'function' for contract methods."}, 'inputs': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'type'], 'properties': {'name': {'type': 'string'}, 'type': {'type': 'string'}}, 'additionalProperties': False}, 'description': 'Function inputs.'}, 'outputs': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'type'], 'properties': {'name': {'type': 'string'}, 'type': {'type': 'string'}}, 'additionalProperties': False}, 'description': 'Function outputs.'}, 'stateMutability': {'enum': ['view', 'nonpayable', 'payable', 'pure'], 'type': 'string', 'description': 'Function state mutability.'}}, 'additionalProperties': False}, 'description': 'Contract function ABI part, only the relevant function.'}, 'args': {'type': 'array', 'items': {'type': ['string', 'number', 'boolean']}, 'description': 'Function arguments. Make sure no comments are included.'}, 'value': {'type': 'number', 'description': 'Transfer native token value when calling payable function. When native token decimal is 18, input 0.001 for 0.001 ETH (1000000000000000 wei). Be careful not to add additional code comments'}, 'networkName': {'enum': ['mainnet', 'sepolia', 'base', 'baseSepolia'], 'type': 'string', 'description': 'Blockchain network name.'}, 'functionName': {'type': 'string', 'description': 'Function name.'}, 'contractAddress': {'type': 'string', 'pattern': '^0x[a-fA-F0-9]{40}$', 'description': "Contract address, must start with '0x' and be 40 hex characters long."}}, 'additionalProperties': False}}, {'name': 'local_wallet_address', 'description': 'Get the local wallet evm address.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}]
@noahgsolomon/pumpfun-mcp-server
Pump.fun MCP Server
Enable your AI assistants to interact with the Pump.fun platform on Solana. Create, buy, and sell tokens seamlessly while managing your Solana accounts securely. Leverage the power of AI to enhance your token transactions and account management.
2025-03-14T23:57:01.114Z
0
https://smithery.ai/server/@noahgsolomon/pumpfun-mcp-server
false
null
{ "scanPassed": true }
[{'name': 'get-token-info', 'description': 'Get information about a Pump.fun token', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'tokenAddress': {'type': 'string', 'description': "The token's mint address"}}, 'additionalProperties': False}}, {'name': 'create-token', 'description': 'Create a new Pump.fun token', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name', 'symbol', 'description', 'initialBuyAmount'], 'properties': {'name': {'type': 'string', 'description': 'Token name'}, 'symbol': {'type': 'string', 'description': 'Token symbol'}, 'imageUrl': {'type': 'string', 'description': 'URL to token image (optional)'}, 'accountName': {'type': 'string', 'default': 'default', 'description': "Name of the account to use (will be created if it doesn't exist)"}, 'description': {'type': 'string', 'description': 'Token description'}, 'initialBuyAmount': {'type': 'number', 'minimum': 0.0001, 'description': 'Initial buy amount in SOL'}}, 'additionalProperties': False}}, {'name': 'buy-token', 'description': 'Buy a Pump.fun token', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'buyAmount'], 'properties': {'buyAmount': {'type': 'number', 'minimum': 0.0001, 'description': 'Amount to buy in SOL'}, 'accountName': {'type': 'string', 'default': 'default', 'description': 'Name of the account to use'}, 'tokenAddress': {'type': 'string', 'description': "The token's mint address"}, 'slippageBasisPoints': {'type': 'number', 'default': 100, 'description': 'Slippage tolerance in basis points (1% = 100)'}}, 'additionalProperties': False}}, {'name': 'sell-token', 'description': 'Sell a Pump.fun token', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'sellAmount'], 'properties': {'sellAmount': {'type': 'number', 'minimum': 0, 'description': 'Amount of tokens to sell (0 for all)'}, 'accountName': {'type': 'string', 'default': 'default', 'description': 'Name of the account to use'}, 'tokenAddress': {'type': 'string', 'description': "The token's mint address"}, 'slippageBasisPoints': {'type': 'number', 'default': 100, 'description': 'Slippage tolerance in basis points (1% = 100)'}}, 'additionalProperties': False}}, {'name': 'list-accounts', 'description': 'List all accounts in the keys folder', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-account-balance', 'description': 'Get the SOL and token balances for an account', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'accountName': {'type': 'string', 'default': 'default', 'description': 'Name of the account to check'}, 'tokenAddress': {'type': 'string', 'description': 'Optional token address to check balance for'}}, 'additionalProperties': False}}]
@buyitsydney/codingbaby-browser-mcp
CodingBaby Browser-Use MCP
CodingBaby Browser-Use MCP (Model Context Protocol) is a tool that bridges an AI assistant with the Chrome browser, enabling the AI assistant to directly control Chrome for web browsing, interaction, and data collection. It communicates with a Chrome extension via the WebSocket protocol to achieve precise browser control. Compared to traditional browser automation tools like Puppeteer or Playwright, CodingBaby Browser-Use MCP offers several advantages: 1. Higher Privileges: Running as a Chrome extension provides higher browser privileges. 2. Anti-Bot Evasion: Uses a real Chrome browser and user session, effectively bypassing many website anti-bot mechanisms. 3. Closer to Real User Behavior: Operations mimic real user interactions, reducing the likelihood of detection. 4. Session Persistence: Can maintain login states and cookies, facilitating access to authenticated pages. 5. Lightweight Deployment: Only requires installing the extension in the browser, eliminating the need for separate browser instances or WebDrivers.
2025-05-01T00:04:45.052Z
0
https://smithery.ai/server/@buyitsydney/codingbaby-browser-mcp
false
https://spjawbfpwezjfmic…95f60656d388.jpg
{ "scanPassed": true }
[{'name': 'navigate', 'description': 'Navigate to a URL', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['url'], 'properties': {'url': {'type': 'string', 'description': 'The URL to navigate to'}}, 'additionalProperties': False}}, {'name': 'click', 'description': 'Perform click on a web page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['coordinate'], 'properties': {'coordinate': {'type': 'string', 'description': 'Coordinates to click (x,y)'}}, 'additionalProperties': False}}, {'name': 'type', 'description': 'Type text into focused element', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['text'], 'properties': {'text': {'type': 'string', 'description': 'Text to type'}}, 'additionalProperties': False}}, {'name': 'press_key', 'description': 'Press a key on the keyboard', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['key'], 'properties': {'key': {'type': 'string', 'description': "Name of the key to press, such as 'ArrowLeft' or 'Enter'"}}, 'additionalProperties': False}}, {'name': 'close', 'description': 'Close the browser', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['purpose'], 'properties': {'purpose': {'type': 'string', 'description': 'give any string, workaround for no-parameter tools.'}}, 'additionalProperties': False}}, {'name': 'scroll', 'description': 'Scroll the page in a specified direction', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['direction'], 'properties': {'selector': {'type': 'string', 'description': 'CSS selector for the element to scroll (optional)'}, 'direction': {'type': 'string', 'description': 'Direction to scroll: up, down, left, or right'}}, 'additionalProperties': False}}, {'name': 'save_html', 'description': 'Save the current page HTML to a file', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'filename': {'type': 'string', 'description': 'Optional filename to save the HTML to'}}, 'additionalProperties': False}}, {'name': 'set_viewport', 'description': 'Set the viewport configuration of the browser', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['width', 'height'], 'properties': {'width': {'type': 'number', 'description': 'Width of the browser viewport'}, 'height': {'type': 'number', 'description': 'Height of the browser viewport'}}, 'additionalProperties': False}}, {'name': 'area_screenshot', 'description': 'Take a screenshot of a specific area of the current page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['topLeft', 'bottomRight'], 'properties': {'topLeft': {'type': 'string', 'description': 'Top-left coordinate (x,y) of the area to capture'}, 'bottomRight': {'type': 'string', 'description': 'Bottom-right coordinate (x,y) of the area to capture'}}, 'additionalProperties': False}}, {'name': 'get_saved_screenshots', 'description': 'Get a list of all saved screenshots', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['purpose'], 'properties': {'purpose': {'type': 'string', 'description': 'give any string, workaround for no-parameter tools.'}}, 'additionalProperties': False}}, {'name': 'wait', 'description': 'Wait for a specified number of seconds, with a screenshot of the current page state after waiting', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['seconds'], 'properties': {'seconds': {'type': 'number', 'description': 'Number of seconds to wait'}}, 'additionalProperties': False}}, {'name': 'tab_list', 'description': 'List browser tabs', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['purpose'], 'properties': {'purpose': {'type': 'string', 'description': 'give any string, workaround for no-parameter tools.'}}, 'additionalProperties': False}}, {'name': 'tab_new', 'description': 'Open a new tab', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'url': {'type': 'string', 'description': 'The URL to navigate to in the new tab. If not provided, the new tab will be blank.'}}, 'additionalProperties': False}}, {'name': 'tab_select', 'description': 'Select a tab by index', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['index'], 'properties': {'index': {'type': 'number', 'description': 'The index of the tab to select'}}, 'additionalProperties': False}}, {'name': 'tab_close', 'description': 'Close a tab', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'index': {'type': 'number', 'description': 'The index of the tab to close. Closes current tab if not provided.'}}, 'additionalProperties': False}}]
@jutalik/originforge-generate-nft-mcp
originforge-dNFT-Generator
Fetch and display NFT data from the Origin Forge API. Easily save SVG images and JSON metadata, while leveraging powerful tools to enhance your NFT viewing experience. give me chocolate! 0x00000000ae9bA88F1f29286CB6f652a74dA99770
2025-04-03T14:48:13.932Z
0
https://smithery.ai/server/@jutalik/originforge-generate-nft-mcp
false
null
{ "scanPassed": true }
[{'name': 'get-nft-data', 'description': 'Get basic NFT information', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-nft-image', 'description': 'Get NFT image data', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-nft-attributes', 'description': 'Get detailed NFT attributes', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-color-palette', 'description': 'Get NFT color palette', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-enhanced-nft-view', 'description': 'Get enhanced NFT view with formatted display', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'save-nft-files', 'description': 'Save NFT image and JSON data to files', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'outputDir': {'type': 'string', 'default': 'nft-output'}}, 'additionalProperties': False}}, {'name': 'get-random-nfts', 'description': 'Get multiple random NFTs', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'count': {'type': 'number', 'default': 3, 'maximum': 5, 'minimum': 1}}, 'additionalProperties': False}}]
@GodzillaDancer/keitaro-mcp
Keitaro TDS API Integration
Integrate seamlessly with the Keitaro TDS API to manage campaigns, streams, offers, and more. Streamline your marketing efforts by utilizing powerful tools to create, update, and analyze your campaigns directly from your workspace. Enhance your productivity with easy access to essential data and operations.
2025-04-08T10:13:35.045Z
0
https://smithery.ai/server/@GodzillaDancer/keitaro-mcp
false
https://spjawbfpwezjfmic…05b0f7309eaf.png
{ "scanPassed": true }
[{'name': 'list_campaigns', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination'}, 'limit': {'type': 'number', 'description': 'Maximum number of campaigns to return'}, 'search': {'type': 'string', 'description': 'Search term to filter campaigns'}}, 'additionalProperties': False}}, {'name': 'get_campaign', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'number', 'description': 'Campaign ID'}}, 'additionalProperties': False}}, {'name': 'create_campaign', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name', 'type'], 'properties': {'name': {'type': 'string', 'description': 'Campaign name'}, 'type': {'type': 'string', 'description': 'Campaign type'}, 'state': {'type': 'string', 'description': 'Campaign state'}, 'group_id': {'type': 'number', 'description': 'Group ID'}, 'cost_type': {'type': 'string', 'description': 'Cost type'}, 'cost_value': {'type': 'number', 'description': 'Cost value'}, 'traffic_source_id': {'type': 'number', 'description': 'Traffic source ID'}}, 'additionalProperties': False}}, {'name': 'update_campaign', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'number', 'description': 'Campaign ID'}, 'name': {'type': 'string', 'description': 'Campaign name'}, 'type': {'type': 'string', 'description': 'Campaign type'}, 'state': {'type': 'string', 'description': 'Campaign state'}, 'group_id': {'type': 'number', 'description': 'Group ID'}, 'cost_type': {'type': 'string', 'description': 'Cost type'}, 'cost_value': {'type': 'number', 'description': 'Cost value'}, 'traffic_source_id': {'type': 'number', 'description': 'Traffic source ID'}}, 'additionalProperties': False}}, {'name': 'delete_campaign', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'number', 'description': 'Campaign ID'}}, 'additionalProperties': False}}, {'name': 'list_traffic_sources', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination'}, 'limit': {'type': 'number', 'description': 'Maximum number of traffic sources to return'}}, 'additionalProperties': False}}, {'name': 'get_traffic_source', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'number', 'description': 'Traffic source ID'}}, 'additionalProperties': False}}, {'name': 'list_offers', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination'}, 'limit': {'type': 'number', 'description': 'Maximum number of offers to return'}, 'search': {'type': 'string', 'description': 'Search term to filter offers'}}, 'additionalProperties': False}}, {'name': 'get_offer', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'number', 'description': 'Offer ID'}}, 'additionalProperties': False}}, {'name': 'list_streams', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['campaign_id'], 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination'}, 'limit': {'type': 'number', 'description': 'Maximum number of streams to return'}, 'campaign_id': {'type': 'number', 'description': 'Campaign ID'}}, 'additionalProperties': False}}, {'name': 'get_stream', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['campaign_id', 'stream_id'], 'properties': {'stream_id': {'type': 'number', 'description': 'Stream ID'}, 'campaign_id': {'type': 'number', 'description': 'Campaign ID'}}, 'additionalProperties': False}}, {'name': 'get_report', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['from', 'to'], 'properties': {'to': {'type': 'string', 'description': 'End date (YYYY-MM-DD)'}, 'from': {'type': 'string', 'description': 'Start date (YYYY-MM-DD)'}, 'group': {'type': 'string', 'description': "Grouping parameter (e.g., 'campaign', 'offer', 'day')"}, 'filters': {'type': 'object', 'description': 'Filters as key-value pairs', 'additionalProperties': {}}}, 'additionalProperties': False}}, {'name': 'list_clicks', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'to': {'type': 'string', 'description': 'End date (YYYY-MM-DD)'}, 'from': {'type': 'string', 'description': 'Start date (YYYY-MM-DD)'}, 'page': {'type': 'number', 'description': 'Page number for pagination'}, 'limit': {'type': 'number', 'description': 'Maximum number of clicks to return'}, 'campaign_id': {'type': 'number', 'description': 'Filter by campaign ID'}}, 'additionalProperties': False}}, {'name': 'get_click', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'number', 'description': 'Click ID'}}, 'additionalProperties': False}}, {'name': 'list_conversions', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'to': {'type': 'string', 'description': 'End date (YYYY-MM-DD)'}, 'from': {'type': 'string', 'description': 'Start date (YYYY-MM-DD)'}, 'page': {'type': 'number', 'description': 'Page number for pagination'}, 'limit': {'type': 'number', 'description': 'Maximum number of conversions to return'}, 'campaign_id': {'type': 'number', 'description': 'Filter by campaign ID'}}, 'additionalProperties': False}}, {'name': 'get_conversion', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'number', 'description': 'Conversion ID'}}, 'additionalProperties': False}}, {'name': 'list_domains', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination'}, 'limit': {'type': 'number', 'description': 'Maximum number of domains to return'}}, 'additionalProperties': False}}, {'name': 'get_domain', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'number', 'description': 'Domain ID'}}, 'additionalProperties': False}}]
@calvernaz/alphavantage
Alphavantage MCP Server
Access real-time and historical stock market data effortlessly. Integrate stock market insights into your applications using the Alphavantage API with this MCP server. Get started quickly by configuring your API key and running the server to fetch market data.
2025-03-07T15:48:16.122Z
0
https://smithery.ai/server/@calvernaz/alphavantage
false
null
{ "scanPassed": true }
[{'name': 'stock_quote', 'description': 'Fetch a stock quote', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}}}}, {'name': 'time_series_intraday', 'description': 'Fetch a time series intraday', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval'], 'properties': {'symbol': {'type': 'string'}, 'monthly': {'type': 'string'}, 'adjusted': {'type': 'boolean'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'outputsize': {'type': 'string'}}}}, {'name': 'time_series_daily', 'description': 'Fetch a time series daily', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'outputsize': {'type': 'string'}}}}, {'name': 'time_series_daily_adjusted', 'description': 'Fetch a time series daily adjusted', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'outputsize': {'type': 'string'}}}}, {'name': 'time_series_weekly', 'description': 'Fetch a time series weekly', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}}}}, {'name': 'time_series_weekly_adjusted', 'description': 'Fetch a time series weekly adjusted', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}}}}, {'name': 'time_series_monthly', 'description': 'Fetch a time series monthly', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}}}}, {'name': 'time_series_monthly_adjusted', 'description': 'Fetch a time series monthly adjusted', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}}}}, {'name': 'realtime_bulk_quotes', 'description': 'Fetch real time bulk quotes', 'inputSchema': {'type': 'object', 'required': ['symbols'], 'properties': {'symbols': {'type': 'array'}}}}, {'name': 'symbol_search', 'description': 'Search endpoint', 'inputSchema': {'type': 'object', 'required': ['keywords'], 'properties': {'datatype': {'type': 'string'}, 'keywords': {'type': 'string'}}}}, {'name': 'market_status', 'description': 'Fetch market status', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'realtime_options', 'description': 'Fetch realtime options', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}, 'contract': {'type': 'string'}, 'datatype': {'type': 'string'}}}}, {'name': 'historical_options', 'description': 'Fetch historical options', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}, 'contract': {'type': 'string'}, 'datatype': {'type': 'string'}}}}, {'name': 'news_sentiment', 'description': 'Fetch news sentiment', 'inputSchema': {'type': 'object', 'required': ['tickers'], 'properties': {'sort': {'type': 'string'}, 'limit': {'type': 'number'}, 'topics': {'type': 'string'}, 'tickers': {'type': 'array'}, 'time_to': {'type': 'string'}, 'datatype': {'type': 'string'}, 'time_from': {'type': 'string'}}}}, {'name': 'top_gainers_losers', 'description': 'Fetch top gainers and losers', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'insider_transactions', 'description': 'Fetch insider transactions', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}}}}, {'name': 'analytics_fixed_window', 'description': 'Fetch analytics fixed window', 'inputSchema': {'type': 'object', 'required': ['symbols', 'series_range', 'interval', 'calculations'], 'properties': {'ohlc': {'type': 'string'}, 'symbols': {'type': 'array'}, 'interval': {'type': 'string'}, 'calculations': {'type': 'array'}, 'series_range': {'type': 'string'}}}}, {'name': 'analytics_sliding_window', 'description': 'Fetch analytics sliding window', 'inputSchema': {'type': 'object', 'required': ['symbols', 'series_range', 'interval', 'calculations', 'window_size'], 'properties': {'ohlc': {'type': 'string'}, 'symbols': {'type': 'array'}, 'interval': {'type': 'string'}, 'window_size': {'type': 'number'}, 'calculations': {'type': 'array'}, 'series_range': {'type': 'string'}}}}, {'name': 'company_overview', 'description': 'Fetch company overview', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}}}}, {'name': 'etf_profile', 'description': 'Fetch ETF profile', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}}}}, {'name': 'company_dividends', 'description': 'Fetch company dividends', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}}}}, {'name': 'company_splits', 'description': 'Fetch company splits', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}}}}, {'name': 'income_statement', 'description': 'Fetch company income statement', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}}}}, {'name': 'balance_sheet', 'description': 'Fetch company balance sheet', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}}}}, {'name': 'cash_flow', 'description': 'Fetch company cash flow', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string'}}}}, {'name': 'listing_status', 'description': 'Fetch listing status', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'date': {'type': 'string'}, 'state': {'type': 'string'}, 'symbol': {'type': 'string'}}}}, {'name': 'earnings_calendar', 'description': 'Fetch company earnings calendar', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'symbol': {'type': 'string'}, 'horizon': {'type': 'string'}}}}, {'name': 'ipo_calendar', 'description': 'Fetch IPO calendar', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'exchange_rate', 'description': 'Fetch exchange rate', 'inputSchema': {'type': 'object', 'required': ['from_currency', 'to_currency'], 'properties': {'to_currency': {'type': 'string'}, 'from_currency': {'type': 'string'}}}}, {'name': 'fx_intraday', 'description': 'Fetch FX intraday', 'inputSchema': {'type': 'object', 'required': ['from_symbol', 'to_symbol', 'interval'], 'properties': {'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'to_symbol': {'type': 'string'}, 'outputsize': {'type': 'string'}, 'from_symbol': {'type': 'string'}}}}, {'name': 'fx_daily', 'description': 'Fetch FX daily', 'inputSchema': {'type': 'object', 'required': ['from_symbol', 'to_symbol'], 'properties': {'datatype': {'type': 'string'}, 'to_symbol': {'type': 'string'}, 'outputsize': {'type': 'string'}, 'from_symbol': {'type': 'string'}}}}, {'name': 'fx_weekly', 'description': 'Fetch FX weekly', 'inputSchema': {'type': 'object', 'required': ['from_symbol', 'to_symbol'], 'properties': {'datatype': {'type': 'string'}, 'to_symbol': {'type': 'string'}, 'from_symbol': {'type': 'string'}}}}, {'name': 'fx_monthly', 'description': 'Fetch FX monthly', 'inputSchema': {'type': 'object', 'required': ['from_symbol', 'to_symbol'], 'properties': {'datatype': {'type': 'string'}, 'to_symbol': {'type': 'string'}, 'from_symbol': {'type': 'string'}}}}, {'name': 'crypto_intraday', 'description': 'Fetch crypto intraday', 'inputSchema': {'type': 'object', 'required': ['symbol', 'market', 'interval'], 'properties': {'market': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'outputsize': {'type': 'string'}}}}, {'name': 'digital_currency_daily', 'description': 'Fetch digital currency daily', 'inputSchema': {'type': 'object', 'required': ['symbol', 'market'], 'properties': {'market': {'type': 'string'}, 'symbol': {'type': 'string'}}}}, {'name': 'digital_currency_weekly', 'description': 'Fetch digital currency weekly', 'inputSchema': {'type': 'object', 'required': ['symbol', 'market'], 'properties': {'market': {'type': 'string'}, 'symbol': {'type': 'string'}}}}, {'name': 'digital_currency_monthly', 'description': 'Fetch digital currency monthly', 'inputSchema': {'type': 'object', 'required': ['symbol', 'market'], 'properties': {'market': {'type': 'string'}, 'symbol': {'type': 'string'}}}}, {'name': 'wti_crude_oil', 'description': 'Fetch WTI crude oil', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'brent_crude_oil', 'description': 'Fetch Brent crude oil', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'natural_gas', 'description': 'Fetch natural gas', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'copper', 'description': 'Fetch copper', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'aluminum', 'description': 'Fetch aluminum', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'wheat', 'description': 'Fetch wheat', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'corn', 'description': 'Fetch corn', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'cotton', 'description': 'Fetch cotton', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'sugar', 'description': 'Fetch sugar', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'coffee', 'description': 'Fetch coffee', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'all_commodities', 'description': 'Fetch all commodities', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'real_gdp', 'description': 'Fetch real GDP', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'real_gdp_per_capita', 'description': 'Fetch real GDP per capita', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}}}}, {'name': 'treasury_yield', 'description': 'Fetch treasury yield', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'maturity': {'type': 'string'}}}}, {'name': 'federal_funds_rate', 'description': 'Fetch federal funds rate', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'cpi', 'description': 'Fetch consumer price index', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'inflation', 'description': 'Fetch inflation', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}}}}, {'name': 'retail_sales', 'description': 'Fetch retail sales', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}}}}, {'name': 'durables', 'description': 'Fetch durables', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}}}}, {'name': 'unemployment', 'description': 'Fetch unemployment', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}}}}, {'name': 'nonfarm_payroll', 'description': 'Fetch nonfarm payroll', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'datatype': {'type': 'string'}}}}, {'name': 'sma', 'description': 'Fetch simple moving average', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'ema', 'description': 'Fetch exponential moving average', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'wma', 'description': 'Fetch weighted moving average', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'dema', 'description': 'Fetch double exponential moving average', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'trima', 'description': 'Fetch triangular moving average', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'kama', 'description': 'Fetch Kaufman adaptive moving average', 'inputSchema': {'type': 'object', 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'mama', 'description': 'Fetch MESA adaptive moving average', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'series_type', 'fastlimit', 'slowlimit'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'fastlimit': {'type': 'number'}, 'slowlimit': {'type': 'number'}, 'series_type': {'type': 'string'}}}}, {'name': 'vwap', 'description': 'Fetch volume weighted average price', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 't3', 'description': 'Fetch triple exponential moving average', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'macd', 'description': 'Fetch moving average convergence divergence', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'fastperiod': {'type': 'number'}, 'slowperiod': {'type': 'number'}, 'series_type': {'type': 'string'}, 'signalperiod': {'type': 'number'}}}}, {'name': 'macdext', 'description': 'Fetch moving average convergence divergence next', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'fastmatype': {'type': 'number'}, 'fastperiod': {'type': 'number'}, 'slowmatype': {'type': 'number'}, 'slowperiod': {'type': 'number'}, 'series_type': {'type': 'string'}, 'signalmatype': {'type': 'number'}, 'signalperiod': {'type': 'number'}}}}, {'name': 'stoch', 'description': 'Fetch stochastic oscillator', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'fastkperiod': {'type': 'number'}, 'slowdmatype': {'type': 'string'}, 'slowdperiod': {'type': 'number'}, 'slowkmatype': {'type': 'string'}, 'slowkperiod': {'type': 'number'}}}}, {'name': 'stochf', 'description': 'Fetch stochastic oscillator fast', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'fastdmatype': {'type': 'string'}, 'fastdperiod': {'type': 'number'}, 'fastkperiod': {'type': 'number'}}}}, {'name': 'rsi', 'description': 'Fetch relative strength index', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'stochrsi', 'description': 'Fetch stochastic relative strength index', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'fastdmatype': {'type': 'string'}, 'fastdperiod': {'type': 'number'}, 'fastkperiod': {'type': 'number'}, 'series_type': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'willr', 'description': 'Fetch williams percent range', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'adx', 'description': 'Fetch average directional movement index', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'adxr', 'description': 'Fetch average directional movement index rating', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'apo', 'description': 'Fetch absolute price oscillator', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'series_type', 'fastperiod', 'slowperiod'], 'properties': {'month': {'type': 'string'}, 'matype': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'fastperiod': {'type': 'number'}, 'slowperiod': {'type': 'number'}, 'series_type': {'type': 'string'}}}}, {'name': 'ppo', 'description': 'Fetch percentage price oscillator', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'series_type', 'fastperiod', 'slowperiod'], 'properties': {'month': {'type': 'string'}, 'matype': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'fastperiod': {'type': 'number'}, 'slowperiod': {'type': 'number'}, 'series_type': {'type': 'string'}}}}, {'name': 'mom', 'description': 'Fetch momentum', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'bop', 'description': 'Fetch balance of power', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'cci', 'description': 'Fetch commodity channel index', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'cmo', 'description': 'Fetch chande momentum oscillator', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'roc', 'description': 'Fetch rate of change', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'rocr', 'description': 'Fetch rate of change ratio', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'aroon', 'description': 'Fetch aroon', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'aroonosc', 'description': 'Fetch aroon oscillator', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'mfi', 'description': 'Fetch money flow index', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'trix', 'description': 'Fetch triple exponential average', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'ultosc', 'description': 'Fetch ultimate oscillator', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'timeperiod1', 'timeperiod2', 'timeperiod3'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'timeperiod1': {'type': 'number'}, 'timeperiod2': {'type': 'number'}, 'timeperiod3': {'type': 'number'}}}}, {'name': 'dx', 'description': 'Fetch directional movement index', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'minus_di', 'description': 'Fetch minus directional indicator', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'plus_di', 'description': 'Fetch plus directional indicator', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'minus_dm', 'description': 'Fetch minus directional movement', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'plus_dm', 'description': 'Fetch plus directional movement', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'bbands', 'description': 'Fetch bollinger bands', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period', 'series_type', 'nbdevup', 'nbdevdn'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'nbdevdn': {'type': 'number'}, 'nbdevup': {'type': 'number'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'midpoint', 'description': 'Fetch midpoint', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'midprice', 'description': 'Fetch midprice', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'sar', 'description': 'Fetch parabolic sar', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'maximum': {'type': 'number'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'acceleration': {'type': 'number'}}}}, {'name': 'trange', 'description': 'Fetch true range', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'atr', 'description': 'Fetch average true range', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'natr', 'description': 'Fetch normalized average true range', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'time_period'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'time_period': {'type': 'number'}}}}, {'name': 'ad', 'description': 'Fetch accumulation/distribution line', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'adosc', 'description': 'Fetch accumulation/distribution oscillator', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'fastperiod', 'slowperiod'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'fastperiod': {'type': 'number'}, 'slowperiod': {'type': 'number'}}}}, {'name': 'obv', 'description': 'Fetch on balance volume', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'ht_trendline', 'description': 'Fetch hilbert transform - trendline', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}}}}, {'name': 'ht_sine', 'description': 'Fetch hilbert transform - sine wave', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval', 'series_type'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}}}}, {'name': 'ht_trendmode', 'description': 'Fetch hilbert transform - trend mode', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'ht_dcperiod', 'description': 'Fetch hilbert transform - dominant cycle period', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}, 'series_type': {'type': 'string'}}}}, {'name': 'ht_dcphase', 'description': 'Fetch hilbert transform - dominant cycle phase', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}, {'name': 'ht_phasor', 'description': 'Fetch hilbert transform - phasor components', 'inputSchema': {'type': 'object', 'required': ['symbol', 'interval'], 'properties': {'month': {'type': 'string'}, 'symbol': {'type': 'string'}, 'datatype': {'type': 'string'}, 'interval': {'type': 'string'}}}}]
@leogodlike/reference-servers
Reference Servers
Showcase the versatility of Large Language Models by providing secure, controlled access to various tools and data sources. Leverage a collection of reference implementations to enhance your applications with powerful integrations. Start building your own MCP servers with ease using our comprehensive resources and community support.
2025-03-17T18:12:48.774Z
0
https://smithery.ai/server/@leogodlike/reference-servers
false
null
{ "scanPassed": true }
[{'name': 'echo', 'description': 'Echoes back the input', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['message'], 'properties': {'message': {'type': 'string', 'description': 'Message to echo'}}, 'additionalProperties': False}}, {'name': 'add', 'description': 'Adds two numbers', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['a', 'b'], 'properties': {'a': {'type': 'number', 'description': 'First number'}, 'b': {'type': 'number', 'description': 'Second number'}}, 'additionalProperties': False}}, {'name': 'printEnv', 'description': 'Prints all environment variables, helpful for debugging MCP server configuration', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'longRunningOperation', 'description': 'Demonstrates a long running operation with progress updates', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'steps': {'type': 'number', 'default': 5, 'description': 'Number of steps in the operation'}, 'duration': {'type': 'number', 'default': 10, 'description': 'Duration of the operation in seconds'}}, 'additionalProperties': False}}, {'name': 'sampleLLM', 'description': "Samples from an LLM using MCP's sampling feature", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['prompt'], 'properties': {'prompt': {'type': 'string', 'description': 'The prompt to send to the LLM'}, 'maxTokens': {'type': 'number', 'default': 100, 'description': 'Maximum number of tokens to generate'}}, 'additionalProperties': False}}, {'name': 'getTinyImage', 'description': 'Returns the MCP_TINY_IMAGE', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}]
@qianphhh/stata-mcp-test
Stata Regression Assistant
Enable LLMs to assist with regression analysis using Stata seamlessly. Automate and simplify your statistical workflows by integrating Stata commands with large language models. Enhance productivity in data analysis with easy-to-use LLM-powered Stata interactions.
2025-04-26T14:48:25.073Z
0
https://smithery.ai/server/@qianphhh/stata-mcp-test
false
null
null
[{'name': 'read_log', 'description': '\n Read the log file and return its content.\n\n Args:\n log_path (str): The path to the log file.\n\n Returns:\n str: The content of the log file.\n ', 'inputSchema': {'type': 'object', 'title': 'read_logArguments', 'required': ['log_path'], 'properties': {'log_path': {'type': 'string', 'title': 'Log Path'}}}}, {'name': 'get_data_info', 'description': 'Get descriptive statistics for the data file', 'inputSchema': {'type': 'object', 'title': 'get_data_infoArguments', 'required': ['data_path'], 'properties': {'encoding': {'type': 'string', 'title': 'Encoding', 'default': 'utf-8'}, 'data_path': {'type': 'string', 'title': 'Data Path'}, 'vars_list': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Vars List', 'default': None}}}}, {'name': 'results_doc_path', 'description': 'Storage path for Stata `outreg2` and other command return files (for convenient result management)', 'inputSchema': {'type': 'object', 'title': 'results_doc_pathArguments', 'properties': {}}}, {'name': 'write_dofile', 'description': 'write the stata-code to dofile', 'inputSchema': {'type': 'object', 'title': 'write_dofileArguments', 'required': ['content'], 'properties': {'content': {'type': 'string', 'title': 'Content'}}}}, {'name': 'append_dofile', 'description': 'append stata-code to an existing dofile or create a new one', 'inputSchema': {'type': 'object', 'title': 'append_dofileArguments', 'required': ['original_dofile_path', 'content'], 'properties': {'content': {'type': 'string', 'title': 'Content'}, 'original_dofile_path': {'type': 'string', 'title': 'Original Dofile Path'}}}}, {'name': 'stata_do', 'description': 'Run a stata-code via Stata', 'inputSchema': {'type': 'object', 'title': 'stata_doArguments', 'required': ['dofile_path'], 'properties': {'dofile_path': {'type': 'string', 'title': 'Dofile Path'}}}}]
@Synohara/supercollider-mcp
SuperCollider Synth Executor
Execute SuperCollider synths seamlessly using the SuperCollider programming language through an MCP server interface. Integrate audio synthesis capabilities into your LLM applications on macOS with Apple Silicon. Simplify sound generation workflows by leveraging supercolliderjs within the MCP framework.
2025-04-15T08:18:28.589Z
0
https://smithery.ai/server/@Synohara/supercollider-mcp
false
null
{ "scanPassed": true }
[{'name': 'synth-execute', 'description': 'SynthDefのコードを生成し、そのコードを実行して音を出します。', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['synth'], 'properties': {'synth': {'type': 'object', 'required': ['name', 'code'], 'properties': {'code': {'type': 'string', 'description': 'シンセのコード'}, 'name': {'type': 'string', 'description': 'シンセの名前'}}, 'description': '再生するシンセの情報', 'additionalProperties': False}, 'duration': {'type': 'number', 'description': '再生時間(ミリ秒)。デフォルトは5000(5秒)'}}, 'additionalProperties': False}}, {'name': 'multi-synth-execute', 'description': '複数のSynthDefを同時に実行します。', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['synths'], 'properties': {'synths': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'code'], 'properties': {'code': {'type': 'string', 'description': 'シンセのコード'}, 'name': {'type': 'string', 'description': 'シンセの名前'}}, 'additionalProperties': False}, 'description': '再生するシンセのリスト'}, 'duration': {'type': 'number', 'description': '再生時間(ミリ秒)。デフォルトは10000(10秒)'}}, 'additionalProperties': False}}]
@lucyor/test-mcp-server
Test MCP Service
Provide a simple and effective way to implement the Model Context Protocol. Easily integrate your applications with external data and tools, enhancing their capabilities. Start building your own MCP server with this example implementation.
2025-03-08T07:00:24.197Z
0
https://smithery.ai/server/@lucyor/test-mcp-server
false
null
{ "scanPassed": true }
[{'name': 'search-cat-message', 'description': '搜索猫咪相关的资料', 'inputSchema': {'type': 'object', 'required': ['catType'], 'properties': {'catType': {'type': 'string', 'description': '猫咪品种或相关关键词'}}}}]
@8bitsats/web3mcp
Web3 MCP
Bridge AI and blockchain seamlessly. Empower your AI assistants to perform on-chain operations securely and efficiently, unlocking the full potential of decentralized finance and token management.
2025-04-07T20:56:56.633Z
0
https://smithery.ai/server/@8bitsats/web3mcp
false
null
{ "scanPassed": true }
[{'name': 'get-token-info', 'description': 'Get information about a Pump.fun token', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'tokenAddress': {'type': 'string', 'description': "The token's mint address"}}, 'additionalProperties': False}}, {'name': 'buy-token', 'description': 'Buy a Pump.fun token with SOL', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'buyAmount'], 'properties': {'buyAmount': {'type': 'number', 'description': 'Amount of SOL to spend'}, 'accountName': {'type': 'string', 'description': "Name of the account to use (default: 'default')"}, 'tokenAddress': {'type': 'string', 'description': "The token's mint address"}, 'slippageBasisPoints': {'type': 'number', 'description': 'Slippage tolerance in basis points (0.01%). Default: 100 (1%)'}}, 'additionalProperties': False}}, {'name': 'sell-token', 'description': 'Sell a Pump.fun token for SOL', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress', 'sellAmount'], 'properties': {'sellAmount': {'type': 'number', 'description': 'Amount of tokens to sell'}, 'accountName': {'type': 'string', 'description': "Name of the account to use (default: 'default')"}, 'tokenAddress': {'type': 'string', 'description': "The token's mint address"}, 'slippageBasisPoints': {'type': 'number', 'description': 'Slippage tolerance in basis points (0.01%). Default: 100 (1%)'}}, 'additionalProperties': False}}, {'name': 'list-accounts', 'description': 'List all accounts in the keys folder', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-token-balance', 'description': 'Get the balance of a token for an account', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'accountName': {'type': 'string', 'description': "Name of the account to use (default: 'default')"}, 'tokenAddress': {'type': 'string', 'description': "The token's mint address"}}, 'additionalProperties': False}}, {'name': 'create-token', 'description': 'Create a new Pump.fun token', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name', 'symbol', 'description', 'initialBuyAmount'], 'properties': {'name': {'type': 'string', 'description': 'The name of the token'}, 'symbol': {'type': 'string', 'description': 'The symbol of the token'}, 'imageUrl': {'type': 'string', 'description': "URL to the token's image"}, 'accountName': {'type': 'string', 'description': "Name of the account to use (default: 'default')"}, 'description': {'type': 'string', 'description': 'Description of the token'}, 'initialBuyAmount': {'type': 'number', 'description': 'Initial amount of SOL to buy'}}, 'additionalProperties': False}}, {'name': 'get-token-market-data', 'description': 'Get detailed market data for a token using Solana Tracker API', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'tokenAddress': {'type': 'string', 'description': "The token's mint address"}}, 'additionalProperties': False}}, {'name': 'get-trending-tokens', 'description': 'Get trending tokens on Solana using Solana Tracker API', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'limit': {'type': 'number', 'description': 'Number of tokens to return (max 100)'}, 'timeframe': {'type': 'string', 'description': 'Timeframe for trending calculation (1h, 6h, 24h, 7d)'}}, 'additionalProperties': False}}, {'name': 'get-token-price-history', 'description': 'Get price history for a token using Solana Tracker API', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'limit': {'type': 'number', 'description': 'Number of data points to return'}, 'timeframe': {'type': 'string', 'description': 'Timeframe (1h, 6h, 24h, 7d, 30d, 90d, all)'}, 'tokenAddress': {'type': 'string', 'description': "The token's mint address"}}, 'additionalProperties': False}}, {'name': 'get-wallet-portfolio', 'description': 'Get wallet token holdings and portfolio value using Solana Tracker API', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['walletAddress'], 'properties': {'walletAddress': {'type': 'string', 'description': 'The wallet address to analyze'}}, 'additionalProperties': False}}, {'name': 'get-token-holders', 'description': 'Get token holders information using Solana Tracker API', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'tokenAddress': {'type': 'string', 'description': "The token's mint address"}}, 'additionalProperties': False}}, {'name': 'get-token-trades', 'description': 'Get token trades history using Solana Tracker API', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'limit': {'type': 'number', 'description': 'Number of trades to return'}, 'cursor': {'type': 'string', 'description': 'Cursor for pagination'}, 'tokenAddress': {'type': 'string', 'description': "The token's mint address"}}, 'additionalProperties': False}}, {'name': 'get-token-stats', 'description': 'Get token market statistics using Solana Tracker API', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['tokenAddress'], 'properties': {'tokenAddress': {'type': 'string', 'description': "The token's mint address"}}, 'additionalProperties': False}}]
@QAInsights/jmeter-mcp-server
Apache JMeter Test Execution Server
Execute JMeter tests seamlessly through MCP-compatible clients. Validate your test files and capture execution output effortlessly, whether in GUI or non-GUI mode. Enhance your testing workflow with this powerful integration.
2025-03-28T22:15:59.830Z
0
https://smithery.ai/server/@QAInsights/jmeter-mcp-server
false
null
{ "scanPassed": true }
[{'name': 'execute_jmeter_test', 'description': 'Execute a JMeter test.\n\n Args:\n test_file: Path to the JMeter test file (.jmx)\n gui_mode: Whether to run in GUI mode (default: False)\n ', 'inputSchema': {'type': 'object', 'title': 'execute_jmeter_testArguments', 'required': ['test_file'], 'properties': {'gui_mode': {'type': 'boolean', 'title': 'Gui Mode', 'default': False}, 'test_file': {'type': 'string', 'title': 'Test File'}}}}, {'name': 'execute_jmeter_test_non_gui', 'description': 'Execute a JMeter test in non-GUI mode.\n\n Args:\n test_file: Path to the JMeter test file (.jmx)\n ', 'inputSchema': {'type': 'object', 'title': 'execute_jmeter_test_non_guiArguments', 'required': ['test_file'], 'properties': {'test_file': {'type': 'string', 'title': 'Test File'}}}}]
@ai-zerolab/mcp-toolbox
Toolbox for LLM Enhancement
Enhance your LLM capabilities by integrating with external services and APIs. Execute commands, interact with Figma files, and extend functionality seamlessly. Leverage a comprehensive toolkit designed for developers to maximize the potential of LLMs.
2025-03-04T03:03:04.161Z
0
https://smithery.ai/server/@ai-zerolab/mcp-toolbox
false
null
{ "scanPassed": true }
[{'name': 'execute_command', 'description': 'Execute a command line instruction. Args: command (required, The command to execute as a list of strings), timeout_seconds (optional, Maximum execution time in seconds), working_dir (optional, Directory to execute the command in)', 'inputSchema': {'type': 'object', 'title': 'execute_commandArguments', 'required': ['command'], 'properties': {'command': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Command'}, 'working_dir': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Working Dir', 'default': None}, 'timeout_seconds': {'type': 'integer', 'title': 'Timeout Seconds', 'default': 30}}}}, {'name': 'figma_get_file', 'description': 'Get a Figma file by key. Args: fileKey (required, The key of the file to get), version (optional, A specific version ID to get), depth (optional, Depth of nodes to return 1-4), branch_data (optional, Include branch data if true)', 'inputSchema': {'type': 'object', 'title': 'figma_get_fileArguments', 'required': ['fileKey'], 'properties': {'depth': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Depth', 'default': None}, 'fileKey': {'type': 'string', 'title': 'Filekey'}, 'version': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Version', 'default': None}, 'branch_data': {'anyOf': [{'type': 'boolean'}, {'type': 'null'}], 'title': 'Branch Data', 'default': None}}}}, {'name': 'figma_get_file_nodes', 'description': 'Get specific nodes from a Figma file. Args: fileKey (required, The key of the file to get nodes from), node_ids (required, Array of node IDs to get), depth (optional, Depth of nodes to return 1-4), version (optional, A specific version ID to get)', 'inputSchema': {'type': 'object', 'title': 'figma_get_file_nodesArguments', 'required': ['fileKey', 'node_ids'], 'properties': {'depth': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Depth', 'default': None}, 'fileKey': {'type': 'string', 'title': 'Filekey'}, 'version': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Version', 'default': None}, 'node_ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Node Ids'}}}}, {'name': 'figma_get_image', 'description': 'Get images for nodes in a Figma file. Args: fileKey (required, The key of the file to get images from), ids (required, Array of node IDs to render), scale (optional, Scale factor to render at 0.01-4), format_type (optional, Image format jpg/png/svg/pdf), svg_include_id (optional, Include IDs in SVG output), svg_simplify_stroke (optional, Simplify strokes in SVG output), use_absolute_bounds (optional, Use absolute bounds)', 'inputSchema': {'type': 'object', 'title': 'figma_get_imageArguments', 'required': ['fileKey', 'ids'], 'properties': {'ids': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Ids'}, 'scale': {'anyOf': [{'type': 'number'}, {'type': 'null'}], 'title': 'Scale', 'default': None}, 'fileKey': {'type': 'string', 'title': 'Filekey'}, 'format_type': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Format Type', 'default': None}, 'svg_include_id': {'anyOf': [{'type': 'boolean'}, {'type': 'null'}], 'title': 'Svg Include Id', 'default': None}, 'svg_simplify_stroke': {'anyOf': [{'type': 'boolean'}, {'type': 'null'}], 'title': 'Svg Simplify Stroke', 'default': None}, 'use_absolute_bounds': {'anyOf': [{'type': 'boolean'}, {'type': 'null'}], 'title': 'Use Absolute Bounds', 'default': None}}}}, {'name': 'figma_get_image_fills', 'description': 'Get URLs for images used in a Figma file. Args: fileKey (required, The key of the file to get image fills from)', 'inputSchema': {'type': 'object', 'title': 'figma_get_image_fillsArguments', 'required': ['fileKey'], 'properties': {'fileKey': {'type': 'string', 'title': 'Filekey'}}}}, {'name': 'figma_get_comments', 'description': 'Get comments on a Figma file. Args: fileKey (required, The key of the file to get comments from)', 'inputSchema': {'type': 'object', 'title': 'figma_get_commentsArguments', 'required': ['fileKey'], 'properties': {'fileKey': {'type': 'string', 'title': 'Filekey'}}}}, {'name': 'figma_post_comment', 'description': 'Post a comment on a Figma file. Args: fileKey (required, The key of the file to comment on), message (required, Comment message text), client_meta (optional, Position of the comment x/y/node_id/node_offset), comment_id (optional, ID of comment to reply to)', 'inputSchema': {'type': 'object', 'title': 'figma_post_commentArguments', 'required': ['fileKey', 'message'], 'properties': {'fileKey': {'type': 'string', 'title': 'Filekey'}, 'message': {'type': 'string', 'title': 'Message'}, 'comment_id': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Comment Id', 'default': None}, 'client_meta': {'anyOf': [{'type': 'object'}, {'type': 'null'}], 'title': 'Client Meta', 'default': None}}}}, {'name': 'figma_delete_comment', 'description': 'Delete a comment from a Figma file. Args: fileKey (required, The key of the file to delete a comment from), comment_id (required, ID of the comment to delete)', 'inputSchema': {'type': 'object', 'title': 'figma_delete_commentArguments', 'required': ['fileKey', 'comment_id'], 'properties': {'fileKey': {'type': 'string', 'title': 'Filekey'}, 'comment_id': {'type': 'string', 'title': 'Comment Id'}}}}, {'name': 'figma_get_team_projects', 'description': 'Get projects for a team. Args: team_id (required, The team ID), page_size (optional, Number of items per page), cursor (optional, Cursor for pagination)', 'inputSchema': {'type': 'object', 'title': 'figma_get_team_projectsArguments', 'required': ['team_id'], 'properties': {'cursor': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Cursor', 'default': None}, 'team_id': {'type': 'string', 'title': 'Team Id'}, 'page_size': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Page Size', 'default': None}}}}, {'name': 'figma_get_project_files', 'description': 'Get files for a project. Args: project_id (required, The project ID), page_size (optional, Number of items per page), cursor (optional, Cursor for pagination), branch_data (optional, Include branch data if true)', 'inputSchema': {'type': 'object', 'title': 'figma_get_project_filesArguments', 'required': ['project_id'], 'properties': {'cursor': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Cursor', 'default': None}, 'page_size': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Page Size', 'default': None}, 'project_id': {'type': 'string', 'title': 'Project Id'}, 'branch_data': {'anyOf': [{'type': 'boolean'}, {'type': 'null'}], 'title': 'Branch Data', 'default': None}}}}, {'name': 'figma_get_team_components', 'description': 'Get components for a team. Args: team_id (required, The team ID), page_size (optional, Number of items per page), cursor (optional, Cursor for pagination)', 'inputSchema': {'type': 'object', 'title': 'figma_get_team_componentsArguments', 'required': ['team_id'], 'properties': {'cursor': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Cursor', 'default': None}, 'team_id': {'type': 'string', 'title': 'Team Id'}, 'page_size': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Page Size', 'default': None}}}}, {'name': 'figma_get_file_components', 'description': 'Get components from a file. Args: fileKey (required, The key of the file to get components from)', 'inputSchema': {'type': 'object', 'title': 'figma_get_file_componentsArguments', 'required': ['fileKey'], 'properties': {'fileKey': {'type': 'string', 'title': 'Filekey'}}}}, {'name': 'figma_get_component', 'description': 'Get a component by key. Args: key (required, The component key)', 'inputSchema': {'type': 'object', 'title': 'figma_get_componentArguments', 'required': ['key'], 'properties': {'key': {'type': 'string', 'title': 'Key'}}}}, {'name': 'figma_get_team_component_sets', 'description': 'Get component sets for a team. Args: team_id (required, The team ID), page_size (optional, Number of items per page), cursor (optional, Cursor for pagination)', 'inputSchema': {'type': 'object', 'title': 'figma_get_team_component_setsArguments', 'required': ['team_id'], 'properties': {'cursor': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Cursor', 'default': None}, 'team_id': {'type': 'string', 'title': 'Team Id'}, 'page_size': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Page Size', 'default': None}}}}, {'name': 'figma_get_team_styles', 'description': 'Get styles for a team. Args: team_id (required, The team ID), page_size (optional, Number of items per page), cursor (optional, Cursor for pagination)', 'inputSchema': {'type': 'object', 'title': 'figma_get_team_stylesArguments', 'required': ['team_id'], 'properties': {'cursor': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Cursor', 'default': None}, 'team_id': {'type': 'string', 'title': 'Team Id'}, 'page_size': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Page Size', 'default': None}}}}, {'name': 'figma_get_file_styles', 'description': 'Get styles from a file. Args: fileKey (required, The key of the file to get styles from)', 'inputSchema': {'type': 'object', 'title': 'figma_get_file_stylesArguments', 'required': ['fileKey'], 'properties': {'fileKey': {'type': 'string', 'title': 'Filekey'}}}}, {'name': 'figma_get_style', 'description': 'Get a style by key. Args: key (required, The style key)', 'inputSchema': {'type': 'object', 'title': 'figma_get_styleArguments', 'required': ['key'], 'properties': {'key': {'type': 'string', 'title': 'Key'}}}}, {'name': 'read_file_content', 'description': 'Read file content. Args: path (required, Path to the file to read), encoding (optional, File encoding)', 'inputSchema': {'type': 'object', 'title': 'read_file_contentArguments', 'required': ['path'], 'properties': {'path': {'type': 'string', 'title': 'Path'}, 'encoding': {'type': 'string', 'title': 'Encoding', 'default': 'utf-8'}}}}, {'name': 'write_file_content', 'description': 'Write content to a file. Args: path (required, Path to the file to write), content (required, Content to write), encoding (optional, File encoding), append (optional, Whether to append to the file)', 'inputSchema': {'type': 'object', 'title': 'write_file_contentArguments', 'required': ['path', 'content'], 'properties': {'path': {'type': 'string', 'title': 'Path'}, 'append': {'type': 'boolean', 'title': 'Append', 'default': False}, 'content': {'type': 'string', 'title': 'Content'}, 'encoding': {'type': 'string', 'title': 'Encoding', 'default': 'utf-8'}}}}, {'name': 'replace_in_file', 'description': 'Replace content in a file using regular expressions. Args: path (required, Path to the file), pattern (required, Regular expression pattern), replacement (required, Replacement string), encoding (optional, File encoding), count (optional, Maximum number of replacements)', 'inputSchema': {'type': 'object', 'title': 'replace_in_fileArguments', 'required': ['path', 'pattern', 'replacement'], 'properties': {'path': {'type': 'string', 'title': 'Path'}, 'count': {'type': 'integer', 'title': 'Count', 'default': 0}, 'pattern': {'type': 'string', 'title': 'Pattern'}, 'encoding': {'type': 'string', 'title': 'Encoding', 'default': 'utf-8'}, 'replacement': {'type': 'string', 'title': 'Replacement'}}}}, {'name': 'list_directory', 'description': 'List directory contents with detailed information. Args: path (required, Directory path), recursive (optional, Whether to list recursively), max_depth (optional, Maximum recursion depth), include_hidden (optional, Whether to include hidden files)', 'inputSchema': {'type': 'object', 'title': 'list_directoryArguments', 'required': ['path'], 'properties': {'path': {'type': 'string', 'title': 'Path'}, 'max_depth': {'type': 'integer', 'title': 'Max Depth', 'default': -1}, 'recursive': {'type': 'boolean', 'title': 'Recursive', 'default': False}, 'include_hidden': {'type': 'boolean', 'title': 'Include Hidden', 'default': False}}}}]
@kydycode/ableton-mcp-boost
Ableton Live Integration
Connect Claude AI to Ableton Live for prompt-assisted music production and track manipulation. Control playback, create MIDI clips, and manage your music sessions seamlessly with AI assistance.
2025-03-30T20:53:53.851Z
0
https://smithery.ai/server/@kydycode/ableton-mcp-boost
false
null
{ "scanPassed": true }
[{'name': 'get_session_info', 'description': 'Get detailed information about the current Ableton session', 'inputSchema': {'type': 'object', 'title': 'get_session_infoArguments', 'properties': {}}}, {'name': 'get_track_info', 'description': '\n Get detailed information about a specific track in Ableton.\n \n Parameters:\n - track_index: The index of the track to get information about\n ', 'inputSchema': {'type': 'object', 'title': 'get_track_infoArguments', 'required': ['track_index'], 'properties': {'track_index': {'type': 'integer', 'title': 'Track Index'}}}}, {'name': 'create_midi_track', 'description': '\n Create a new MIDI track in the Ableton session.\n \n Parameters:\n - index: The index to insert the track at (-1 = end of list)\n ', 'inputSchema': {'type': 'object', 'title': 'create_midi_trackArguments', 'properties': {'index': {'type': 'integer', 'title': 'Index', 'default': -1}}}}, {'name': 'set_track_name', 'description': '\n Set the name of a track.\n \n Parameters:\n - track_index: The index of the track to rename\n - name: The new name for the track\n ', 'inputSchema': {'type': 'object', 'title': 'set_track_nameArguments', 'required': ['track_index', 'name'], 'properties': {'name': {'type': 'string', 'title': 'Name'}, 'track_index': {'type': 'integer', 'title': 'Track Index'}}}}, {'name': 'create_clip', 'description': '\n Create a new MIDI clip in the specified track and clip slot.\n \n Parameters:\n - track_index: The index of the track to create the clip in\n - clip_index: The index of the clip slot to create the clip in\n - length: The length of the clip in beats (default: 4.0)\n ', 'inputSchema': {'type': 'object', 'title': 'create_clipArguments', 'required': ['track_index', 'clip_index'], 'properties': {'length': {'type': 'number', 'title': 'Length', 'default': 4}, 'clip_index': {'type': 'integer', 'title': 'Clip Index'}, 'track_index': {'type': 'integer', 'title': 'Track Index'}}}}, {'name': 'add_notes_to_clip', 'description': '\n Add MIDI notes to a clip.\n \n Parameters:\n - track_index: The index of the track containing the clip\n - clip_index: The index of the clip slot containing the clip\n - notes: List of note dictionaries, each with pitch, start_time, duration, velocity, and mute\n ', 'inputSchema': {'type': 'object', 'title': 'add_notes_to_clipArguments', 'required': ['track_index', 'clip_index', 'notes'], 'properties': {'notes': {'type': 'array', 'items': {'type': 'object', 'additionalProperties': {'anyOf': [{'type': 'integer'}, {'type': 'number'}, {'type': 'boolean'}]}}, 'title': 'Notes'}, 'clip_index': {'type': 'integer', 'title': 'Clip Index'}, 'track_index': {'type': 'integer', 'title': 'Track Index'}}}}, {'name': 'set_clip_name', 'description': '\n Set the name of a clip.\n \n Parameters:\n - track_index: The index of the track containing the clip\n - clip_index: The index of the clip slot containing the clip\n - name: The new name for the clip\n ', 'inputSchema': {'type': 'object', 'title': 'set_clip_nameArguments', 'required': ['track_index', 'clip_index', 'name'], 'properties': {'name': {'type': 'string', 'title': 'Name'}, 'clip_index': {'type': 'integer', 'title': 'Clip Index'}, 'track_index': {'type': 'integer', 'title': 'Track Index'}}}}, {'name': 'set_tempo', 'description': '\n Set the tempo of the Ableton session.\n \n Parameters:\n - tempo: The new tempo in BPM\n ', 'inputSchema': {'type': 'object', 'title': 'set_tempoArguments', 'required': ['tempo'], 'properties': {'tempo': {'type': 'number', 'title': 'Tempo'}}}}, {'name': 'load_instrument_or_effect', 'description': "\n Load an instrument or effect onto a track using its URI.\n \n Parameters:\n - track_index: The index of the track to load the instrument on\n - uri: The URI of the instrument or effect to load (e.g., 'query:Synths#Instrument%20Rack:Bass:FileId_5116')\n ", 'inputSchema': {'type': 'object', 'title': 'load_instrument_or_effectArguments', 'required': ['track_index', 'uri'], 'properties': {'uri': {'type': 'string', 'title': 'Uri'}, 'track_index': {'type': 'integer', 'title': 'Track Index'}}}}, {'name': 'fire_clip', 'description': '\n Start playing a clip.\n \n Parameters:\n - track_index: The index of the track containing the clip\n - clip_index: The index of the clip slot containing the clip\n ', 'inputSchema': {'type': 'object', 'title': 'fire_clipArguments', 'required': ['track_index', 'clip_index'], 'properties': {'clip_index': {'type': 'integer', 'title': 'Clip Index'}, 'track_index': {'type': 'integer', 'title': 'Track Index'}}}}, {'name': 'stop_clip', 'description': '\n Stop playing a clip.\n \n Parameters:\n - track_index: The index of the track containing the clip\n - clip_index: The index of the clip slot containing the clip\n ', 'inputSchema': {'type': 'object', 'title': 'stop_clipArguments', 'required': ['track_index', 'clip_index'], 'properties': {'clip_index': {'type': 'integer', 'title': 'Clip Index'}, 'track_index': {'type': 'integer', 'title': 'Track Index'}}}}, {'name': 'start_playback', 'description': 'Start playing the Ableton session.', 'inputSchema': {'type': 'object', 'title': 'start_playbackArguments', 'properties': {}}}, {'name': 'stop_playback', 'description': 'Stop playing the Ableton session.', 'inputSchema': {'type': 'object', 'title': 'stop_playbackArguments', 'properties': {}}}, {'name': 'setup_project_follow_actions', 'description': '\n Setup follow actions for all tracks in the project.\n This sets all clips to play in sequence (top to bottom) on each track.\n \n Parameters:\n - loop_back: Whether the last clip should loop back to the first clip in each track (default: True)\n ', 'inputSchema': {'type': 'object', 'title': 'setup_project_follow_actionsArguments', 'properties': {'loop_back': {'type': 'boolean', 'title': 'Loop Back', 'default': True}}}}, {'name': 'get_browser_tree', 'description': "\n Get a hierarchical tree of browser categories from Ableton.\n \n Parameters:\n - category_type: Type of categories to get ('all', 'instruments', 'sounds', 'drums', 'audio_effects', 'midi_effects')\n ", 'inputSchema': {'type': 'object', 'title': 'get_browser_treeArguments', 'properties': {'category_type': {'type': 'string', 'title': 'Category Type', 'default': 'all'}}}}, {'name': 'get_browser_items_at_path', 'description': '\n Get browser items at a specific path in Ableton\'s browser.\n \n Parameters:\n - path: Path in the format "category/folder/subfolder"\n where category is one of the available browser categories in Ableton\n ', 'inputSchema': {'type': 'object', 'title': 'get_browser_items_at_pathArguments', 'required': ['path'], 'properties': {'path': {'type': 'string', 'title': 'Path'}}}}, {'name': 'load_drum_kit', 'description': "\n Load a drum rack and then load a specific drum kit into it.\n \n Parameters:\n - track_index: The index of the track to load on\n - rack_uri: The URI of the drum rack to load (e.g., 'Drums/Drum Rack')\n - kit_path: Path to the drum kit inside the browser (e.g., 'drums/acoustic/kit1')\n ", 'inputSchema': {'type': 'object', 'title': 'load_drum_kitArguments', 'required': ['track_index', 'rack_uri', 'kit_path'], 'properties': {'kit_path': {'type': 'string', 'title': 'Kit Path'}, 'rack_uri': {'type': 'string', 'title': 'Rack Uri'}, 'track_index': {'type': 'integer', 'title': 'Track Index'}}}}, {'name': 'create_arrangement_section', 'description': "\n Create a section in the arrangement (intro, verse, chorus, etc.) by duplicating clips into the arrangement view.\n \n Parameters:\n - section_type: Type of section to create (e.g. 'intro', 'verse', 'chorus', 'bridge', 'outro')\n - length_bars: Length of the section in bars\n - start_bar: Bar position to start the section (default: end of arrangement)\n ", 'inputSchema': {'type': 'object', 'title': 'create_arrangement_sectionArguments', 'required': ['section_type', 'length_bars'], 'properties': {'start_bar': {'type': 'integer', 'title': 'Start Bar', 'default': -1}, 'length_bars': {'type': 'integer', 'title': 'Length Bars'}, 'section_type': {'type': 'string', 'title': 'Section Type'}}}}, {'name': 'duplicate_section', 'description': '\n Duplicate a section of the arrangement with optional variations.\n \n Parameters:\n - source_start_bar: Start bar of the section to duplicate\n - source_end_bar: End bar of the section to duplicate\n - destination_bar: Bar position to paste the duplicated section\n - variation_level: Amount of variation to apply (0.0 = exact copy, 1.0 = maximum variation)\n ', 'inputSchema': {'type': 'object', 'title': 'duplicate_sectionArguments', 'required': ['source_start_bar', 'source_end_bar', 'destination_bar'], 'properties': {'source_end_bar': {'type': 'integer', 'title': 'Source End Bar'}, 'destination_bar': {'type': 'integer', 'title': 'Destination Bar'}, 'variation_level': {'type': 'number', 'title': 'Variation Level', 'default': 0}, 'source_start_bar': {'type': 'integer', 'title': 'Source Start Bar'}}}}, {'name': 'create_transition', 'description': "\n Create a transition between two sections in the arrangement.\n \n Parameters:\n - from_bar: Bar position where the transition starts\n - to_bar: Bar position where the transition ends\n - transition_type: Type of transition to create ('fill', 'riser', 'impact', 'downlifter', 'uplifter', 'cut')\n - length_beats: Length of the transition in beats\n ", 'inputSchema': {'type': 'object', 'title': 'create_transitionArguments', 'required': ['from_bar', 'to_bar', 'transition_type'], 'properties': {'to_bar': {'type': 'integer', 'title': 'To Bar'}, 'from_bar': {'type': 'integer', 'title': 'From Bar'}, 'length_beats': {'type': 'integer', 'title': 'Length Beats', 'default': 4}, 'transition_type': {'type': 'string', 'title': 'Transition Type'}}}}, {'name': 'convert_session_to_arrangement', 'description': '\n Convert session clips to arrangement based on specified structure.\n \n Parameters:\n - structure: List of sections to create, each with a type, length and optional track selection\n Example: [{"type": "intro", "length_bars": 8}, {"type": "verse", "length_bars": 16}]\n ', 'inputSchema': {'type': 'object', 'title': 'convert_session_to_arrangementArguments', 'required': ['structure'], 'properties': {'structure': {'type': 'array', 'items': {'type': 'object', 'additionalProperties': {'anyOf': [{'type': 'string'}, {'type': 'integer'}]}}, 'title': 'Structure'}}}}, {'name': 'set_clip_follow_action_time', 'description': '\n Set the follow action time for a clip in beats.\n \n Parameters:\n - track_index: The index of the track containing the clip\n - clip_index: The index of the clip slot containing the clip\n - time_beats: The time in beats after which the follow action will be triggered\n ', 'inputSchema': {'type': 'object', 'title': 'set_clip_follow_action_timeArguments', 'required': ['track_index', 'clip_index', 'time_beats'], 'properties': {'clip_index': {'type': 'integer', 'title': 'Clip Index'}, 'time_beats': {'type': 'number', 'title': 'Time Beats'}, 'track_index': {'type': 'integer', 'title': 'Track Index'}}}}, {'name': 'set_clip_follow_action', 'description': "\n Set the follow action for a clip.\n \n Parameters:\n - track_index: The index of the track containing the clip\n - clip_index: The index of the clip slot containing the clip\n - action_type: The type of follow action to set ('none', 'next', 'prev', 'first', 'last', 'any', 'other')\n - probability: The probability of this action being triggered (0.0 to 1.0, default: 1.0)\n ", 'inputSchema': {'type': 'object', 'title': 'set_clip_follow_actionArguments', 'required': ['track_index', 'clip_index', 'action_type'], 'properties': {'clip_index': {'type': 'integer', 'title': 'Clip Index'}, 'action_type': {'type': 'string', 'title': 'Action Type'}, 'probability': {'type': 'number', 'title': 'Probability', 'default': 1}, 'track_index': {'type': 'integer', 'title': 'Track Index'}}}}, {'name': 'set_clip_follow_action_linked', 'description': '\n Set whether the follow action timing is linked to the clip length.\n \n Parameters:\n - track_index: The index of the track containing the clip\n - clip_index: The index of the clip slot containing the clip\n - linked: Whether the follow action time should be linked to the clip length (default: True)\n ', 'inputSchema': {'type': 'object', 'title': 'set_clip_follow_action_linkedArguments', 'required': ['track_index', 'clip_index'], 'properties': {'linked': {'type': 'boolean', 'title': 'Linked', 'default': True}, 'clip_index': {'type': 'integer', 'title': 'Clip Index'}, 'track_index': {'type': 'integer', 'title': 'Track Index'}}}}, {'name': 'setup_clip_sequence', 'description': '\n Setup a sequence of clips with follow actions to play in order.\n \n Parameters:\n - track_index: The index of the track containing the clips\n - start_clip_index: The index of the first clip in the sequence\n - end_clip_index: The index of the last clip in the sequence\n ', 'inputSchema': {'type': 'object', 'title': 'setup_clip_sequenceArguments', 'required': ['track_index', 'start_clip_index', 'end_clip_index'], 'properties': {'track_index': {'type': 'integer', 'title': 'Track Index'}, 'end_clip_index': {'type': 'integer', 'title': 'End Clip Index'}, 'start_clip_index': {'type': 'integer', 'title': 'Start Clip Index'}}}}]
@ravenwits/mcp-server-arangodb
ArangoDB
Provides database interaction capabilities through ArangoDB.
2025-01-01T06:33:56.896Z
0
https://smithery.ai/server/@ravenwits/mcp-server-arangodb
false
null
{ "scanPassed": true }
[{'name': 'arango_query', 'description': 'Execute an AQL query', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'AQL query string'}, 'bindVars': {'type': 'object', 'description': 'Query bind variables', 'additionalProperties': True}}}}, {'name': 'arango_insert', 'description': 'Insert a document into a collection', 'inputSchema': {'type': 'object', 'required': ['collection', 'document'], 'properties': {'document': {'type': 'object', 'description': 'Document to insert', 'additionalProperties': True}, 'collection': {'type': 'string', 'description': 'Collection name'}}}}, {'name': 'arango_update', 'description': 'Update a document in a collection', 'inputSchema': {'type': 'object', 'required': ['collection', 'key', 'update'], 'properties': {'key': {'type': 'string', 'description': 'Document key'}, 'update': {'type': 'object', 'description': 'Update object', 'additionalProperties': True}, 'collection': {'type': 'string', 'description': 'Collection name'}}}}, {'name': 'arango_remove', 'description': 'Remove a document from a collection', 'inputSchema': {'type': 'object', 'required': ['collection', 'key'], 'properties': {'key': {'type': 'string', 'description': 'Document key'}, 'collection': {'type': 'string', 'description': 'Collection name'}}}}, {'name': 'arango_backup', 'description': 'Backup collections to JSON files.', 'inputSchema': {'type': 'object', 'required': ['outputDir'], 'properties': {'docLimit': {'type': 'integer', 'optional': True, 'description': 'Limit the number of documents to backup. If not provided, backs up all documents.'}, 'outputDir': {'type': 'string', 'default': './backup', 'optional': True, 'description': 'An absolute directory path to store backup files'}, 'collection': {'type': 'string', 'optional': True, 'description': 'Collection name to backup. If not provided, backs up all collections.'}}}}, {'name': 'arango_list_collections', 'description': 'List all collections in the database', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'arango_create_collection', 'description': 'Create a new collection in the database', 'inputSchema': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Name of the collection to create'}, 'type': {'type': {'2': 'DOCUMENT_COLLECTION', '3': 'EDGE_COLLECTION', 'EDGE_COLLECTION': 3, 'DOCUMENT_COLLECTION': 2}, 'default': 2, 'description': 'Type of collection to create'}, 'waitForSync': {'type': 'boolean', 'default': False, 'description': 'If true, wait for data to be synchronized to disk before returning'}}}}]
@firstorderai/authenticator_mcp
Authenticator App Server
Enable AI agents to securely access your 2FA codes and passwords for automated login processes. Simplify credential management across platforms by bridging AI assistants with secure authentication. Enhance your AI agent's capabilities with seamless and secure credential retrieval.
2025-05-04T13:12:35.742Z
0
https://smithery.ai/server/@firstorderai/authenticator_mcp
false
https://spjawbfpwezjfmic…071b2e25304a.png
{ "scanPassed": true }
[{'name': 'get_2fa_code', 'description': 'Retrieve the current 2FA code for a username when logging into a website.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['website', 'username'], 'properties': {'website': {'type': 'string', 'description': 'The domain name of the website you need to login, e.g. "github.com"'}, 'username': {'type': 'string', 'description': 'The username or email of the account you need to login, e.g. "[email protected]"'}}, 'additionalProperties': False}}, {'name': 'get_password', 'description': 'Retrieve the password for a username when logging into a website.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['website', 'username'], 'properties': {'website': {'type': 'string', 'description': 'The domain name of the website you need to login, e.g. "github.com"'}, 'username': {'type': 'string', 'description': 'The username or email of the account you need to login, e.g. "[email protected]"'}}, 'additionalProperties': False}}, {'name': 'get_account_list', 'description': 'Retrieve the accounts can be used when logging into a website.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['website'], 'properties': {'website': {'type': 'string', 'description': 'The domain name of the website you need to login, e.g. "github.com"'}}, 'additionalProperties': False}}]
@neo4j-contrib/mcp-neo4j-cloud-aura-api
Neo4j Aura Database Manager
Manage your Neo4j Aura database instances effortlessly. Create, monitor, and maintain your graph database infrastructure directly through Claude, streamlining your database management tasks.
2025-03-27T21:32:18.398Z
0
https://smithery.ai/server/@neo4j-contrib/mcp-neo4j-cloud-aura-api
false
null
{ "scanPassed": true }
[{'name': 'list_instances', 'description': 'List all Neo4j Aura database instances', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'get_instance_details', 'description': 'Get details for one or more Neo4j Aura instances by ID, including status, region, memory, storage', 'inputSchema': {'type': 'object', 'required': ['instance_ids'], 'properties': {'instance_ids': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of instance IDs to retrieve'}}}}, {'name': 'get_instance_by_name', 'description': 'Find a Neo4j Aura instance by name and returns the details including the id', 'inputSchema': {'type': 'object', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Name of the instance to find'}}}}, {'name': 'create_instance', 'description': 'Create a new Neo4j Aura database instance', 'inputSchema': {'type': 'object', 'required': ['tenant_id', 'name'], 'properties': {'name': {'type': 'string', 'description': 'Name for the new instance'}, 'type': {'type': 'string', 'default': 'free-db', 'description': 'Instance type (free-db, professional-db, enterprise-db, or business-critical)'}, 'memory': {'type': 'integer', 'default': 1, 'description': 'Memory allocation in GB'}, 'region': {'type': 'string', 'default': 'us-central1', 'description': "Region for the instance (e.g., 'us-east-1')"}, 'tenant_id': {'type': 'string', 'description': 'ID of the tenant/project where the instance will be created'}, 'cloud_provider': {'type': 'string', 'default': 'gcp', 'description': 'Cloud provider (gcp, aws, azure)'}, 'vector_optimized': {'type': 'boolean', 'default': False, 'description': 'Whether the instance is optimized for vector operations'}, 'source_instance_id': {'type': 'string', 'description': 'ID of the source instance to clone from (for professional/enterprise instances)'}, 'graph_analytics_plugin': {'type': 'boolean', 'default': False, 'description': 'Whether to enable the graph analytics plugin'}}}}, {'name': 'update_instance_name', 'description': 'Update the name of a Neo4j Aura instance', 'inputSchema': {'type': 'object', 'required': ['instance_id', 'name'], 'properties': {'name': {'type': 'string', 'description': 'New name for the instance'}, 'instance_id': {'type': 'string', 'description': 'ID of the instance to update'}}}}, {'name': 'update_instance_memory', 'description': 'Update the memory allocation of a Neo4j Aura instance', 'inputSchema': {'type': 'object', 'required': ['instance_id', 'memory'], 'properties': {'memory': {'type': 'integer', 'description': 'New memory allocation in GB'}, 'instance_id': {'type': 'string', 'description': 'ID of the instance to update'}}}}, {'name': 'update_instance_vector_optimization', 'description': 'Update the vector optimization setting of a Neo4j Aura instance', 'inputSchema': {'type': 'object', 'required': ['instance_id', 'vector_optimized'], 'properties': {'instance_id': {'type': 'string', 'description': 'ID of the instance to update'}, 'vector_optimized': {'type': 'boolean', 'description': 'Whether the instance should be optimized for vector operations'}}}}, {'name': 'pause_instance', 'description': 'Pause a Neo4j Aura database instance', 'inputSchema': {'type': 'object', 'required': ['instance_id'], 'properties': {'instance_id': {'type': 'string', 'description': 'ID of the instance to pause'}}}}, {'name': 'resume_instance', 'description': 'Resume a paused Neo4j Aura database instance', 'inputSchema': {'type': 'object', 'required': ['instance_id'], 'properties': {'instance_id': {'type': 'string', 'description': 'ID of the instance to resume'}}}}, {'name': 'list_tenants', 'description': 'List all Neo4j Aura tenants/projects', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'get_tenant_details', 'description': 'Get details for a specific Neo4j Aura tenant/project', 'inputSchema': {'type': 'object', 'required': ['tenant_id'], 'properties': {'tenant_id': {'type': 'string', 'description': 'ID of the tenant/project to retrieve'}}}}, {'name': 'delete_instance', 'description': 'Delete a Neo4j Aura database instance', 'inputSchema': {'type': 'object', 'required': ['instance_id'], 'properties': {'instance_id': {'type': 'string', 'description': 'ID of the instance to delete'}}}}]
@MushroomFleet/uno-mcp
Unified Narrative Operator
Transform your ordinary story content into rich, detailed narratives. Enhance your writing with advanced literary techniques that analyze, expand, and enrich your text while preserving your unique voice. Experience a personal narrative assistant that helps you craft compelling stories effortlessly.
2025-03-22T21:31:20.034Z
0
https://smithery.ai/server/@MushroomFleet/uno-mcp
false
null
{ "scanPassed": true }
[{'name': 'analyze_text', 'description': 'Analyzes a story page and generates a report with insights', 'inputSchema': {'type': 'object', 'required': ['text'], 'properties': {'text': {'type': 'string', 'description': 'The story page text to analyze or enhance'}}}}, {'name': 'enhance_text', 'description': 'Enhances a story page using all techniques to meet expansion target', 'inputSchema': {'type': 'object', 'required': ['text'], 'properties': {'text': {'type': 'string', 'description': 'The story page text to enhance'}, 'expansionTarget': {'type': 'number', 'maximum': 500, 'minimum': 100, 'description': 'Target expansion percentage (default: 200)'}}}}, {'name': 'custom_enhance_text', 'description': 'Enhances a story page using selected techniques', 'inputSchema': {'type': 'object', 'required': ['text'], 'properties': {'text': {'type': 'string', 'description': 'The story page text to enhance'}, 'expansionTarget': {'type': 'number', 'maximum': 500, 'minimum': 100, 'description': 'Target expansion percentage (default: 200)'}, 'enableActionScene': {'type': 'boolean', 'default': True, 'description': 'Enable Action Scene enhancement'}, 'enableGoldenShadow': {'type': 'boolean', 'default': True, 'description': 'Enable Golden Shadow enhancement'}, 'enableEnvironmental': {'type': 'boolean', 'default': True, 'description': 'Enable Environmental expansion'}, 'enableProseSmoother': {'type': 'boolean', 'default': True, 'description': 'Enable Prose Smoothing'}, 'enableRepetitionElimination': {'type': 'boolean', 'default': True, 'description': 'Enable Repetition Elimination'}}}}]
@qianphhh/stata-mcp-sse
Stata-MCP
Enable LLMs to assist with regression analysis using Stata seamlessly. Automate and simplify your statistical workflows by integrating Stata commands and data analysis with large language models. Enhance productivity and accuracy in your econometric and statistical tasks.
2025-04-26T17:41:29.496Z
0
https://smithery.ai/server/@qianphhh/stata-mcp-sse
false
null
{ "scanPassed": true }
[{'name': 'read_log', 'description': '\n Read the log file and return its content.\n\n Args:\n log_path (str): The path to the log file.\n\n Returns:\n str: The content of the log file.\n ', 'inputSchema': {'type': 'object', 'title': 'read_logArguments', 'required': ['log_path'], 'properties': {'log_path': {'type': 'string', 'title': 'Log Path'}}}}, {'name': 'get_data_info', 'description': 'Get descriptive statistics for the data file', 'inputSchema': {'type': 'object', 'title': 'get_data_infoArguments', 'required': ['data_path'], 'properties': {'encoding': {'type': 'string', 'title': 'Encoding', 'default': 'utf-8'}, 'data_path': {'type': 'string', 'title': 'Data Path'}, 'vars_list': {'anyOf': [{'type': 'array', 'items': {'type': 'string'}}, {'type': 'null'}], 'title': 'Vars List', 'default': None}}}}, {'name': 'results_doc_path', 'description': 'Storage path for Stata `outreg2` and other command return files (for convenient result management)', 'inputSchema': {'type': 'object', 'title': 'results_doc_pathArguments', 'properties': {}}}, {'name': 'write_dofile', 'description': 'write the stata-code to dofile', 'inputSchema': {'type': 'object', 'title': 'write_dofileArguments', 'required': ['content'], 'properties': {'content': {'type': 'string', 'title': 'Content'}}}}, {'name': 'append_dofile', 'description': 'append stata-code to an existing dofile or create a new one', 'inputSchema': {'type': 'object', 'title': 'append_dofileArguments', 'required': ['original_dofile_path', 'content'], 'properties': {'content': {'type': 'string', 'title': 'Content'}, 'original_dofile_path': {'type': 'string', 'title': 'Original Dofile Path'}}}}, {'name': 'stata_do', 'description': 'Run a stata-code via Stata', 'inputSchema': {'type': 'object', 'title': 'stata_doArguments', 'required': ['dofile_path'], 'properties': {'dofile_path': {'type': 'string', 'title': 'Dofile Path'}}}}]
@dreamme7/mcp-oceanbase
OceanBase MCP Server
Enable secure and structured interaction with OceanBase databases through an MCP server. Allow AI assistants to list tables, read data, and execute SQL queries safely via a controlled interface. Facilitate safer database exploration and analysis for end-users.
2025-04-21T03:57:16.864Z
0
https://smithery.ai/server/@dreamme7/mcp-oceanbase
false
null
{ "scanPassed": true }
[{'name': 'configure_db_connection', 'description': '\n Retrieve OceanBase database connection information.\n If no parameters are provided, the configuration is loaded from environment variables.\n Otherwise, user-defined connection parameters will be used.\n\n :param host: Database host address. Defaults to environment variable OB_HOST or "localhost".\n :param port: Database port number. Defaults to environment variable OB_PORT or "2881".\n :param user: Database username. Required. Defaults to user input or environment variable OB_USER.\n :param password: Database password. Required. Defaults to user input or environment variable OB_PASSWORD.\n :param database: Database name. Required. Defaults to user input or environment variable OB_DATABASE.\n :return: A dictionary containing the database connection configuration.\n :raises ValueError: Raised if any of the required parameters (user, password, database) are missing.\n ', 'inputSchema': {'type': 'object', 'title': 'configure_db_connectionArguments', 'properties': {'host': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Host', 'default': None}, 'port': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Port', 'default': None}, 'user': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'User', 'default': None}, 'database': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Database', 'default': None}, 'password': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Password', 'default': None}}}}, {'name': 'execute_sql', 'description': 'Execute an SQL query on the OceanBase server', 'inputSchema': {'type': 'object', 'title': 'call_toolArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}}}}]
@Talismanic/cleanuri-url-shortener-mcp
URL Shortener MCP
Shorten any given URL effortlessly using the CleanURI API. Integrate this tool into your systems to enhance user experience with quick and reliable URL shortening. Enjoy seamless operation with proper error handling and response validation.
2025-03-23T04:46:05.953Z
0
https://smithery.ai/server/@Talismanic/cleanuri-url-shortener-mcp
false
null
{ "scanPassed": true }
[{'name': 'shorten', 'description': 'Shorten a URL using the cleanuri API.\n\n Args:\n original_url: The URL to shorten.\n ', 'inputSchema': {'type': 'object', 'title': 'shortenArguments', 'required': ['original_url'], 'properties': {'original_url': {'type': 'string', 'title': 'Original Url'}}}}]
@mailpace/mailpace-mcp
MailPace MCP Server
Send emails effortlessly using MailPace's fast transactional email API. Integrate email capabilities into your applications and streamline communication with ease. Start sending emails with just a few simple configurations.
2025-03-25T06:36:08.394Z
0
https://smithery.ai/server/@mailpace/mailpace-mcp
false
null
{ "scanPassed": true }
[{'name': 'send-email', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['from', 'to'], 'properties': {'cc': {'type': 'string'}, 'to': {'type': 'string'}, 'bcc': {'type': 'string'}, 'from': {'type': 'string', 'format': 'email'}, 'tags': {'anyOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}, 'replyto': {'type': 'string'}, 'subject': {'type': 'string'}, 'htmlbody': {'type': 'string'}, 'textbody': {'type': 'string'}, 'inreplyto': {'type': 'string'}, 'references': {'type': 'string'}, 'attachments': {'type': 'array', 'items': {'type': 'object', 'required': ['name', 'content', 'content_type'], 'properties': {'cid': {'type': 'string'}, 'name': {'type': 'string'}, 'content': {'type': 'string'}, 'content_type': {'type': 'string'}}, 'additionalProperties': False}}, 'list_unsubscribe': {'type': 'string'}}, 'additionalProperties': False}}]
@goern/forgejo-mcp
forgejo-mcp
This Model Context Protocol (MCP) server provides tools and resources for interacting with the Forgejo (specifically Codeberg.org) REST API.
2025-04-08T20:39:11.110Z
0
https://smithery.ai/server/@goern/forgejo-mcp
false
null
{ "scanPassed": true }
[{'name': 'list_repositories', 'description': 'List repositories for a user or organization', 'inputSchema': {'type': 'object', 'required': ['owner'], 'properties': {'owner': {'type': 'string', 'description': 'Username or organization name'}}}}, {'name': 'get_repository', 'description': 'Get details about a specific repository', 'inputSchema': {'type': 'object', 'required': ['owner', 'name'], 'properties': {'name': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner'}}}}, {'name': 'list_issues', 'description': 'List issues for a repository', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'state': {'enum': ['open', 'closed', 'all'], 'type': 'string', 'description': 'Issue state (open, closed, all)'}}}}, {'name': 'get_issue', 'description': 'Get details about a specific issue', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo', 'number'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'number': {'type': 'number', 'description': 'Issue number'}}}}, {'name': 'create_issue', 'description': 'Create a new issue in a repository', 'inputSchema': {'type': 'object', 'required': ['owner', 'repo', 'title', 'body'], 'properties': {'body': {'type': 'string', 'description': 'Issue body'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'title': {'type': 'string', 'description': 'Issue title'}}}}, {'name': 'get_user', 'description': 'Get details about a user', 'inputSchema': {'type': 'object', 'required': ['username'], 'properties': {'username': {'type': 'string', 'description': 'Username'}}}}]
@docdyhr/simplenote-mcp-server
Simplenote MCP Server
Connect and manage your Simplenote notes seamlessly. Access, create, update, and delete notes directly from your LLM applications with ease.
2025-04-13T15:58:08.608Z
0
https://smithery.ai/server/@docdyhr/simplenote-mcp-server
false
https://spjawbfpwezjfmic…27b522ca7988.png
{ "scanPassed": true }
[{'name': 'create_note', 'description': 'Create a new note in Simplenote', 'inputSchema': {'type': 'object', 'required': ['content'], 'properties': {'tags': {'type': 'string', 'description': 'Tags for the note (comma-separated)'}, 'content': {'type': 'string', 'description': 'The content of the note'}}}}, {'name': 'update_note', 'description': 'Update an existing note in Simplenote', 'inputSchema': {'type': 'object', 'required': ['note_id', 'content'], 'properties': {'tags': {'type': 'string', 'description': 'Tags for the note (comma-separated)'}, 'content': {'type': 'string', 'description': 'The new content of the note'}, 'note_id': {'type': 'string', 'description': 'The ID of the note to update'}}}}, {'name': 'delete_note', 'description': 'Delete a note from Simplenote', 'inputSchema': {'type': 'object', 'required': ['note_id'], 'properties': {'note_id': {'type': 'string', 'description': 'The ID of the note to delete'}}}}, {'name': 'search_notes', 'description': 'Search for notes in Simplenote', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'limit': {'type': 'integer', 'description': 'Maximum number of results to return'}, 'query': {'type': 'string', 'description': 'The search query'}}}}, {'name': 'get_note', 'description': 'Get a note by ID from Simplenote', 'inputSchema': {'type': 'object', 'required': ['note_id'], 'properties': {'note_id': {'type': 'string', 'description': 'The ID of the note to retrieve'}}}}, {'name': 'add_tags', 'description': 'Add tags to an existing note', 'inputSchema': {'type': 'object', 'required': ['note_id', 'tags'], 'properties': {'tags': {'type': 'string', 'description': 'Tags to add (comma-separated)'}, 'note_id': {'type': 'string', 'description': 'The ID of the note to modify'}}}}, {'name': 'remove_tags', 'description': 'Remove tags from an existing note', 'inputSchema': {'type': 'object', 'required': ['note_id', 'tags'], 'properties': {'tags': {'type': 'string', 'description': 'Tags to remove (comma-separated)'}, 'note_id': {'type': 'string', 'description': 'The ID of the note to modify'}}}}, {'name': 'replace_tags', 'description': 'Replace all tags on an existing note', 'inputSchema': {'type': 'object', 'required': ['note_id', 'tags'], 'properties': {'tags': {'type': 'string', 'description': 'New tags (comma-separated)'}, 'note_id': {'type': 'string', 'description': 'The ID of the note to modify'}}}}]
@liuchongchong1995/uns-mcp
Unstructured API Server
Provide structured tools to interact with the Unstructured API, enabling management of sources, destinations, workflows, and jobs. Easily list, create, update, and delete connectors and workflows to streamline data processing tasks. Integrate seamlessly with clients like Claude Desktop for enhanced automation and control.
2025-04-25T06:58:59.548Z
0
https://smithery.ai/server/@liuchongchong1995/uns-mcp
false
null
{ "scanPassed": true }
[{'name': 'create_source_connector', 'description': "Create a source connector based on type.\n\n Args:\n ctx: Context object with the request and lifespan context\n name: A unique name for this connector\n source_type: The type of source being created (e.g., 'azure', 'onedrive',\n 'salesforce', 'gdrive', 's3', 'sharepoint')\n\n type_specific_config:\n azure:\n remote_url: The Azure Storage remote URL with the format\n az://<container-name>/<path/to/file/or/folder/in/container/as/needed>\n recursive: (Optional[bool]) Whether to access subfolders\n gdrive:\n drive_id: The Drive ID for the Google Drive source\n recursive: (Optional[bool]) Whether to access subfolders\n extensions: (Optional[list[str]]) File extensions to filter\n onedrive:\n path: The path to the target folder in the OneDrive account\n user_pname: The User Principal Name (UPN) for the OneDrive user account\n recursive: (Optional[bool]) Whether to access subfolders\n authority_url: (Optional[str]) The authentication token provider URL\n s3:\n remote_url: The S3 URI to the bucket or folder (e.g., s3://my-bucket/)\n recursive: (Optional[bool]) Whether to access subfolders\n salesforce:\n username: The Salesforce username\n categories: (Optional[list[str]]) Optional Salesforce domain,the names of the\n Salesforce categories (objects) that you want to access, specified as\n a comma-separated list. Available categories include Account, Campaign,\n Case, EmailMessage, and Lead.\n sharepoint:\n site: The SharePoint site to connect to\n user_pname: The username for the SharePoint site\n path: (Optional) The path within the SharePoint site\n recursive: (Optional[bool]) Whether to access subfolders\n authority_url: (Optional[str]) The authority URL for authentication\n\n Returns:\n String containing the created source connector information\n ", 'inputSchema': {'type': 'object', 'title': 'create_source_connectorArguments', 'required': ['name', 'source_type', 'type_specific_config'], 'properties': {'name': {'type': 'string', 'title': 'Name'}, 'source_type': {'enum': ['azure', 'onedrive', 'salesforce', 'gdrive', 's3', 'sharepoint'], 'type': 'string', 'title': 'Source Type'}, 'type_specific_config': {'type': 'object', 'title': 'Type Specific Config', 'additionalProperties': True}}}}, {'name': 'update_source_connector', 'description': "Update a source connector based on type.\n\n Args:\n ctx: Context object with the request and lifespan context\n source_id: ID of the source connector to update\n source_type: The type of source being updated (e.g., 'azure', 'onedrive',\n 'salesforce', 'gdrive', 's3', 'sharepoint')\n\n type_specific_config:\n azure:\n remote_url: (Optional[str]) The Azure Storage remote URL with the format\n az://<container-name>/<path/to/file/or/folder/in/container/as/needed>\n recursive: (Optional[bool]) Whether to access subfolders\n gdrive:\n drive_id: (Optional[str]) The Drive ID for the Google Drive source\n recursive: (Optional[bool]) Whether to access subfolders\n extensions: (Optional[list[str]]) File extensions to filter\n onedrive:\n path: (Optional[str]) The path to the target folder in the OneDrive account\n user_pname: (Optional[str]) The User Principal Name (UPN) for the OneDrive\n user account\n recursive: (Optional[bool]) Whether to access subfolders\n authority_url: (Optional[str]) The authentication token provider URL\n s3:\n remote_url: (Optional[str]) The S3 URI to the bucket or folder\n (e.g., s3://my-bucket/)\n recursive: (Optional[bool]) Whether to access subfolders\n salesforce:\n username: (Optional[str]) The Salesforce username\n categories: (Optional[list[str]]) Optional Salesforce domain,the names of the\n Salesforce categories (objects) that you want to access, specified as\n a comma-separated list. Available categories include Account, Campaign,\n Case, EmailMessage, and Lead.\n sharepoint:\n site: Optional([str]) The SharePoint site to connect to\n user_pname: Optional([str]) The username for the SharePoint site\n path: (Optional) The path within the SharePoint site\n recursive: (Optional[bool]) Whether to access subfolders\n authority_url: (Optional[str]) The authority URL for authentication\n\n Returns:\n String containing the updated source connector information\n ", 'inputSchema': {'type': 'object', 'title': 'update_source_connectorArguments', 'required': ['source_id', 'source_type', 'type_specific_config'], 'properties': {'source_id': {'type': 'string', 'title': 'Source Id'}, 'source_type': {'enum': ['azure', 'onedrive', 'salesforce', 'gdrive', 's3', 'sharepoint'], 'type': 'string', 'title': 'Source Type'}, 'type_specific_config': {'type': 'object', 'title': 'Type Specific Config', 'additionalProperties': True}}}}, {'name': 'delete_source_connector', 'description': 'Delete a source connector.\n\n Args:\n source_id: ID of the source connector to delete\n\n Returns:\n String containing the result of the deletion\n ', 'inputSchema': {'type': 'object', 'title': 'delete_source_connectorArguments', 'required': ['source_id'], 'properties': {'source_id': {'type': 'string', 'title': 'Source Id'}}}}, {'name': 'create_destination_connector', 'description': 'Create a destination connector based on type.\n\n Args:\n ctx: Context object with the request and lifespan context\n name: A unique name for this connector\n destination_type: The type of destination being created\n\n type_specific_config:\n astradb:\n collection_name: The AstraDB collection name\n keyspace: The AstraDB keyspace\n batch_size: (Optional[int]) The batch size for inserting documents\n databricks_delta_table:\n catalog: Name of the catalog in Databricks Unity Catalog\n database: The database in Unity Catalog\n http_path: The cluster’s or SQL warehouse’s HTTP Path value\n server_hostname: The Databricks cluster’s or SQL warehouse’s Server Hostname value\n table_name: The name of the table in the schema\n volume: Name of the volume associated with the schema.\n schema: (Optional[str]) Name of the schema associated with the volume\n volume_path: (Optional[str]) Any target folder path within the volume, starting\n from the root of the volume.\n databricks_volumes:\n catalog: Name of the catalog in Databricks\n host: The Databricks host URL\n volume: Name of the volume associated with the schema\n schema: (Optional[str]) Name of the schema associated with the volume. The default\n value is "default".\n volume_path: (Optional[str]) Any target folder path within the volume,\n starting from the root of the volume.\n mongodb:\n database: The name of the MongoDB database\n collection: The name of the MongoDB collection\n neo4j:\n database: The Neo4j database, e.g. "neo4j"\n uri: The Neo4j URI e.g. neo4j+s://<neo4j_instance_id>.databases.neo4j.io\n batch_size: (Optional[int]) The batch size for the connector\n pinecone:\n index_name: The Pinecone index name\n namespace: (Optional[str]) The pinecone namespace, a folder inside the\n pinecone index\n batch_size: (Optional[int]) The batch size\n s3:\n remote_url: The S3 URI to the bucket or folder\n weaviate:\n cluster_url: URL of the Weaviate cluster\n collection: Name of the collection in the Weaviate cluster\n\n Note: Minimal schema is required for the collection, e.g. record_id: Text\n\n Returns:\n String containing the created destination connector information\n ', 'inputSchema': {'type': 'object', 'title': 'create_destination_connectorArguments', 'required': ['name', 'destination_type', 'type_specific_config'], 'properties': {'name': {'type': 'string', 'title': 'Name'}, 'destination_type': {'enum': ['astradb', 'databricks_delta_table', 'databricks_volumes', 'mongodb', 'neo4j', 'pinecone', 's3', 'weaviate'], 'type': 'string', 'title': 'Destination Type'}, 'type_specific_config': {'type': 'object', 'title': 'Type Specific Config', 'additionalProperties': True}}}}, {'name': 'update_destination_connector', 'description': 'Update a destination connector based on type.\n\n Args:\n ctx: Context object with the request and lifespan context\n destination_id: ID of the destination connector to update\n destination_type: The type of destination being updated\n\n type_specific_config:\n astradb:\n collection_name: (Optional[str]): The AstraDB collection name\n keyspace: (Optional[str]): The AstraDB keyspace\n batch_size: (Optional[int]) The batch size for inserting documents\n databricks_delta_table:\n catalog: (Optional[str]): Name of the catalog in Databricks Unity Catalog\n database: (Optional[str]): The database in Unity Catalog\n http_path: (Optional[str]): The cluster’s or SQL warehouse’s HTTP Path value\n server_hostname: (Optional[str]): The Databricks cluster’s or SQL warehouse’s\n Server Hostname value\n table_name: (Optional[str]): The name of the table in the schema\n volume: (Optional[str]): Name of the volume associated with the schema.\n schema: (Optional[str]) Name of the schema associated with the volume\n volume_path: (Optional[str]) Any target folder path within the volume, starting\n from the root of the volume.\n databricks_volumes:\n catalog: (Optional[str]): Name of the catalog in Databricks\n host: (Optional[str]): The Databricks host URL\n volume: (Optional[str]): Name of the volume associated with the schema\n schema: (Optional[str]) Name of the schema associated with the volume. The default\n value is "default".\n volume_path: (Optional[str]) Any target folder path within the volume,\n starting from the root of the volume.\n mongodb:\n database: (Optional[str]): The name of the MongoDB database\n collection: (Optional[str]): The name of the MongoDB collection\n neo4j:\n database: (Optional[str]): The Neo4j database, e.g. "neo4j"\n uri: (Optional[str]): The Neo4j URI\n e.g. neo4j+s://<neo4j_instance_id>.databases.neo4j.io\n batch_size: (Optional[int]) The batch size for the connector\n pinecone:\n index_name: (Optional[str]): The Pinecone index name\n namespace: (Optional[str]) The pinecone namespace, a folder inside the\n pinecone index\n batch_size: (Optional[int]) The batch size\n s3:\n remote_url: (Optional[str]): The S3 URI to the bucket or folder\n weaviate:\n cluster_url: (Optional[str]): URL of the Weaviate cluster\n collection: (Optional[str]): Name of the collection in the Weaviate cluster\n\n Note: Minimal schema is required for the collection, e.g. record_id: Text\n\n Returns:\n String containing the updated destination connector information\n ', 'inputSchema': {'type': 'object', 'title': 'update_destination_connectorArguments', 'required': ['destination_id', 'destination_type', 'type_specific_config'], 'properties': {'destination_id': {'type': 'string', 'title': 'Destination Id'}, 'destination_type': {'enum': ['astradb', 'databricks_delta_table', 'databricks_volumes', 'mongodb', 'neo4j', 'pinecone', 's3', 'weaviate'], 'type': 'string', 'title': 'Destination Type'}, 'type_specific_config': {'type': 'object', 'title': 'Type Specific Config', 'additionalProperties': True}}}}, {'name': 'delete_destination_connector', 'description': 'Delete a destination connector.\n\n Args:\n destination_id: ID of the destination connector to delete\n\n Returns:\n String containing the result of the deletion\n ', 'inputSchema': {'type': 'object', 'title': 'delete_destination_connectorArguments', 'required': ['destination_id'], 'properties': {'destination_id': {'type': 'string', 'title': 'Destination Id'}}}}, {'name': 'invoke_firecrawl_crawlhtml', 'description': 'Start an asynchronous web crawl job using Firecrawl to retrieve HTML content.\n\n Args:\n url: URL to crawl\n s3_uri: S3 URI where results will be uploaded\n limit: Maximum number of pages to crawl (default: 100)\n\n Returns:\n Dictionary with crawl job information including the job ID\n ', 'inputSchema': {'type': 'object', 'title': 'invoke_firecrawl_crawlhtmlArguments', 'required': ['url', 's3_uri'], 'properties': {'url': {'type': 'string', 'title': 'Url'}, 'limit': {'type': 'integer', 'title': 'Limit', 'default': 100}, 's3_uri': {'type': 'string', 'title': 'S3 Uri'}}}}, {'name': 'check_crawlhtml_status', 'description': 'Check the status of an existing Firecrawl HTML crawl job.\n\n Args:\n crawl_id: ID of the crawl job to check\n\n Returns:\n Dictionary containing the current status of the crawl job\n ', 'inputSchema': {'type': 'object', 'title': 'check_crawlhtml_statusArguments', 'required': ['crawl_id'], 'properties': {'crawl_id': {'type': 'string', 'title': 'Crawl Id'}}}}, {'name': 'invoke_firecrawl_llmtxt', 'description': 'Start an asynchronous llmfull.txt generation job using Firecrawl.\n This file is a standardized markdown file containing information to help LLMs\n use a website at inference time.\n The llmstxt endpoint leverages Firecrawl to crawl your website and extracts data\n using gpt-4o-mini\n Args:\n url: URL to crawl\n s3_uri: S3 URI where results will be uploaded\n max_urls: Maximum number of pages to crawl (1-100, default: 10)\n\n Returns:\n Dictionary with job information including the job ID\n ', 'inputSchema': {'type': 'object', 'title': 'invoke_firecrawl_llmtxtArguments', 'required': ['url', 's3_uri'], 'properties': {'url': {'type': 'string', 'title': 'Url'}, 's3_uri': {'type': 'string', 'title': 'S3 Uri'}, 'max_urls': {'type': 'integer', 'title': 'Max Urls', 'default': 10}}}}, {'name': 'check_llmtxt_status', 'description': 'Check the status of an existing llmfull.txt generation job.\n\n Args:\n job_id: ID of the llmfull.txt generation job to check\n\n Returns:\n Dictionary containing the current status of the job and text content if completed\n ', 'inputSchema': {'type': 'object', 'title': 'check_llmtxt_statusArguments', 'required': ['job_id'], 'properties': {'job_id': {'type': 'string', 'title': 'Job Id'}}}}, {'name': 'cancel_crawlhtml_job', 'description': 'Cancel an in-progress Firecrawl HTML crawl job.\n\n Args:\n crawl_id: ID of the crawl job to cancel\n\n Returns:\n Dictionary containing the result of the cancellation\n ', 'inputSchema': {'type': 'object', 'title': 'cancel_crawlhtml_jobArguments', 'required': ['crawl_id'], 'properties': {'crawl_id': {'type': 'string', 'title': 'Crawl Id'}}}}, {'name': 'partition_local_file', 'description': "\n Transform a local file into structured data using the Unstructured API.\n\n Args:\n input_file_path: The absolute path to the file.\n output_file_dir: The absolute path to the directory where the output file should be saved.\n strategy: The strategy for transformation.\n Available strategies:\n VLM - most advanced transformation suitable for difficult PDFs and Images\n hi_res - high resolution transformation suitable for most document types\n fast - fast transformation suitable for PDFs with extractable text\n auto - automatically choose the best strategy based on the input file\n vlm_model: The VLM model to use for the transformation.\n vlm_model_provider: The VLM model provider to use for the transformation.\n output_type: The type of output to generate. Options: 'json' for json\n or 'md' for markdown.\n\n Returns:\n A string containing the structured data or a message indicating the output file\n path with the structured data.\n ", 'inputSchema': {'type': 'object', '$defs': {'Strategy': {'enum': ['fast', 'hi_res', 'auto', 'ocr_only', 'od_only', 'vlm'], 'type': 'string', 'title': 'Strategy', 'description': 'The strategy to use for partitioning PDF/image. Options are fast, hi_res, auto. Default: hi_res'}, 'VLMModel': {'enum': ['claude-3-5-sonnet-20241022', 'claude-3-7-sonnet-20250219', 'gpt-4o', 'gemini-1.5-pro', 'us.amazon.nova-pro-v1:0', 'us.amazon.nova-lite-v1:0', 'us.anthropic.claude-3-5-sonnet-20241022-v2:0', 'us.anthropic.claude-3-opus-20240229-v1:0', 'us.anthropic.claude-3-haiku-20240307-v1:0', 'us.anthropic.claude-3-sonnet-20240229-v1:0', 'us.meta.llama3-2-90b-instruct-v1:0', 'us.meta.llama3-2-11b-instruct-v1:0', 'gemini-2.0-flash-001'], 'type': 'string', 'title': 'VLMModel', 'description': 'The VLM Model to use.'}, 'VLMModelProvider': {'enum': ['openai', 'anthropic', 'bedrock', 'anthropic_bedrock', 'vertexai', 'google', 'azure_openai'], 'type': 'string', 'title': 'VLMModelProvider', 'description': 'The VLM Model provider to use.'}}, 'title': 'partition_local_fileArguments', 'required': ['input_file_path', 'output_file_dir'], 'properties': {'strategy': {'$ref': '#/$defs/Strategy', 'default': 'vlm'}, 'vlm_model': {'$ref': '#/$defs/VLMModel', 'default': 'claude-3-5-sonnet-20241022'}, 'output_type': {'enum': ['json', 'md'], 'type': 'string', 'title': 'Output Type', 'default': 'json'}, 'input_file_path': {'type': 'string', 'title': 'Input File Path'}, 'output_file_dir': {'type': 'string', 'title': 'Output File Dir'}, 'vlm_model_provider': {'$ref': '#/$defs/VLMModelProvider', 'default': 'anthropic'}}}}, {'name': 'list_sources', 'description': '\n List available sources from the Unstructured API.\n\n Args:\n source_type: Optional source connector type to filter by\n\n Returns:\n String containing the list of sources\n ', 'inputSchema': {'type': 'object', '$defs': {'SourceConnectorType': {'enum': ['azure', 'box', 'confluence', 'couchbase', 'databricks_volumes', 'dropbox', 'elasticsearch', 'gcs', 'google_drive', 'kafka-cloud', 'mongodb', 'onedrive', 'outlook', 'postgres', 's3', 'salesforce', 'sharepoint', 'snowflake', 'jira', 'zendesk'], 'type': 'string', 'title': 'SourceConnectorType'}}, 'title': 'list_sourcesArguments', 'properties': {'source_type': {'anyOf': [{'$ref': '#/$defs/SourceConnectorType'}, {'type': 'string'}, {'type': 'null'}], 'title': 'Source Type', 'default': None}}}}, {'name': 'get_source_info', 'description': 'Get detailed information about a specific source connector.\n\n Args:\n source_id: ID of the source connector to get information for, should be valid UUID\n\n Returns:\n String containing the source connector information\n ', 'inputSchema': {'type': 'object', 'title': 'get_source_infoArguments', 'required': ['source_id'], 'properties': {'source_id': {'type': 'string', 'title': 'Source Id'}}}}, {'name': 'list_destinations', 'description': 'List available destinations from the Unstructured API.\n\n Args:\n destination_type: Optional destination connector type to filter by\n\n Returns:\n String containing the list of destinations\n ', 'inputSchema': {'type': 'object', '$defs': {'DestinationConnectorType': {'enum': ['astradb', 'azure_ai_search', 'couchbase', 'databricks_volumes', 'databricks_volume_delta_tables', 'delta_table', 'elasticsearch', 'gcs', 'kafka-cloud', 'milvus', 'mongodb', 'motherduck', 'neo4j', 'onedrive', 'pinecone', 'postgres', 'redis', 'qdrant-cloud', 's3', 'snowflake', 'weaviate-cloud'], 'type': 'string', 'title': 'DestinationConnectorType'}}, 'title': 'list_destinationsArguments', 'properties': {'destination_type': {'anyOf': [{'$ref': '#/$defs/DestinationConnectorType'}, {'type': 'string'}, {'type': 'null'}], 'title': 'Destination Type', 'default': None}}}}, {'name': 'get_destination_info', 'description': 'Get detailed information about a specific destination connector.\n\n Args:\n destination_id: ID of the destination connector to get information for\n\n Returns:\n String containing the destination connector information\n ', 'inputSchema': {'type': 'object', 'title': 'get_destination_infoArguments', 'required': ['destination_id'], 'properties': {'destination_id': {'type': 'string', 'title': 'Destination Id'}}}}, {'name': 'list_workflows', 'description': '\n List workflows from the Unstructured API.\n\n Args:\n destination_id: Optional destination connector ID to filter by\n source_id: Optional source connector ID to filter by\n status: Optional workflow status to filter by\n\n Returns:\n String containing the list of workflows\n ', 'inputSchema': {'type': 'object', '$defs': {'WorkflowState': {'enum': ['active', 'inactive'], 'type': 'string', 'title': 'WorkflowState'}}, 'title': 'list_workflowsArguments', 'properties': {'status': {'anyOf': [{'$ref': '#/$defs/WorkflowState'}, {'type': 'string'}, {'type': 'null'}], 'title': 'Status', 'default': None}, 'source_id': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Source Id', 'default': None}, 'destination_id': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Destination Id', 'default': None}}}}, {'name': 'get_workflow_info', 'description': 'Get detailed information about a specific workflow.\n\n Args:\n workflow_id: ID of the workflow to get information for\n\n Returns:\n String containing the workflow information\n ', 'inputSchema': {'type': 'object', 'title': 'get_workflow_infoArguments', 'required': ['workflow_id'], 'properties': {'workflow_id': {'type': 'string', 'title': 'Workflow Id'}}}}, {'name': 'create_workflow', 'description': 'Create a new workflow.\n\n Args:\n workflow_config: A Typed Dictionary containing required fields (destination_id - should be a\n valid UUID, name, source_id - should be a valid UUID, workflow_type) and non-required fields\n (schedule, and workflow_nodes). Note workflow_nodes is only enabled when workflow_type\n is `custom` and is a list of WorkflowNodeTypedDict: partition, prompter,chunk, embed\n Below is an example of a partition workflow node:\n {\n "name": "vlm-partition",\n "type": "partition",\n "sub_type": "vlm",\n "settings": {\n "provider": "your favorite provider",\n "model": "your favorite model"\n }\n }\n\n\n Returns:\n String containing the created workflow information\n \n\nCustom workflow DAG nodes\n- If WorkflowType is set to custom, you must also specify the settings for the workflow’s\ndirected acyclic graph (DAG) nodes. These nodes’ settings are specified in the workflow_nodes array.\n- A Source node is automatically created when you specify the source_id value outside of the\nworkflow_nodes array.\n- A Destination node is automatically created when you specify the destination_id value outside\nof the workflow_nodes array.\n- You can specify Partitioner, Chunker, Prompter, and Embedder nodes.\n- The order of the nodes in the workflow_nodes array will be the same order that these nodes appear\nin the DAG, with the first node in the array added directly after the Source node.\nThe Destination node follows the last node in the array.\n- Be sure to specify nodes in the allowed order. The following DAG placements are all allowed:\n - Source -> Partitioner -> Destination,\n - Source -> Partitioner -> Chunker -> Destination,\n - Source -> Partitioner -> Chunker -> Embedder -> Destination,\n - Source -> Partitioner -> Prompter -> Chunker -> Destination,\n - Source -> Partitioner -> Prompter -> Chunker -> Embedder -> Destination\n\nPartitioner node\nA Partitioner node has a type of partition and a subtype of auto, vlm, hi_res, or fast.\n\nExamples:\n- auto strategy:\n{\n "name": "Partitioner",\n "type": "partition",\n "subtype": "vlm",\n "settings": {\n "provider": "anthropic", (required)\n "model": "claude-3-5-sonnet-20241022", (required)\n "output_format": "text/html",\n "user_prompt": null,\n "format_html": true,\n "unique_element_ids": true,\n "is_dynamic": true,\n "allow_fast": true\n }\n}\n\n- vlm strategy:\n Allowed values are provider and model. Below are examples:\n - "provider": "anthropic" "model": "claude-3-5-sonnet-20241022",\n - "provider": "openai" "model": "gpt-4o"\n\n\n- hi_res strategy:\n{\n "name": "Partitioner",\n "type": "partition",\n "subtype": "unstructured_api",\n "settings": {\n "strategy": "hi_res",\n "include_page_breaks": <true|false>,\n "pdf_infer_table_structure": <true|false>,\n "exclude_elements": [\n "<element-name>",\n "<element-name>"\n ],\n "xml_keep_tags": <true|false>,\n "encoding": "<encoding>",\n "ocr_languages": [\n "<language>",\n "<language>"\n ],\n "extract_image_block_types": [\n "image",\n "table"\n ],\n "infer_table_structure": <true|false>\n }\n}\n- fast strategy\n{\n "name": "Partitioner",\n "type": "partition",\n "subtype": "unstructured_api",\n "settings": {\n "strategy": "fast",\n "include_page_breaks": <true|false>,\n "pdf_infer_table_structure": <true|false>,\n "exclude_elements": [\n "<element-name>",\n "<element-name>"\n ],\n "xml_keep_tags": <true|false>,\n "encoding": "<encoding>",\n "ocr_languages": [\n "<language-code>",\n "<language-code>"\n ],\n "extract_image_block_types": [\n "image",\n "table"\n ],\n "infer_table_structure": <true|false>\n }\n}\n\n\nChunker node\nA Chunker node has a type of chunk and subtype of chunk_by_character or chunk_by_title.\n\n- chunk_by_character\n{\n "name": "Chunker",\n "type": "chunk",\n "subtype": "chunk_by_character",\n "settings": {\n "include_orig_elements": <true|false>,\n "new_after_n_chars": <new-after-n-chars>, (required, if not provided\nset same as max_characters)\n "max_characters": <max-characters>, (required)\n "overlap": <overlap>, (required, if not provided set default to 0)\n "overlap_all": <true|false>,\n "contextual_chunking_strategy": "v1"\n }\n}\n\n- chunk_by_title\n{\n "name": "Chunker",\n "type": "chunk",\n "subtype": "chunk_by_title",\n "settings": {\n "multipage_sections": <true|false>,\n "combine_text_under_n_chars": <combine-text-under-n-chars>,\n "include_orig_elements": <true|false>,\n "new_after_n_chars": <new-after-n-chars>, (required, if not provided\nset same as max_characters)\n "max_characters": <max-characters>, (required)\n "overlap": <overlap>, (required, if not provided set default to 0)\n "overlap_all": <true|false>,\n "contextual_chunking_strategy": "v1"\n }\n}\n\n\nPrompter node\nAn Prompter node has a type of prompter and subtype of:\n- openai_image_description,\n- anthropic_image_description,\n- bedrock_image_description,\n- vertexai_image_description,\n- openai_table_description,\n- anthropic_table_description,\n- bedrock_table_description,\n- vertexai_table_description,\n- openai_table2html,\n- openai_ner\n\nExample:\n{\n "name": "Prompter",\n "type": "prompter",\n "subtype": "<subtype>",\n "settings": {}\n}\n\n\nEmbedder node\nAn Embedder node has a type of embed\n\nAllowed values for subtype and model_name include:\n\n- "subtype": "azure_openai"\n - "model_name": "text-embedding-3-small"\n - "model_name": "text-embedding-3-large"\n - "model_name": "text-embedding-ada-002"\n- "subtype": "bedrock"\n - "model_name": "amazon.titan-embed-text-v2:0"\n - "model_name": "amazon.titan-embed-text-v1"\n - "model_name": "amazon.titan-embed-image-v1"\n - "model_name": "cohere.embed-english-v3"\n - "model_name": "cohere.embed-multilingual-v3"\n- "subtype": "togetherai":\n - "model_name": "togethercomputer/m2-bert-80M-2k-retrieval"\n - "model_name": "togethercomputer/m2-bert-80M-8k-retrieval"\n - "model_name": "togethercomputer/m2-bert-80M-32k-retrieval"\n\nExample:\n{\n "name": "Embedder",\n "type": "embed",\n "subtype": "<subtype>",\n "settings": {\n "model_name": "<model-name>"\n }\n}\n', 'inputSchema': {'type': 'object', '$defs': {'Schedule': {'enum': ['every 15 minutes', 'every hour', 'every 2 hours', 'every 4 hours', 'every 6 hours', 'every 8 hours', 'every 10 hours', 'every 12 hours', 'daily', 'weekly', 'monthly'], 'type': 'string', 'title': 'Schedule'}, 'WorkflowType': {'enum': ['basic', 'advanced', 'platinum', 'custom'], 'type': 'string', 'title': 'WorkflowType'}, 'Nullable_str_': {'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'Nullable_bool_': {'anyOf': [{'type': 'boolean'}, {'type': 'null'}]}, 'Nullable_Schedule_': {'anyOf': [{'$ref': '#/$defs/Schedule'}, {'type': 'null'}]}, 'WorkflowNodeTypedDict': {'type': 'object', 'title': 'WorkflowNodeTypedDict', 'required': ['name', 'subtype', 'type'], 'properties': {'id': {'$ref': '#/$defs/Nullable_str_'}, 'name': {'type': 'string', 'title': 'Name'}, 'type': {'type': 'string', 'title': 'Type'}, 'subtype': {'type': 'string', 'title': 'Subtype'}, 'settings': {'$ref': '#/$defs/Nullable_Dict_str__Any__'}}}, 'CreateWorkflowTypedDict': {'type': 'object', 'title': 'CreateWorkflowTypedDict', 'required': ['name', 'workflow_type'], 'properties': {'name': {'type': 'string', 'title': 'Name'}, 'schedule': {'$ref': '#/$defs/Nullable_Schedule_'}, 'source_id': {'$ref': '#/$defs/Nullable_str_'}, 'reprocess_all': {'$ref': '#/$defs/Nullable_bool_'}, 'workflow_type': {'$ref': '#/$defs/WorkflowType'}, 'destination_id': {'$ref': '#/$defs/Nullable_str_'}, 'workflow_nodes': {'$ref': '#/$defs/Nullable_List_WorkflowNodeTypedDict__'}}}, 'Nullable_Dict_str__Any__': {'anyOf': [{'type': 'object', 'additionalProperties': True}, {'type': 'null'}]}, 'Nullable_List_WorkflowNodeTypedDict__': {'anyOf': [{'type': 'array', 'items': {'$ref': '#/$defs/WorkflowNodeTypedDict'}}, {'type': 'null'}]}}, 'title': 'create_workflowArguments', 'required': ['workflow_config'], 'properties': {'workflow_config': {'$ref': '#/$defs/CreateWorkflowTypedDict'}}}}, {'name': 'run_workflow', 'description': 'Run a specific workflow.\n\n Args:\n workflow_id: ID of the workflow to run\n\n Returns:\n String containing the response from the workflow execution\n ', 'inputSchema': {'type': 'object', 'title': 'run_workflowArguments', 'required': ['workflow_id'], 'properties': {'workflow_id': {'type': 'string', 'title': 'Workflow Id'}}}}, {'name': 'update_workflow', 'description': 'Update an existing workflow.\n\n Args:\n workflow_id: ID of the workflow to update\n workflow_config: A Typed Dictionary containing required fields (destination_id,\n name, source_id, workflow_type) and non-required fields (schedule, and workflow_nodes)\n\n Returns:\n String containing the updated workflow information\n ', 'inputSchema': {'type': 'object', '$defs': {'Schedule': {'enum': ['every 15 minutes', 'every hour', 'every 2 hours', 'every 4 hours', 'every 6 hours', 'every 8 hours', 'every 10 hours', 'every 12 hours', 'daily', 'weekly', 'monthly'], 'type': 'string', 'title': 'Schedule'}, 'WorkflowType': {'enum': ['basic', 'advanced', 'platinum', 'custom'], 'type': 'string', 'title': 'WorkflowType'}, 'Nullable_str_': {'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'Nullable_bool_': {'anyOf': [{'type': 'boolean'}, {'type': 'null'}]}, 'Nullable_Schedule_': {'anyOf': [{'$ref': '#/$defs/Schedule'}, {'type': 'null'}]}, 'WorkflowNodeTypedDict': {'type': 'object', 'title': 'WorkflowNodeTypedDict', 'required': ['name', 'subtype', 'type'], 'properties': {'id': {'$ref': '#/$defs/Nullable_str_'}, 'name': {'type': 'string', 'title': 'Name'}, 'type': {'type': 'string', 'title': 'Type'}, 'subtype': {'type': 'string', 'title': 'Subtype'}, 'settings': {'$ref': '#/$defs/Nullable_Dict_str__Any__'}}}, 'CreateWorkflowTypedDict': {'type': 'object', 'title': 'CreateWorkflowTypedDict', 'required': ['name', 'workflow_type'], 'properties': {'name': {'type': 'string', 'title': 'Name'}, 'schedule': {'$ref': '#/$defs/Nullable_Schedule_'}, 'source_id': {'$ref': '#/$defs/Nullable_str_'}, 'reprocess_all': {'$ref': '#/$defs/Nullable_bool_'}, 'workflow_type': {'$ref': '#/$defs/WorkflowType'}, 'destination_id': {'$ref': '#/$defs/Nullable_str_'}, 'workflow_nodes': {'$ref': '#/$defs/Nullable_List_WorkflowNodeTypedDict__'}}}, 'Nullable_Dict_str__Any__': {'anyOf': [{'type': 'object', 'additionalProperties': True}, {'type': 'null'}]}, 'Nullable_List_WorkflowNodeTypedDict__': {'anyOf': [{'type': 'array', 'items': {'$ref': '#/$defs/WorkflowNodeTypedDict'}}, {'type': 'null'}]}}, 'title': 'update_workflowArguments', 'required': ['workflow_id', 'workflow_config'], 'properties': {'workflow_id': {'type': 'string', 'title': 'Workflow Id'}, 'workflow_config': {'$ref': '#/$defs/CreateWorkflowTypedDict'}}}}, {'name': 'delete_workflow', 'description': 'Delete a specific workflow.\n\n Args:\n workflow_id: ID of the workflow to delete\n\n Returns:\n String containing the response from the workflow deletion\n ', 'inputSchema': {'type': 'object', 'title': 'delete_workflowArguments', 'required': ['workflow_id'], 'properties': {'workflow_id': {'type': 'string', 'title': 'Workflow Id'}}}}, {'name': 'list_jobs', 'description': '\n List jobs via the Unstructured API.\n\n Args:\n workflow_id: Optional workflow ID to filter by\n status: Optional job status to filter by\n\n Returns:\n String containing the list of jobs\n ', 'inputSchema': {'type': 'object', '$defs': {'JobStatus': {'enum': ['SCHEDULED', 'IN_PROGRESS', 'COMPLETED', 'STOPPED', 'FAILED'], 'type': 'string', 'title': 'JobStatus'}}, 'title': 'list_jobsArguments', 'properties': {'status': {'anyOf': [{'$ref': '#/$defs/JobStatus'}, {'type': 'string'}, {'type': 'null'}], 'title': 'Status', 'default': None}, 'workflow_id': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Workflow Id', 'default': None}}}}, {'name': 'get_job_info', 'description': 'Get detailed information about a specific job.\n\n Args:\n job_id: ID of the job to get information for\n\n Returns:\n String containing the job information\n ', 'inputSchema': {'type': 'object', 'title': 'get_job_infoArguments', 'required': ['job_id'], 'properties': {'job_id': {'type': 'string', 'title': 'Job Id'}}}}, {'name': 'cancel_job', 'description': 'Delete a specific job.\n\n Args:\n job_id: ID of the job to cancel\n\n Returns:\n String containing the response from the job cancellation\n ', 'inputSchema': {'type': 'object', 'title': 'cancel_jobArguments', 'required': ['job_id'], 'properties': {'job_id': {'type': 'string', 'title': 'Job Id'}}}}]
@tdergouzi/mcp-server-web3
Web3 Function Plugin Server
Integrate web3 functionalities into your applications seamlessly. Leverage blockchain capabilities and access decentralized data through a standardized interface. Enhance your projects with powerful web3 tools and resources effortlessly.
2025-04-08T01:48:56.550Z
0
https://smithery.ai/server/@tdergouzi/mcp-server-web3
false
null
{ "scanPassed": true }
[{'name': 'get_token_price', 'description': 'Get token current price', 'inputSchema': {'type': 'object', 'required': ['symbol'], 'properties': {'symbol': {'type': 'string', 'description': 'The token symbol'}}}}]
@ai-zerolab/mcp-email-server
Email Server
Provide IMAP and SMTP functionalities through a standardized server interface.
2025-02-24T14:00:42.140Z
0
https://smithery.ai/server/@ai-zerolab/mcp-email-server
false
null
{ "scanPassed": true }
[{'name': 'list_available_accounts', 'description': '', 'inputSchema': {'type': 'object', 'title': 'list_available_accountsArguments', 'properties': {}}}, {'name': 'add_email_account', 'description': '', 'inputSchema': {'type': 'object', '$defs': {'EmailServer': {'type': 'object', 'title': 'EmailServer', 'required': ['user_name', 'password', 'host', 'port'], 'properties': {'host': {'type': 'string', 'title': 'Host'}, 'port': {'type': 'integer', 'title': 'Port'}, 'use_ssl': {'type': 'boolean', 'title': 'Use Ssl', 'default': True}, 'password': {'type': 'string', 'title': 'Password'}, 'start_ssl': {'type': 'boolean', 'title': 'Start Ssl', 'default': False}, 'user_name': {'type': 'string', 'title': 'User Name'}}}, 'EmailSettings': {'type': 'object', 'title': 'EmailSettings', 'required': ['account_name', 'full_name', 'email_address', 'incoming', 'outgoing'], 'properties': {'incoming': {'$ref': '#/$defs/EmailServer'}, 'outgoing': {'$ref': '#/$defs/EmailServer'}, 'full_name': {'type': 'string', 'title': 'Full Name'}, 'created_at': {'type': 'string', 'title': 'Created At', 'format': 'date-time'}, 'updated_at': {'type': 'string', 'title': 'Updated At', 'format': 'date-time'}, 'description': {'type': 'string', 'title': 'Description', 'default': ''}, 'account_name': {'type': 'string', 'title': 'Account Name'}, 'email_address': {'type': 'string', 'title': 'Email Address'}}}}, 'title': 'add_email_accountArguments', 'required': ['email'], 'properties': {'email': {'$ref': '#/$defs/EmailSettings'}}}}, {'name': 'page_email', 'description': 'Paginate emails, page start at 1, before and since as UTC datetime.', 'inputSchema': {'type': 'object', 'title': 'page_emailArguments', 'required': ['account_name'], 'properties': {'body': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Body', 'default': None}, 'page': {'type': 'integer', 'title': 'Page', 'default': 1}, 'text': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Text', 'default': None}, 'since': {'anyOf': [{'type': 'string', 'format': 'date-time'}, {'type': 'null'}], 'title': 'Since', 'default': None}, 'before': {'anyOf': [{'type': 'string', 'format': 'date-time'}, {'type': 'null'}], 'title': 'Before', 'default': None}, 'subject': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Subject', 'default': None}, 'page_size': {'type': 'integer', 'title': 'Page Size', 'default': 10}, 'to_address': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'To Address', 'default': None}, 'account_name': {'type': 'string', 'title': 'Account Name'}, 'from_address': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'From Address', 'default': None}}}}, {'name': 'send_email', 'description': '', 'inputSchema': {'type': 'object', 'title': 'send_emailArguments', 'required': ['account_name', 'recipient', 'subject', 'body'], 'properties': {'body': {'type': 'string', 'title': 'Body'}, 'subject': {'type': 'string', 'title': 'Subject'}, 'recipient': {'type': 'string', 'title': 'Recipient'}, 'account_name': {'type': 'string', 'title': 'Account Name'}}}}]
@axap288/alibaba-cloud-ops-mcp-server
Alibaba Cloud Operations Server
Manage and operate Alibaba Cloud resources efficiently by running commands, starting, stopping, and rebooting instances, managing databases, buckets, and monitoring metrics. Integrate Alibaba Cloud operations seamlessly into your workflows with ready-to-use tools for ECS, VPC, RDS, OSS, and CloudMonitor services. Simplify cloud resource management and monitoring with this comprehensive MCP server.
2025-04-23T06:58:14.796Z
0
https://smithery.ai/server/@axap288/alibaba-cloud-ops-mcp-server
false
null
{ "scanPassed": false }
[{'name': 'RunCommand', 'description': '批量在多台ECS实例上运行云助手命令,适用于需要同时管理多台ECS实例的场景,如应用程序管理和资源标记操作等。', 'inputSchema': {'type': 'object', 'title': 'RunCommandArguments', 'required': ['InstanceIds', 'Command'], 'properties': {'Command': {'type': 'string', 'title': 'Command', 'description': 'Content of the command executed on the ECS instance'}, 'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'CommandType': {'type': 'string', 'title': 'Commandtype', 'default': 'RunShellScript', 'description': 'The type of command executed on the ECS instance, optional value:RunShellScript,RunPythonScript,RunPerlScript,RunBatScript,RunPowerShellScript'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud ECS instance ID List'}}}}, {'name': 'StartInstances', 'description': '批量启动ECS实例,适用于需要同时管理和启动多台ECS实例的场景,例如应用部署和高可用性场景。', 'inputSchema': {'type': 'object', 'title': 'StartInstancesArguments', 'required': ['InstanceIds'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud ECS instance ID List'}}}}, {'name': 'StopInstances', 'description': '批量停止ECS实例,适用于需要同时管理和停止多台ECS实例的场景。', 'inputSchema': {'type': 'object', 'title': 'StopInstancesArguments', 'required': ['InstanceIds'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'ForeceStop': {'type': 'boolean', 'title': 'Forecestop', 'default': False, 'description': 'Is forced shutdown required'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud ECS instance ID List'}}}}, {'name': 'RebootInstances', 'description': '批量重启ECS实例,适用于需要同时管理和重启多台ECS实例的场景。', 'inputSchema': {'type': 'object', 'title': 'RebootInstancesArguments', 'required': ['InstanceIds'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'ForeceStop': {'type': 'boolean', 'title': 'Forecestop', 'default': False, 'description': 'Is forced shutdown required'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud ECS instance ID List'}}}}, {'name': 'RunInstances', 'description': '批量创建ECS实例,适用于需要同时创建多台ECS实例的场景,例如应用部署和高可用性场景。', 'inputSchema': {'type': 'object', 'title': 'RunInstancesArguments', 'required': ['ImageId', 'InstanceType', 'SecurityGroupId', 'VSwitchId'], 'properties': {'Amount': {'type': 'integer', 'title': 'Amount', 'default': 1, 'description': 'Number of ECS instances'}, 'ImageId': {'type': 'string', 'title': 'Imageid', 'description': 'Image ID'}, 'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'VSwitchId': {'type': 'string', 'title': 'Vswitchid', 'description': 'VSwitch ID'}, 'InstanceName': {'type': 'string', 'title': 'Instancename', 'default': '', 'description': 'Instance Name'}, 'InstanceType': {'type': 'string', 'title': 'Instancetype', 'description': 'Instance Type'}, 'SecurityGroupId': {'type': 'string', 'title': 'Securitygroupid', 'description': 'SecurityGroup ID'}}}}, {'name': 'ResetPassword', 'description': '批量修改ECS实例的密码,请注意,本操作将会重启ECS实例', 'inputSchema': {'type': 'object', 'title': 'ResetPasswordArguments', 'required': ['InstanceIds', 'Password'], 'properties': {'Password': {'type': 'string', 'title': 'Password', 'description': 'The password of the ECS instance must be 8-30 characters and must contain only the following characters: lowercase letters, uppercase letters, numbers, and special characters only.()~!@#$%^&*-_+=(40:<>,?/'}, 'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud ECS instance ID List'}}}}, {'name': 'ReplaceSystemDisk', 'description': '批量替换ECS实例的系统盘,更换操作系统', 'inputSchema': {'type': 'object', 'title': 'ReplaceSystemDiskArguments', 'required': ['InstanceIds', 'ImageId'], 'properties': {'ImageId': {'type': 'string', 'title': 'Imageid', 'description': 'Image ID'}, 'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud ECS instance ID List'}}}}, {'name': 'StartRDSInstances', 'description': '批量启动RDS实例,适用于需要同时管理和启动多台RDS实例的场景,例如应用部署和高可用性场景。', 'inputSchema': {'type': 'object', 'title': 'StartRDSInstancesArguments', 'required': ['InstanceIds'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud ECS instance ID List'}}}}, {'name': 'StopRDSInstances', 'description': '批量停止RDS实例,适用于需要同时管理和停止多台RDS实例的场景。', 'inputSchema': {'type': 'object', 'title': 'StopRDSInstancesArguments', 'required': ['InstanceIds'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud RDS instance ID List'}}}}, {'name': 'RebootRDSInstances', 'description': '批量重启RDS实例,适用于需要同时管理和重启多台RDS实例的场景。', 'inputSchema': {'type': 'object', 'title': 'RebootRDSInstancesArguments', 'required': ['InstanceIds'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud RDS instance ID List'}}}}, {'name': 'GetCpuUsageData', 'description': '获取ECS实例的CPU使用率数据', 'inputSchema': {'type': 'object', 'title': 'GetCpuUsageDataArguments', 'required': ['InstanceIds'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud ECS instance ID List'}}}}, {'name': 'GetCpuLoadavgData', 'description': '获取CPU一分钟平均负载指标数据', 'inputSchema': {'type': 'object', 'title': 'GetCpuLoadavgDataArguments', 'required': ['InstanceIds'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud ECS instance ID List'}}}}, {'name': 'GetCpuloadavg5mData', 'description': '获取CPU五分钟平均负载指标数据', 'inputSchema': {'type': 'object', 'title': 'GetCpuloadavg5mDataArguments', 'required': ['InstanceIds'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud ECS instance ID List'}}}}, {'name': 'GetCpuloadavg15mData', 'description': '获取CPU十五分钟平均负载指标数据', 'inputSchema': {'type': 'object', 'title': 'GetCpuloadavg15mDataArguments', 'required': ['InstanceIds'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud ECS instance ID List'}}}}, {'name': 'GetMemUsedData', 'description': '获取内存使用量指标数据', 'inputSchema': {'type': 'object', 'title': 'GetMemUsedDataArguments', 'required': ['InstanceIds'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud ECS instance ID List'}}}}, {'name': 'GetMemUsageData', 'description': '获取内存利用率指标数据', 'inputSchema': {'type': 'object', 'title': 'GetMemUsageDataArguments', 'required': ['InstanceIds'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud ECS instance ID List'}}}}, {'name': 'GetDiskUsageData', 'description': '获取磁盘利用率指标数据', 'inputSchema': {'type': 'object', 'title': 'GetDiskUsageDataArguments', 'required': ['InstanceIds'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud ECS instance ID List'}}}}, {'name': 'GetDiskTotalData', 'description': '获取磁盘分区总容量指标数据', 'inputSchema': {'type': 'object', 'title': 'GetDiskTotalDataArguments', 'required': ['InstanceIds'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud ECS instance ID List'}}}}, {'name': 'GetDiskUsedData', 'description': '获取磁盘分区使用量指标数据', 'inputSchema': {'type': 'object', 'title': 'GetDiskUsedDataArguments', 'required': ['InstanceIds'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'InstanceIds': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Instanceids', 'description': 'AlibabaCloud ECS instance ID List'}}}}, {'name': 'ListBuckets', 'description': '列出指定区域的所有OSS存储空间。', 'inputSchema': {'type': 'object', 'title': 'ListBucketsArguments', 'properties': {'Prefix': {'type': 'string', 'title': 'Prefix', 'default': None, 'description': 'AlibabaCloud OSS Bucket Name prefix'}, 'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}}}}, {'name': 'ListObjects', 'description': '获取指定OSS存储空间中的所有文件信息。', 'inputSchema': {'type': 'object', 'title': 'ListObjectsArguments', 'required': ['BucketName'], 'properties': {'Prefix': {'type': 'string', 'title': 'Prefix', 'default': None, 'description': 'AlibabaCloud OSS Bucket Name prefix'}, 'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'BucketName': {'type': 'string', 'title': 'Bucketname', 'description': 'AlibabaCloud OSS Bucket Name'}}}}, {'name': 'PutBucket', 'description': '创建一个新的OSS存储空间。', 'inputSchema': {'type': 'object', 'title': 'PutBucketArguments', 'required': ['BucketName'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'BucketName': {'type': 'string', 'title': 'Bucketname', 'description': 'AlibabaCloud OSS Bucket Name'}, 'StorageClass': {'type': 'string', 'title': 'Storageclass', 'default': 'Standard', 'description': 'The Storage Type of AlibabaCloud OSS Bucket, The value range is as follows: Standard (default): standard storage, IA: infrequent access, Archive: archive storage, ColdArchive: cold archive storage, DeepColdArchive: deep cold archive storage'}, 'DataRedundancyType': {'type': 'string', 'title': 'Dataredundancytype', 'default': 'LRS', 'description': 'The data disaster recovery type of AlibabaCloud OSS Bucket, LRS (default): Locally redundant LRS, which stores your data redundantly on different storage devices in the same availability zone. ZRS: Intra-city redundant ZRS, which uses a multi-availability zone (AZ) mechanism to store your data redundantly in three availability zones in the same region.'}}}}, {'name': 'DeleteBucket', 'description': '删除指定的OSS存储空间。', 'inputSchema': {'type': 'object', 'title': 'DeleteBucketArguments', 'required': ['BucketName'], 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': 'cn-hangzhou', 'description': 'AlibabaCloud region ID'}, 'BucketName': {'type': 'string', 'title': 'Bucketname', 'description': 'AlibabaCloud OSS Bucket Name'}}}}, {'name': 'DescribeInstances', 'description': '本接口支持根据不同请求条件查询实例列表,并关联查询实例的详细信息。', 'inputSchema': {'type': 'object', 'title': 'DescribeInstancesArguments', 'required': ['RegionId'], 'properties': {'Tag': {'type': 'array', 'items': {}, 'title': 'Tag', 'default': None, 'description': '标签列表。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: array,参数示例:'}, 'VpcId': {'type': 'string', 'title': 'Vpcid', 'default': None, 'description': '专有网络VPC ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:v-bp67acfmxazb4p****'}, 'DryRun': {'type': 'boolean', 'title': 'Dryrun', 'default': None, 'description': '是否只预检此次请求。取值范围:\n\n- true:发送检查请求,不会查询资源状况。检查项包括AccessKey是否有效、RAM用户的授权情况和是否填写了必需参数。如果检查不通过,则返回对应错误。如果检查通过,会返回错误码DryRunOperation。 \n- false:发送正常请求,通过检查后返回2XX HTTP状态码并直接查询资源状况。 \n\n默认值:false。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:false'}, 'Status': {'type': 'string', 'title': 'Status', 'default': None, 'description': '实例状态。取值范围: \n\n- Pending:创建中。\n- Running:运行中。\n- Starting:启动中。\n- Stopping:停止中。\n- Stopped:已停止。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:Running'}, 'ZoneId': {'type': 'string', 'title': 'Zoneid', 'default': None, 'description': '可用区ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cn-hangzhou-g'}, 'ImageId': {'type': 'string', 'title': 'Imageid', 'default': None, 'description': '镜像ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:m-bp67acfmxazb4p****'}, 'PageSize': {'type': 'integer', 'title': 'Pagesize', 'default': None, 'description': '> 该参数即将下线,推荐您使用NextToken与MaxResults完成分页查询操作。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:10'}, 'RegionId': {'type': 'string', 'title': 'Regionid', 'description': '实例所属的地域ID。您可以调用[DescribeRegions](~~25609~~)查看最新的阿里云地域列表。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cn-hangzhou'}, 'NextToken': {'type': 'string', 'title': 'Nexttoken', 'default': None, 'description': '查询凭证(Token),取值为上一次API调用返回的`NextToken`参数值。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:caeba0bbb2be03f84eb48b699f0a4883'}, 'VSwitchId': {'type': 'string', 'title': 'Vswitchid', 'default': None, 'description': '交换机ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:vsw-bp67acfmxazb4p****'}, 'HttpTokens': {'type': 'string', 'title': 'Httptokens', 'default': None, 'description': '访问实例元数据时是否强制使用加固模式(IMDSv2)。取值范围:\n- optional:不强制使用。\n- required:强制使用。设置该取值后,普通模式无法访问实例元数据。\n\n默认值:optional。\n>有关访问实例元数据模式的更多信息,请参见[实例元数据访问模式](~~150575~~)。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:optional'}, 'LockReason': {'type': 'string', 'title': 'Lockreason', 'default': None, 'description': '资源被锁定的原因。取值范围:\n\n- financial:因欠费被锁定。\n\n- security:因安全原因被锁定。\n\n- Recycling:抢占式实例的待释放锁定状态。\n\n- dedicatedhostfinancial:因为专有宿主机欠费导致ECS实例被锁定。\n\n- refunded:因退款被锁定。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:security'}, 'MaxResults': {'type': 'integer', 'title': 'Maxresults', 'default': None, 'description': '分页查询时每页行数。最大值为100。\n\n默认值:\n\n- 当不设置值或设置的值小于10时,默认值为10。\n- 当设置的值大于100时,默认值为100。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:10'}, 'PageNumber': {'type': 'integer', 'title': 'Pagenumber', 'default': None, 'description': '> 该参数即将下线,推荐您使用NextToken与MaxResults完成分页查询操作。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:1'}, 'InstanceIds': {'type': 'string', 'title': 'Instanceids', 'default': None, 'description': '实例ID。取值可以由多个实例ID组成一个JSON数组,最多支持100个ID,ID之间用半角逗号(,)隔开。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:["i-bp67acfmxazb4p****", "i-bp67acfmxazb4p****", … "i-bp67acfmxazb4p****"]'}, 'IoOptimized': {'type': 'boolean', 'title': 'Iooptimized', 'default': None, 'description': '是否是I/O优化型实例。取值范围:\n\n- true:是。\n- false:否。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:true'}, 'Ipv6Address': {'type': 'array', 'items': {}, 'title': 'Ipv6Address', 'default': None, 'description': '为弹性网卡指定的IPv6地址。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: array,参数示例:'}, 'KeyPairName': {'type': 'string', 'title': 'Keypairname', 'default': None, 'description': '实例使用的SSH密钥对名称。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:KeyPairNameTest'}, 'EipAddresses': {'type': 'string', 'title': 'Eipaddresses', 'default': None, 'description': '实例的弹性公网IP列表。当InstanceNetworkType=vpc时该参数生效,取值可以由多个IP组成一个JSON数组,最多支持100个IP,IP之间用半角逗号(,)隔开。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:["42.1.1.**", "42.1.2.**", … "42.1.10.**"]'}, 'HpcClusterId': {'type': 'string', 'title': 'Hpcclusterid', 'default': None, 'description': '实例所在的HPC集群ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:hpc-bp67acfmxazb4p****'}, 'HttpEndpoint': {'type': 'string', 'title': 'Httpendpoint', 'default': None, 'description': '是否启用实例元数据的访问通道。取值范围:\n- enabled:启用。\n- disabled:禁用。\n\n默认值:enabled。\n>有关实例元数据的更多信息,请参见[实例元数据概述](~~49122~~)。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:enabled'}, 'InstanceName': {'type': 'string', 'title': 'Instancename', 'default': None, 'description': '实例名称,支持使用通配符*进行模糊搜索。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:Test'}, 'InstanceType': {'type': 'string', 'title': 'Instancetype', 'default': None, 'description': '实例的规格。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:ecs.g5.large'}, 'NeedSaleCycle': {'type': 'boolean', 'title': 'Needsalecycle', 'default': None, 'description': '>该参数正在邀测中,暂不支持使用。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:false'}, 'DeviceAvailable': {'type': 'boolean', 'title': 'Deviceavailable', 'default': None, 'description': '>该参数正在邀测中,暂不支持使用。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:false'}, 'RdmaIpAddresses': {'type': 'string', 'title': 'Rdmaipaddresses', 'default': None, 'description': 'HPC实例的RDMA网络IP。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:10.10.10.102'}, 'ResourceGroupId': {'type': 'string', 'title': 'Resourcegroupid', 'default': None, 'description': '实例所在的企业资源组ID。使用该参数过滤资源时,资源数量不能超过1000个。\n\n>不支持默认资源组过滤。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:rg-bp67acfmxazb4p****'}, 'SecurityGroupId': {'type': 'string', 'title': 'Securitygroupid', 'default': None, 'description': '实例所属的安全组。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:sg-bp67acfmxazb4p****'}, 'InnerIpAddresses': {'type': 'string', 'title': 'Inneripaddresses', 'default': None, 'description': '经典网络类型实例的内网IP列表。当InstanceNetworkType=classic时生效,取值可以由多个IP组成一个JSON数组,最多支持100个IP,IP之间用半角逗号(,)隔开。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:["10.1.1.1", "10.1.2.1", … "10.1.10.1"]'}, 'PublicIpAddresses': {'type': 'string', 'title': 'Publicipaddresses', 'default': None, 'description': '实例的公网IP列表。取值可以由多个IP组成一个JSON数组,最多支持100个IP,IP之间用半角逗号(,)隔开。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:["42.1.1.**", "42.1.2.**", … "42.1.10.**"]'}, 'InstanceChargeType': {'type': 'string', 'title': 'Instancechargetype', 'default': None, 'description': '实例的计费方式。取值范围: \n \n- PostPaid:按量付费。 \n- PrePaid:包年包月。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:PostPaid'}, 'InstanceTypeFamily': {'type': 'string', 'title': 'Instancetypefamily', 'default': None, 'description': '实例的规格族。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:ecs.g5'}, 'InternetChargeType': {'type': 'string', 'title': 'Internetchargetype', 'default': None, 'description': '公网带宽计费方式。取值范围:\n\n- PayByBandwidth:按固定带宽计费。\n- PayByTraffic:按使用流量计费。\n\n> **按使用流量计费**模式下的出入带宽峰值都是带宽上限,不作为业务承诺指标。当出现资源争抢时,带宽峰值可能会受到限制。如果您的业务需要有带宽的保障,请使用**按固定带宽计费**模式。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:PayByTraffic'}, 'PrivateIpAddresses': {'type': 'string', 'title': 'Privateipaddresses', 'default': None, 'description': 'VPC网络类型实例的私有IP。当InstanceNetworkType=vpc时生效,取值可以由多个IP组成一个JSON数组,最多支持100个IP,IP之间用半角逗号(,)隔开。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:["172.16.1.1", "172.16.2.1", … "172.16.10.1"]'}, 'InstanceNetworkType': {'type': 'string', 'title': 'Instancenetworktype', 'default': None, 'description': '实例网络类型。取值范围:\n\n- classic:经典网络。\n- vpc:专有网络VPC。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:vpc'}, 'AdditionalAttributes': {'type': 'array', 'items': {}, 'title': 'Additionalattributes', 'default': None, 'description': '实例其他属性列表。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: array,参数示例:META_OPTIONS'}, 'HttpPutResponseHopLimit': {'type': 'integer', 'title': 'Httpputresponsehoplimit', 'default': None, 'description': '>该参数暂未开放使用。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:0'}}}}, {'name': 'DescribeRegions', 'description': '根据计费方式、资源类型等参数查询地域信息列表。', 'inputSchema': {'type': 'object', 'title': 'DescribeRegionsArguments', 'properties': {'RegionId': {'type': 'string', 'title': 'Regionid', 'default': None, 'description': '地域ID'}, 'ResourceType': {'type': 'string', 'title': 'Resourcetype', 'default': None, 'description': '资源类型。取值范围:\n\n- instance:ECS实例。\n- disk:磁盘。\n- reservedinstance:预留实例券。\n- scu:存储容量单位包。\n\n默认值:instance。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:instance'}, 'AcceptLanguage': {'type': 'string', 'title': 'Acceptlanguage', 'default': None, 'description': '根据汉语、英语和日语筛选返回结果。更多详情,请参见[RFC 7231](https://tools.ietf.org/html/rfc7231)。取值范围: \n \n- zh-CN:简体中文。\n- zh-TW:繁体中文。\n- en-US:英文。\n- ja:日文。\n- fr:法语。\n- de:德语。\n- ko:韩语。\n\n默认值:zh-CN。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:zh-CN'}, 'InstanceChargeType': {'type': 'string', 'title': 'Instancechargetype', 'default': None, 'description': '实例的计费方式,更多信息,请参见[计费概述](~~25398~~)。取值范围:\n\n- PrePaid:包年包月。此时,请确认自己的账号支持余额支付或者信用支付,否则将报错InvalidPayMethod。\n- PostPaid:按量付费。\n- SpotWithPriceLimit:设置上限价格。\n- SpotAsPriceGo:系统自动出价,最高按量付费价格。\n\n默认值:PostPaid。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:PrePaid'}}}}, {'name': 'DescribeZones', 'description': '根据地域ID、计费方式等参数查询可用区信息列表。', 'inputSchema': {'type': 'object', 'title': 'DescribeZonesArguments', 'required': ['RegionId'], 'properties': {'Verbose': {'type': 'boolean', 'title': 'Verbose', 'default': None, 'description': '是否展示详细信息。\n\n- true:展示。\n- false:不展示。\n\n默认值:true。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:false'}, 'RegionId': {'type': 'string', 'title': 'Regionid', 'description': '可用区所在的地域ID。您可以调用[DescribeRegions](~~25609~~)查看最新的阿里云地域列表。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cn-hangzhou'}, 'SpotStrategy': {'type': 'string', 'title': 'Spotstrategy', 'default': None, 'description': '按量付费实例的竞价策略。当`InstanceChargeType=PostPaid`时,您可以传入该参数。更多信息,请参见[抢占式实例](~~52088~~)。取值范围:\n \n- NoSpot:正常按量付费实例。\n- SpotWithPriceLimit:设置上限价格的抢占式实例。\n- SpotAsPriceGo:系统自动出价,最高按量付费价格。\n\n默认值:NoSpot。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:NoSpot'}, 'AcceptLanguage': {'type': 'string', 'title': 'Acceptlanguage', 'default': None, 'description': '根据汉语、英语和日语筛选返回结果。更多信息,请参见[RFC 7231](https://tools.ietf.org/html/rfc7231)。取值范围: \n \n- zh-CN:简体中文。\n- zh-TW:繁体中文。\n- en-US:英文。\n- ja:日文。\n- fr:法语。\n- de:德语。\n- ko:韩语。\n\n默认值:zh-CN。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:zh-CN'}, 'InstanceChargeType': {'type': 'string', 'title': 'Instancechargetype', 'default': None, 'description': '可用区里支持的资源计费方式。更多信息,请参见[计费概述](~~25398~~)。取值范围: \n\n- PrePaid:包年包月。\n- PostPaid:按量付费。\n\n默认值:PostPaid。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:PostPaid'}}}}, {'name': 'DescribeAccountAttributes', 'description': '查询您在一个阿里云地域下能创建的ECS资源配额。包括您能创建的安全组数量、弹性网卡数量、按量付费vCPU核数、抢占式实例vCPU核数、按量付费云盘总容量配额、专用宿主机数量、网络类型以及账号是否已完成实名认证。', 'inputSchema': {'type': 'object', 'title': 'DescribeAccountAttributesArguments', 'required': ['RegionId'], 'properties': {'ZoneId': {'type': 'string', 'title': 'Zoneid', 'default': None, 'description': '可用区ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cn-hangzhou-b'}, 'RegionId': {'type': 'string', 'title': 'Regionid', 'description': '地域ID。您可以调用[DescribeRegions](~~25609~~)查看最新的阿里云地域列表。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cn-hangzhou'}, 'AttributeName': {'type': 'array', 'items': {}, 'title': 'Attributename', 'default': None, 'description': '查询某类资源在指定地域下的使用配额,N的取值范围为1~8。取值范围:\n\n- instance-network-type:可选择的网络类型。\n- max-security-groups:安全组数量。\n- max-elastic-network-interfaces:弹性网卡的数量。\n- max-postpaid-instance-vcpu-count:按量付费实例的vCPU核数上限。\n- max-spot-instance-vcpu-count:抢占式实例vCPU核数上限。\n- used-postpaid-instance-vcpu-count:已使用按量付费实例的vCPU核数。\n- used-spot-instance-vcpu-count:已使用抢占式实例vCPU核数。\n- max-postpaid-yundisk-capacity:用作数据盘的按量付费云盘的总容量上限。(该参数值已弃用)\n- used-postpaid-yundisk-capacity:已使用的用作数据盘的按量付费云盘容量。(该参数值已弃用)\n- max-dedicated-hosts:专用宿主机数量。\n- supported-postpaid-instance-types:按量付费I/O优化实例规格。\n- max-axt-command-count:云助手命令的数量。\n- max-axt-invocation-daily:每天可以执行的云助手命令次数。\n- real-name-authentication:账号是否完成了实名认证。\n\n > 您只有完成了实名认证才可以在中国内地地域中创建ECS实例。\n- max-cloud-assistant-activation-count:可创建的云助手托管实例激活码数量上限。\n\n默认值为空。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: array,参数示例:max-security-groups'}}}}, {'name': 'DescribeAvailableResource', 'description': '查询可用区的资源库存状态。您可以在某一可用区创建实例(RunInstances)或者修改实例规格(ModifyInstanceSpec)时查询该可用区的资源库存状态。', 'inputSchema': {'type': 'object', 'title': 'DescribeAvailableResourceArguments', 'required': ['RegionId', 'DestinationResource'], 'properties': {'Cores': {'type': 'integer', 'title': 'Cores', 'default': None, 'description': '实例规格的vCPU内核数目。取值参见[实例规格族](~~25378~~)。\n\n当DestinationResource取值为InstanceType时,Cores才为有效参数。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:2'}, 'Scope': {'type': 'string', 'title': 'Scope', 'default': None, 'description': '预留实例券的范围。取值范围:\n \n- Region:地域级别。\n- Zone:可用区级别。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:Region'}, 'Memory': {'type': 'number', 'title': 'Memory', 'default': None, 'description': '实例规格的内存大小,单位为GiB。取值参见[实例规格族](~~25378~~)。\n\n当DestinationResource取值为InstanceType时,Memory才为有效参数。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: number,参数示例:8.0'}, 'ZoneId': {'type': 'string', 'title': 'Zoneid', 'default': None, 'description': '可用区ID。\n\n默认值:无。返回该地域(`RegionId`)下所有可用区符合查询条件的资源。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cn-hangzhou-e'}, 'RegionId': {'type': 'string', 'title': 'Regionid', 'description': '目标地域ID。您可以调用[DescribeRegions](~~25609~~)查看最新的阿里云地域列表。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cn-hangzhou'}, 'IoOptimized': {'type': 'string', 'title': 'Iooptimized', 'default': None, 'description': '是否为I/O优化实例。取值范围: \n \n- none:非I/O优化实例。\n- optimized:I/O优化实例。\n\n\n默认值:optimized。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:optimized'}, 'InstanceType': {'type': 'string', 'title': 'Instancetype', 'default': None, 'description': '实例规格。更多信息,请参见[实例规格族](~~25378~~),您也可以调用[DescribeInstanceTypes](~~25620~~)接口获得最新的规格表。\n\n参数InstanceType的取值方式请参见本文开头的**接口说明**。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:ecs.g5.large'}, 'ResourceType': {'type': 'string', 'title': 'Resourcetype', 'default': None, 'description': '资源类型。取值范围:\n\n- instance:ECS实例。\n- disk:云盘。\n- reservedinstance:预留实例券。\n- ddh:专有宿主机。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:instance'}, 'SpotDuration': {'type': 'integer', 'title': 'Spotduration', 'default': None, 'description': '抢占式实例的保留时长,单位为小时。 默认值:1。取值范围:\n- 1:创建后阿里云会保证实例运行1小时不会被自动释放;超过1小时后,系统会自动比较出价与市场价格、检查资源库存,来决定实例的持有和回收。\n- 0:创建后,阿里云不保证实例运行1小时,系统会自动比较出价与市场价格、检查资源库存,来决定实例的持有和回收。\n\n实例回收前5分钟阿里云会通过ECS系统事件向您发送通知。抢占式实例按秒计费,建议您结合具体任务执行耗时来选择合适的保留时长。\n\n> 当`InstanceChargeType`取值为`PostPaid`,并且`SpotStrategy`值为`SpotWithPriceLimit`或`SpotAsPriceGo`时该参数生效。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:1'}, 'SpotStrategy': {'type': 'string', 'title': 'Spotstrategy', 'default': None, 'description': '按量付费实例的竞价策略。取值范围: \n \n- NoSpot:正常按量付费实例。\n- SpotWithPriceLimit:设置上限价格的抢占式实例。\n- SpotAsPriceGo:系统自动出价,最高按量付费价格。\n\n默认值:NoSpot。\n\n当参数`InstanceChargeType`取值为`PostPaid`时,参数`SpotStrategy`才有效。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:NoSpot'}, 'DedicatedHostId': {'type': 'string', 'title': 'Dedicatedhostid', 'default': None, 'description': '专有宿主机ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:dh-bp165p6xk2tlw61e****'}, 'NetworkCategory': {'type': 'string', 'title': 'Networkcategory', 'default': None, 'description': '网络类型。取值范围: \n \n- vpc:专有网络。\n- classic:经典网络。\n 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:vpc'}, 'DataDiskCategory': {'type': 'string', 'title': 'Datadiskcategory', 'default': None, 'description': '数据盘类型。取值范围: \n \n- cloud:普通云盘。\n- cloud_efficiency:高效云盘。\n- cloud_ssd:SSD云盘。\n- ephemeral_ssd:本地SSD盘。\n- cloud_essd:ESSD云盘。\n- cloud_auto:ESSD AutoPL云盘。\n<props="china">\n- cloud_essd_entry:ESSD Entry云盘。\n</props> 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cloud_ssd'}, 'InstanceChargeType': {'type': 'string', 'title': 'Instancechargetype', 'default': None, 'description': '资源的计费方式。更多信息,请参见[计费概述](~~25398~~)。取值范围: \n \n- PrePaid:包年包月。 \n- PostPaid:按量付费。\n\n默认值:PostPaid。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:PrePaid'}, 'SystemDiskCategory': {'type': 'string', 'title': 'Systemdiskcategory', 'default': None, 'description': '系统盘类型。取值范围: \n \n- cloud:普通云盘。\n- cloud_efficiency:高效云盘。\n- cloud_ssd:SSD云盘。\n- ephemeral_ssd:本地SSD盘。\n- cloud_essd:ESSD云盘。\n- cloud_auto:ESSD AutoPL云盘。\n<props="china">\n- cloud_essd_entry:ESSD Entry云盘。\n</props>\n\n默认值:cloud_efficiency。\n\n> 参数ResourceType取值为instance、DestinationResource取值为DataDisk时,参数SystemDiskCategory是必选参数。如果未传递参数值,则以默认值生效。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cloud_ssd'}, 'DestinationResource': {'type': 'string', 'title': 'Destinationresource', 'description': '要查询的资源类型。取值范围: \n \n- Zone:可用区。\n- IoOptimized:I/O优化。\n- InstanceType:实例规格。\n- Network:网络类型。\n- ddh:专有宿主机。\n- SystemDisk:系统盘。\n- DataDisk:数据盘。\n\n>当DestinationResource取值为`SystemDisk`时,由于系统盘受实例规格限制,此时必须传入InstanceType。\n\n参数DestinationResource的取值方式请参见本文中的**接口说明**。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:InstanceType'}}}}, {'name': 'DescribeImages', 'description': '指定ImageId、镜像被使用场景、Filter过滤等参数,查询您可以使用的镜像资源列表。', 'inputSchema': {'type': 'object', 'title': 'DescribeImagesArguments', 'required': ['RegionId'], 'properties': {'Tag': {'type': 'array', 'items': {}, 'title': 'Tag', 'default': None, 'description': '标签列表。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: array,参数示例:'}, 'Usage': {'type': 'string', 'title': 'Usage', 'default': None, 'description': '镜像是否已经运行在ECS实例中。取值范围:\n\n- instance:镜像处于运行状态,有ECS实例使用。\n- none:镜像处于闲置状态,暂无ECS实例使用。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致��数解析错误。参数类型: string,参数示例:instance'}, 'DryRun': {'type': 'boolean', 'title': 'Dryrun', 'default': None, 'description': '是否只预检此次请求。\n \n- true:发送检查请求,不会查询资源状况。检查项包括AccessKey是否有效、RAM用户的授权情况和是否填写了必需参数。如果检查不通过,则返回对应错误。如果检查通过,会返回错误码DryRunOperation。 \n- false:发送正常请求,通过检查后返回2XX HTTP状态码并直接查询资源状况。 \n\n默认值:false。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:false'}, 'Filter': {'type': 'array', 'items': {}, 'title': 'Filter', 'default': None, 'description': '查询资源时的筛选条件列表。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: array,参数示例:'}, 'OSType': {'type': 'string', 'title': 'Ostype', 'default': None, 'description': '镜像的操作系统类型。取值范围:\n\n- windows。\n- linux。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:linux'}, 'Status': {'type': 'string', 'title': 'Status', 'default': None, 'description': '查询指定状态的镜像,如果不配置此参数,默认只返回Available状态的镜像。取值范围:\n\n- Creating:镜像正在创建中。\n- Waiting:多任务排队中。\n- Available(默认):您可以使用的镜像。\n- UnAvailable:您不能使用的镜像。\n- CreateFailed:创建失败的镜像。\n- Deprecated:已弃用的镜像。\n\n默认值:Available。当前参数支持同时取多个值,值之间以半角逗号(,)隔开。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:Available'}, 'ImageId': {'type': 'string', 'title': 'Imageid', 'default': None, 'description': '镜像ID。\n\n<details>\n<summary>镜像ID的命名规则</summary>\n\n- 公共镜像:以操作系统版本号、架构、语言和发布日期命名。例如,Windows Server 2008 R2企业版、64位英文系统的镜像ID为win2008r2_64_ent_sp1_en-us_40G_alibase_20190318.vhd。\n\n- 自定义镜像、共享镜像、云市场镜像、社区镜像的镜像:以m开头。\n\n</details> 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:m-bp1g7004ksh0oeuc****'}, 'IsPublic': {'type': 'boolean', 'title': 'Ispublic', 'default': None, 'description': '是否查询已发布的社区镜像。取值范围:\n\n- true:查询已发布的社区镜像。当您指定该参数值为true时,ImageOwnerAlias必须为others。\n- false:查询除社区镜像的其他镜像类型,具体以ImageOwnerAlias参数值为准。\n\n默认值:false。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:false'}, 'PageSize': {'type': 'integer', 'title': 'Pagesize', 'default': None, 'description': '分页查询时设置的每页行数。\n\n最大值:100。\n\n默认值:10。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:10'}, 'RegionId': {'type': 'string', 'title': 'Regionid', 'description': '镜像所属的地域ID。您可以调用[DescribeRegions](~~25609~~)查看最新的阿里云地域列表。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cn-hangzhou'}, 'ImageName': {'type': 'string', 'title': 'Imagename', 'default': None, 'description': '镜像名称。支持模糊搜索。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:testImageName'}, 'ActionType': {'type': 'string', 'title': 'Actiontype', 'default': None, 'description': '镜像需要被使用到的场景。取值范围:\n\n- CreateEcs(默认):创建实例。\n- ChangeOS:更换系统盘/更换操作系统。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:CreateEcs'}, 'PageNumber': {'type': 'integer', 'title': 'Pagenumber', 'default': None, 'description': '镜像资源列表的页码。\n\n起始值:1。\n\n默认值:1。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:1'}, 'SnapshotId': {'type': 'string', 'title': 'Snapshotid', 'default': None, 'description': '根据某一快照ID创建的自定义镜像。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:s-bp17ot2q7x72ggtw****'}, 'ImageFamily': {'type': 'string', 'title': 'Imagefamily', 'default': None, 'description': '镜像族系名称,查询镜像时可通过设置该参数来过滤当前族系对应的镜像。\n\n默认值:空。\n> 阿里云官方镜像关联的镜像族系信息请参见[公共镜像概述](~~108393~~)。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:hangzhou-daily-update'}, 'ShowExpired': {'type': 'boolean', 'title': 'Showexpired', 'default': None, 'description': '订阅型镜像是否已经超过使用期限。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:false'}, 'Architecture': {'type': 'string', 'title': 'Architecture', 'default': None, 'description': '镜像的体系架构。取值范围:\n\n- i386。\n- x86_64。\n- arm64。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:i386'}, 'ImageOwnerId': {'type': 'integer', 'title': 'Imageownerid', 'default': None, 'description': '镜像所属的阿里云账号ID。该参数仅在查询共享镜像以及社区镜像时生效。\n\n 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:20169351435666****'}, 'InstanceType': {'type': 'string', 'title': 'Instancetype', 'default': None, 'description': '为指定的实例规格查询可以使用的镜像。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:ecs.g5.large'}, 'ImageOwnerAlias': {'type': 'string', 'title': 'Imageowneralias', 'default': None, 'description': '镜像来源。取值范围:\n\n- system:阿里云官方提供的,且不是通过云市场发布的镜像,和控制台中的“公共镜像”概念不同。\n- self:您创建的自定义镜像。\n- others:包含共享镜像(其他阿里云用户直接共享给您的镜像)和社区镜像(任意阿里云用户将其自定义镜像完全公开共享后的镜像)。您需要注意:\n - 查找社区镜像时,IsPublic必须为true。\n - 查找共享镜像时,IsPublic需要设置为false或者不传值。\n- marketplace:阿里云或者第三方供应商ISV在云市场发布的镜像,需要和ECS一起购买。请自行留意云市场镜像的收费详情。\n\n默认值:空。\n\n>空表示返回取值为system、self以及others的结果。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:self'}, 'ResourceGroupId': {'type': 'string', 'title': 'Resourcegroupid', 'default': None, 'description': '自定义镜像所在的企业资源组ID。使用该参数过滤资源时,资源数量不能超过1000个。\n\n>不支持默认资源组过滤。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:rg-bp67acfmxazb4p****'}, 'IsSupportCloudinit': {'type': 'boolean', 'title': 'Issupportcloudinit', 'default': None, 'description': '镜像是否支持cloud-init。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:true'}, 'IsSupportIoOptimized': {'type': 'boolean', 'title': 'Issupportiooptimized', 'default': None, 'description': '镜像是否可以运行在I/O优化实例上。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:true'}}}}, {'name': 'DescribeSecurityGroups', 'description': '本接口用于查询安全组基本信息列表,支持您通过地域、安全组ID、安全组类型等不同参数查询。', 'inputSchema': {'type': 'object', 'title': 'DescribeSecurityGroupsArguments', 'required': ['RegionId'], 'properties': {'Tag': {'type': 'array', 'items': {}, 'title': 'Tag', 'default': None, 'description': '标签列表。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: array,参数示例:'}, 'VpcId': {'type': 'string', 'title': 'Vpcid', 'default': None, 'description': '安全组所在的专有网络ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:vpc-bp67acfmxazb4p****'}, 'DryRun': {'type': 'boolean', 'title': 'Dryrun', 'default': None, 'description': '是否只预检此次请求。取值范围:\n \n- true:发送检查请求,不会查询资源状况。检查项包括AccessKey是否有效、RAM用户的授权情况和是否填写了必需参数。如果检查不通过,则返回对应错误。如果检查通过,会返回错误码DryRunOperation。\n- false:发送正常请求,通过检查后返回2XX HTTP状态码并直接查询资源状况。\n\n默认值为false。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:false'}, 'PageSize': {'type': 'integer', 'title': 'Pagesize', 'default': None, 'description': '> 该参数即将下线,推荐您使用NextToken与MaxResults完成分页查询操作。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:10'}, 'RegionId': {'type': 'string', 'title': 'Regionid', 'description': '地域ID。您可以调用[DescribeRegions](~~25609~~)查看最新的阿里云地域列表。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cn-hangzhou'}, 'NextToken': {'type': 'string', 'title': 'Nexttoken', 'default': None, 'description': '查询凭证(Token)。取值为上一次调用该接口返回的NextToken参数值,初次调用接口时无需设置该参数。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:e71d8a535bd9cc11'}, 'FuzzyQuery': {'type': 'boolean', 'title': 'Fuzzyquery', 'default': None, 'description': '>该参数已废弃。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:null'}, 'MaxResults': {'type': 'integer', 'title': 'Maxresults', 'default': None, 'description': '分页查询时每页的最大条目数。一旦设置该参数,即表示使用`MaxResults`与`NextToken`组合参数的查询方式。\n\n最大值为100。\n\n默认值为10。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:10'}, 'PageNumber': {'type': 'integer', 'title': 'Pagenumber', 'default': None, 'description': '> 该参数即将下线,推荐您使用NextToken与MaxResults完成分页查询操作。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:1'}, 'NetworkType': {'type': 'string', 'title': 'Networktype', 'default': None, 'description': '安全组的网络类型。取值范围:\n\n- vpc:专有网络。\n- classic:经典网络。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:vpc'}, 'ServiceManaged': {'type': 'boolean', 'title': 'Servicemanaged', 'default': None, 'description': '是否为托管安全组。取值范围:\n\n- true:是托管安全组。\n- false:不是托管安全组。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:false'}, 'IsQueryEcsCount': {'type': 'boolean', 'title': 'Isqueryecscount', 'default': None, 'description': '是否查询安全组的容量信息。传True时,返回值中的`EcsCount`和`AvailableInstanceAmount`有效。\n>该参数已废弃。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:null'}, 'ResourceGroupId': {'type': 'string', 'title': 'Resourcegroupid', 'default': None, 'description': '安全组所在的企业资源组ID。使用该参数过滤资源时,资源数量不能超过1000个。您可以调用[ListResourceGroups](~~158855~~)查询资源组列表。\n\n>不支持默认资源组过滤。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:rg-bp67acfmxazb4p****'}, 'SecurityGroupId': {'type': 'string', 'title': 'Securitygroupid', 'default': None, 'description': '安全组ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:sg-bp67acfmxazb4p****'}, 'SecurityGroupIds': {'type': 'string', 'title': 'Securitygroupids', 'default': None, 'description': '安全组ID列表。一次最多支持100个安全组ID,ID之间用半角逗号(,)隔开,格式为JSON数组。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:["sg-bp67acfmxazb4p****", "sg-bp67acfmxazb4p****", "sg-bp67acfmxazb4p****",....]'}, 'SecurityGroupName': {'type': 'string', 'title': 'Securitygroupname', 'default': None, 'description': '安全组名称。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:SGTestName'}, 'SecurityGroupType': {'type': 'string', 'title': 'Securitygrouptype', 'default': None, 'description': '安全组类型。取值范围:\n- normal:普通安全组。\n- enterprise:企业安全组。\n\n> 当不为该参数传值时,表示查询所有类型的安全组。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:normal'}}}}, {'name': 'DeleteInstances', 'description': '本接口用于批量删除或者释放按量付费实例或者到期的包年包月实例,支持通过参数设置决定云盘是否释放或转换为按量付费保留。', 'inputSchema': {'type': 'object', 'title': 'DeleteInstancesArguments', 'required': ['RegionId', 'InstanceId'], 'properties': {'Force': {'type': 'boolean', 'title': 'Force', 'default': None, 'description': '是否强制释放**运行中**(`Running`)的ECS实例。\n\n- true:强制释放**运行中**(`Running`)的实例。\n- false:正常释放实例,此时实例必须处于**已停止**(`Stopped`)状态。\n\n默认值:false。\n><warning>强制释放相当于断电,实例内存以及存储中的临时数据都会被擦除,无法恢复。></warning> 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:false'}, 'DryRun': {'type': 'boolean', 'title': 'Dryrun', 'default': None, 'description': '是否只预检此次请求。\n\n- true:发送检查请求,不会查询资源状况。检查项包括AccessKey是否有效、RAM用户的授权情况和是否填写了必需参数。如果检查不通过,则返回对应错误。如果检查通过,会返回错误码DRYRUN.SUCCESS。\n- false:发送正常请求,通过检查后返回2XX HTTP状态码并直接查询资源状况。\n\n默认值:false。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:false'}, 'RegionId': {'type': 'string', 'title': 'Regionid', 'description': '实例所属的地域ID。您可以调用[DescribeRegions](~~25609~~)查看最新的阿里云地域列表。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cn-hangzhou'}, 'ForceStop': {'type': 'boolean', 'title': 'Forcestop', 'default': None, 'description': '释放**运行中**(`Running`)的实例时的是否采取强制关机策略。仅当`Force=true`时生效。取值范围:\n\n- true:强制关机并释放实例。相当于典型的断电操作,实例会直接进入资源释放流程。\n><warning>强制释放相当于断电,实例内存以及存储中的临时数据都会被擦除,无法恢复。></warning>\n- false:在实例释放前,系统将优先执行标准关机流程,该模式会导致实例释放动作持续几分钟。用户在操作系统关机时,配置一些业务排水动作,从而减少业务系统的噪声。\n\n默认值:true。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:true'}, 'InstanceId': {'type': 'array', 'items': {}, 'title': 'Instanceid', 'description': '实例ID数组。数组长度:1~100。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: array,参数示例:i-bp1g6zv0ce8oghu7****'}, 'ClientToken': {'type': 'string', 'title': 'Clienttoken', 'default': None, 'description': '保证请求幂等性。从您的客户端生成一个参数值,确保不同请求间该参数值唯一。**ClientToken**只支持ASCII字符,且不能超过64个字符。更多信息,请参见[如何保证幂等性](~~25693~~)。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:123e4567-e89b-12d3-a456-426655440000'}, 'TerminateSubscription': {'type': 'boolean', 'title': 'Terminatesubscription', 'default': None, 'description': '是否释放已到期的包年包月实例。\n\n- true:释放。\n- false:不释放。\n\n默认值:false。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:false'}}}}, {'name': 'DescribeVpcs', 'description': '查询已创建的VPC。', 'inputSchema': {'type': 'object', 'title': 'DescribeVpcsArguments', 'required': ['RegionId'], 'properties': {'Tag': {'type': 'array', 'items': {}, 'title': 'Tag', 'default': None, 'description': '资源的标签。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: array,参数示例:'}, 'VpcId': {'type': 'string', 'title': 'Vpcid', 'default': None, 'description': 'VPC的ID。 \n\n最多支持指定20个VPC ID,多个VPC的ID之间用半角逗号(,)隔开。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:vpc-bp1b1xjllp3ve5yze****'}, 'DryRun': {'type': 'boolean', 'title': 'Dryrun', 'default': None, 'description': '是否只预检此次请求,取值:\n\n- **true**:发送检查请求,不会查询资源状况。检查项包括AccessKey是否有效、RAM用户的授权情况和是否填写了必需参数。如果检查不通过,则返回对应错误。如果检查通过,会返回错误码`DryRunOperation`。\n\n- **false**(默认值):发送正常请求,通过检查后返回HTTP 2xx状态码并直接查询资源状况。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:false'}, 'VpcName': {'type': 'string', 'title': 'Vpcname', 'default': None, 'description': 'VPC的名称。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:Vpc-1'}, 'PageSize': {'type': 'integer', 'title': 'Pagesize', 'default': None, 'description': '分页查询时每页的行数,最大值为**50**,默认值为**10**。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:10'}, 'RegionId': {'type': 'string', 'title': 'Regionid', 'description': 'VPC所在的地域ID。 \n\n您可以通过调用[DescribeRegions](~~448570~~)接口获取地域ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cn-hangzhou'}, 'IsDefault': {'type': 'boolean', 'title': 'Isdefault', 'default': None, 'description': '是否查询指定地域下的默认VPC,取值: \n\n- **true**(默认值):查询指定地域下的默认VPC。 \n\n- **false**:不查询默认VPC。 \n 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:false'}, 'EnableIpv6': {'type': 'boolean', 'title': 'Enableipv6', 'default': None, 'description': '是否查询指定地域下开启IPv6网段的VPC,默认为空值(空值则不根据是否开启IPv6网段做过滤),取值:\n\n- **false**:不开启。\n- **true**:开启。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:false'}, 'PageNumber': {'type': 'integer', 'title': 'Pagenumber', 'default': None, 'description': ' 列表的页码,默认值为**1**。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:1'}, 'VpcOwnerId': {'type': 'integer', 'title': 'Vpcownerid', 'default': None, 'description': 'VPC所属的阿里云账号ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:253460731706911258'}, 'ResourceGroupId': {'type': 'string', 'title': 'Resourcegroupid', 'default': None, 'description': '要查询的VPC所属的资源组ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:rg-acfmxvfvazb4p****'}, 'DhcpOptionsSetId': {'type': 'string', 'title': 'Dhcpoptionssetid', 'default': None, 'description': 'DHCP选项集的ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:dopt-o6w0df4epg9zo8isy****'}}}}, {'name': 'DescribeVSwitches', 'description': '查询可组网的信息,内网按vswitch进行组网。', 'inputSchema': {'type': 'object', 'title': 'DescribeVSwitchesArguments', 'properties': {'Tag': {'type': 'array', 'items': {}, 'title': 'Tag', 'default': None, 'description': '资源的标签。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: array,参数示例:'}, 'VpcId': {'type': 'string', 'title': 'Vpcid', 'default': None, 'description': '要查询的交换机所属VPC的ID。 \n\n> **RegionId**和**VpcId**参数至少输入一个。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:vpc-25cdvfeq58pl****'}, 'DryRun': {'type': 'boolean', 'title': 'Dryrun', 'default': None, 'description': '是否只预检此次请求。取值:\n- **true**:发送检查请求,不会创建资源(接口功能)。检查项包括是否填写了必需参数、请求格式、业务限制。如果检查不通过,则返回对应错误。如果检查通过,则返回错误码`DryRunOperation`。\n- **false**(默认值):发送正常请求,通过检查后返回HTTP 2xx状态码并直接进行操作。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:true'}, 'ZoneId': {'type': 'string', 'title': 'Zoneid', 'default': None, 'description': '交换机所属可用区的ID。您可以通过调用[DescribeZones](~~36064~~)接口获取可用区ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cn-hangzhou-d'}, 'PageSize': {'type': 'integer', 'title': 'Pagesize', 'default': None, 'description': ' 分页查询时每页的行数,最大值为**50**。默认值为**10**。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:10'}, 'RegionId': {'type': 'string', 'title': 'Regionid', 'default': None, 'description': '交换机所属地域的ID。您可以通过调用[DescribeRegions](~~36063~~)接口获取地域ID。\n\n> **RegionId**和**VpcId**参数至少输入一个。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cn-hangzhou'}, 'IsDefault': {'type': 'boolean', 'title': 'Isdefault', 'default': None, 'description': '是否查询指定地域下的默认交换机,取值: \n\n- **true**:查询指定地域下的默认交换机。 \n\n- **false**:不查询指定地域下的默认交换机。 \n\n如果不传入该参数,系统默认查询指定地域下的所有交换机。\n\n 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:true'}, 'VSwitchId': {'type': 'string', 'title': 'Vswitchid', 'default': None, 'description': '要查询的交换机的ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:vsw-23dscddcffvf3****'}, 'EnableIpv6': {'type': 'boolean', 'title': 'Enableipv6', 'default': None, 'description': '是否查询指定地域下开启IPv6网段的交换机,取值:\n\n- **true**:查询指定地域下开启IPv6网段的交换机。\n\n- **false**:不查询指定地域下开启IPv6网段的交换机。\n\n如果不传入该参数,系统默认查询指定地域下的所有交换机。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: boolean,参数示例:false'}, 'PageNumber': {'type': 'integer', 'title': 'Pagenumber', 'default': None, 'description': ' 列表的页码,默认值为**1**。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:1'}, 'VSwitchName': {'type': 'string', 'title': 'Vswitchname', 'default': None, 'description': '交换机的名称。\n\n名称长度为1~128个字符,不能以`http://`或`https://`开头。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:vSwitch'}, 'RouteTableId': {'type': 'string', 'title': 'Routetableid', 'default': None, 'description': '路由表的ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:vtb-bp145q7glnuzdvzu2****'}, 'VSwitchOwnerId': {'type': 'integer', 'title': 'Vswitchownerid', 'default': None, 'description': '资源归属的阿里云账号ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:2546073170691****'}, 'ResourceGroupId': {'type': 'string', 'title': 'Resourcegroupid', 'default': None, 'description': '交换机所属的资源组ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:rg-bp67acfmxazb4ph****'}}}}, {'name': 'DescribeDBInstances', 'description': '该接口用于查询RDS的实例列表。', 'inputSchema': {'type': 'object', 'title': 'DescribeDBInstancesArguments', 'required': ['RegionId'], 'properties': {'Tags': {'type': 'string', 'title': 'Tags', 'default': None, 'description': '查询绑定有该标签的实例,包括TagKey和TagValue。单次最多支持传入5组值,格式:{"key1":"value1","key2":"value2"...}。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:{"key1":"value1"}'}, 'VpcId': {'type': 'string', 'title': 'Vpcid', 'default': None, 'description': 'VPC ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:vpc-uf6f7l4fg90****'}, 'Engine': {'type': 'string', 'title': 'Engine', 'default': None, 'description': '数据库类型,取值:\n* **MySQL**\n* **SQLServer**\n* **PostgreSQL**\n* **MariaDB**\n\n默认返回所有数据库类型。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:MySQL'}, 'Filter': {'type': 'string', 'title': 'Filter', 'default': None, 'description': '实例过滤条件参数及其值的JSON串 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:{"babelfishEnabled":"true"}'}, 'ZoneId': {'type': 'string', 'title': 'Zoneid', 'default': None, 'description': '可用区ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cn-hangzhou-a'}, 'Expired': {'type': 'string', 'title': 'Expired', 'default': None, 'description': '实例的过期状态,取值:\n* **True**:已过期\n* **False**:未过期 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:True'}, 'PayType': {'type': 'string', 'title': 'Paytype', 'default': None, 'description': '付费类型,取值:\n* **Postpaid**:按量付费\n* **Prepaid**:包年包月 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:Postpaid'}, 'proxyId': {'type': 'string', 'title': 'Proxyid', 'default': None, 'description': '废弃参数,无需配置。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:API'}, 'Category': {'type': 'string', 'title': 'Category', 'default': None, 'description': '实例的系列。取值:\n- **Basic**:基础系列\n- **HighAvailability**:高可用系列\n- **cluster**:集群系列\n- **serverless_basic**:Serverless 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cluster'}, 'PageSize': {'type': 'integer', 'title': 'Pagesize', 'default': None, 'description': '每页记录数,取值:**1**~**100**。\n\n默认值:**30**。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:30'}, 'RegionId': {'type': 'string', 'title': 'Regionid', 'description': '地域ID。可调用DescribeRegions获取。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:cn-hangzhou'}, 'NextToken': {'type': 'string', 'title': 'Nexttoken', 'default': None, 'description': '翻页凭证。取值为上一次调用**DescribeDBInstances**接口时返回的**NextToken**参数值。如果调用结果分多页展示,再次调用接口时传入该值便可以展示下一页的内容。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:o7PORW5o2TJg****'}, 'SearchKey': {'type': 'string', 'title': 'Searchkey', 'default': None, 'description': '可基于实例ID或者实例备注模糊搜索。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:rm-uf6w'}, 'VSwitchId': {'type': 'string', 'title': 'Vswitchid', 'default': None, 'description': '交换机ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:vsw-uf6adz52c2p****'}, 'MaxResults': {'type': 'integer', 'title': 'Maxresults', 'default': None, 'description': '每页记录数。取值:**1~100**。\n\n默认值:**30**。\n>传入该参数,则**PageSize**和**PageNumber**参数不可用。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:30'}, 'PageNumber': {'type': 'integer', 'title': 'Pagenumber', 'default': None, 'description': '页码,取值:大于0且不超过Integer的最大值。\n\n默认值:**1**。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:1'}, 'ClientToken': {'type': 'string', 'title': 'Clienttoken', 'default': None, 'description': '用于保证请求的幂等性,防止重复提交请求。由客户端生成该参数值,要保证在不同请求间唯一,最大值不超过64个ASCII字符,且该参数值中不能包含非ASCII字符。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:ETnLKlblzczshOTUbOCz****'}, 'DBInstanceId': {'type': 'string', 'title': 'Dbinstanceid', 'default': None, 'description': '实例ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:rm-uf6wjk5****'}, 'EngineVersion': {'type': 'string', 'title': 'Engineversion', 'default': None, 'description': '数据库版本。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:8.0'}, 'InstanceLevel': {'type': 'integer', 'title': 'Instancelevel', 'default': None, 'description': '是否返回实例系列(Category)信息,取值:\n* **0**:不返回\n* **1**:返回 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: integer,参数示例:0'}, 'ConnectionMode': {'type': 'string', 'title': 'Connectionmode', 'default': None, 'description': '实例的访问模式,取值:\n* **Standard**:标准访问模式\n* **Safe**:数据库代理模式\n\n默认返回所有访问模式下的实例。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:Standard'}, 'DBInstanceType': {'type': 'string', 'title': 'Dbinstancetype', 'default': None, 'description': '实例类型,取值:\n* **Primary**:主实例\n* **Readonly**:只读实例\n* **Guard**:灾备实例\n* **Temp**:临时实例\n\n默认返回所有实例类型。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:Primary'}, 'DBInstanceClass': {'type': 'string', 'title': 'Dbinstanceclass', 'default': None, 'description': '实例规格,详见[实例规格表](~~26312~~)。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:rds.mys2.small'}, 'DedicatedHostId': {'type': 'string', 'title': 'Dedicatedhostid', 'default': None, 'description': '专属集群内的主机ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:i-bp****'}, 'ResourceGroupId': {'type': 'string', 'title': 'Resourcegroupid', 'default': None, 'description': '资源组ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:rg-acfmy****'}, 'ConnectionString': {'type': 'string', 'title': 'Connectionstring', 'default': None, 'description': '实例的连接地址。通过该连接地址查询对应的实例。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:rm-uf6wjk5****.mysql.rds.aliyuncs.com'}, 'DBInstanceStatus': {'type': 'string', 'title': 'Dbinstancestatus', 'default': None, 'description': '实例状态,详情请参见[实例状态表](~~26315~~)。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:Running'}, 'InstanceNetworkType': {'type': 'string', 'title': 'Instancenetworktype', 'default': None, 'description': '实例的网络类型,取值:\n* **VPC**:专有网络下的实例\n* **Classic**:经典网络下的实例\n\n默认返回所有网络类型下的实例。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:Classic'}, 'DedicatedHostGroupId': {'type': 'string', 'title': 'Dedicatedhostgroupid', 'default': None, 'description': '专属集群ID。 请注意,提供参数要严格按照参数的类型和参数示例的提示,如果提到参数为String,且为一个 JSON 数组字符串,应在数组内使用单引号包裹对应的参数以避免转义问题,并在最外侧用双引号包裹以确保其是字符串,否则可能会导致参数解析错误。参数类型: string,参数示例:dhg-7a9****'}}}}]
@mfengzhishang/mcp
Hyperbrowser MCP Server
Provide powerful web scraping, structured data extraction, and web crawling capabilities to enhance your agents. Access general-purpose browser automation agents for complex tasks and streamline data retrieval from webpages. Integrate seamlessly with your workflows to unlock rich web content and automation.
2025-04-17T06:32:15.029Z
0
https://smithery.ai/server/@mfengzhishang/mcp
false
null
null
[{'name': 'scrape_webpage', 'description': 'Scrape a webpage and extract its content in various formats. This tool allows fetching content from a single URL with configurable browser behavior options. Use this for extracting text content, HTML structure, collecting links, or capturing screenshots of webpages.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['url', 'outputFormat'], 'properties': {'url': {'type': 'string', 'format': 'uri', 'description': 'The URL of the webpage to scrape'}, 'outputFormat': {'type': 'array', 'items': {'enum': ['markdown', 'html', 'links', 'screenshot'], 'type': 'string'}, 'minItems': 1, 'description': 'The format of the output'}, 'sessionOptions': {'type': 'object', 'properties': {'profile': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'ID of the persistent profile to use for the session'}, 'persistChanges': {'type': 'boolean', 'default': True, 'description': 'Whether changes made during the session should be saved to the profile. Recommended true.'}}, 'description': 'Options for using a persistent Hyperbrowser profile', 'additionalProperties': False}, 'useProxy': {'type': 'boolean', 'default': False, 'description': 'Whether to use a proxy. Recommended false.'}, 'useStealth': {'type': 'boolean', 'default': False, 'description': 'Whether to use stealth mode. Recommended false.'}, 'acceptCookies': {'type': 'boolean', 'default': False, 'description': 'Whether to automatically close the accept cookies popup. Recommended false.'}, 'solveCaptchas': {'type': 'boolean', 'default': False, 'description': 'Whether to solve captchas. Recommended false.'}}, 'description': 'Options for the browser session. Avoid setting these if not mentioned explicitly', 'additionalProperties': False}}, 'additionalProperties': False}}, {'name': 'crawl_webpages', 'description': 'Crawl a website starting from a URL and explore linked pages. This tool allows systematic collection of content from multiple pages within a domain. Use this for larger data collection tasks, content indexing, or site mapping.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['url', 'outputFormat', 'followLinks'], 'properties': {'url': {'type': 'string', 'format': 'uri', 'description': 'The URL of the webpage to crawl.'}, 'maxPages': {'type': 'integer', 'default': 10, 'maximum': 100, 'minimum': 1, 'exclusiveMinimum': 0}, 'followLinks': {'type': 'boolean', 'description': 'Whether to follow links on the crawled webpages'}, 'outputFormat': {'type': 'array', 'items': {'enum': ['markdown', 'html', 'links', 'screenshot'], 'type': 'string'}, 'minItems': 1, 'description': 'The format of the output'}, 'ignoreSitemap': {'type': 'boolean', 'default': False}, 'sessionOptions': {'type': 'object', 'properties': {'profile': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'ID of the persistent profile to use for the session'}, 'persistChanges': {'type': 'boolean', 'default': True, 'description': 'Whether changes made during the session should be saved to the profile. Recommended true.'}}, 'description': 'Options for using a persistent Hyperbrowser profile', 'additionalProperties': False}, 'useProxy': {'type': 'boolean', 'default': False, 'description': 'Whether to use a proxy. Recommended false.'}, 'useStealth': {'type': 'boolean', 'default': False, 'description': 'Whether to use stealth mode. Recommended false.'}, 'acceptCookies': {'type': 'boolean', 'default': False, 'description': 'Whether to automatically close the accept cookies popup. Recommended false.'}, 'solveCaptchas': {'type': 'boolean', 'default': False, 'description': 'Whether to solve captchas. Recommended false.'}}, 'description': 'Options for the browser session. Avoid setting these if not mentioned explicitly', 'additionalProperties': False}}, 'additionalProperties': False}}, {'name': 'extract_structured_data', 'description': 'Extract structured data from a webpage. This tool allows you to extract structured data from a webpage using a schema.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['urls', 'prompt'], 'properties': {'urls': {'type': 'array', 'items': {'type': 'string', 'format': 'uri'}, 'description': 'The list of URLs of the webpages to extract structured information from. Can include wildcards (e.g. https://example.com/*)'}, 'prompt': {'type': 'string', 'description': 'The prompt to use for the extraction'}, 'schema': {'description': 'The json schema to use for the extraction. Must provide an object describing a spec compliant json schema, any other types are invalid.'}, 'sessionOptions': {'type': 'object', 'properties': {'profile': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'ID of the persistent profile to use for the session'}, 'persistChanges': {'type': 'boolean', 'default': True, 'description': 'Whether changes made during the session should be saved to the profile. Recommended true.'}}, 'description': 'Options for using a persistent Hyperbrowser profile', 'additionalProperties': False}, 'useProxy': {'type': 'boolean', 'default': False, 'description': 'Whether to use a proxy. Recommended false.'}, 'useStealth': {'type': 'boolean', 'default': False, 'description': 'Whether to use stealth mode. Recommended false.'}, 'acceptCookies': {'type': 'boolean', 'default': False, 'description': 'Whether to automatically close the accept cookies popup. Recommended false.'}, 'solveCaptchas': {'type': 'boolean', 'default': False, 'description': 'Whether to solve captchas. Recommended false.'}}, 'description': 'Options for the browser session. Avoid setting these if not mentioned explicitly', 'additionalProperties': False}}, 'additionalProperties': False}}, {'name': 'browser_use_agent', 'description': 'This tool employs an open-source browser automation agent optimized specifically for fast, efficient, and cost-effective browser tasks using a cloud browser. It requires explicit, detailed instructions to perform highly specific interactions quickly.\n\nOptimal for tasks requiring:\n- Precise, explicitly defined interactions and actions\n- Speed and efficiency with clear, unambiguous instructions\n- Cost-effective automation at scale with straightforward workflows\n\nBest suited use cases include:\n- Explicitly defined registration and login processes\n- Clearly guided navigation through web apps\n- Structured, step-by-step web scraping with detailed guidance\n- Extracting data via explicitly specified browser interactions\n\nYou must provide extremely detailed step-by-step instructions, including exact elements, actions, and explicit context. Clearly define the desired outcome for optimal results. Returns the completed result or an error message if issues arise.\n\nNote: This agent trades off flexibility for significantly faster performance and lower costs compared to Claude and OpenAI agents.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['task'], 'properties': {'task': {'type': 'string', 'description': 'The task to perform inside the browser'}, 'maxSteps': {'type': 'integer', 'default': 25, 'maximum': 100, 'minimum': 1, 'exclusiveMinimum': 0}, 'returnStepInfo': {'type': 'boolean', 'default': False, 'description': 'Whether to return step-by-step information about the task.Should be false by default. May contain excessive information, so we strongly recommend setting this to false.'}, 'sessionOptions': {'type': 'object', 'properties': {'profile': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'ID of the persistent profile to use for the session'}, 'persistChanges': {'type': 'boolean', 'default': True, 'description': 'Whether changes made during the session should be saved to the profile. Recommended true.'}}, 'description': 'Options for using a persistent Hyperbrowser profile', 'additionalProperties': False}, 'useProxy': {'type': 'boolean', 'default': False, 'description': 'Whether to use a proxy. Recommended false.'}, 'useStealth': {'type': 'boolean', 'default': False, 'description': 'Whether to use stealth mode. Recommended false.'}, 'acceptCookies': {'type': 'boolean', 'default': False, 'description': 'Whether to automatically close the accept cookies popup. Recommended false.'}, 'solveCaptchas': {'type': 'boolean', 'default': False, 'description': 'Whether to solve captchas. Recommended false.'}}, 'description': 'Options for the browser session. Avoid setting these if not mentioned explicitly', 'additionalProperties': False}}, 'additionalProperties': False}}, {'name': 'openai_computer_use_agent', 'description': "This tool utilizes OpenAI's model to autonomously execute general-purpose browser-based tasks with balanced performance and reliability using a cloud browser. It handles complex interactions effectively with practical reasoning and clear execution.\n\nOptimal for tasks requiring:\n- Reliable, general-purpose browser automation\n- Clear, structured interactions with moderate complexity\n- Efficient handling of common web tasks and workflows\n\nBest suited use cases include:\n- Standard multi-step registration or form submissions\n- Navigating typical web applications requiring multiple interactions\n- Conducting structured web research tasks\n- Extracting data through interactive web processes\n\nProvide a clear step-by-step description, necessary context, and expected outcomes. Returns the completed result or an error message if issues arise.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['task'], 'properties': {'task': {'type': 'string', 'description': 'The task to perform inside the browser'}, 'maxSteps': {'type': 'integer', 'default': 25, 'maximum': 100, 'minimum': 1, 'exclusiveMinimum': 0}, 'returnStepInfo': {'type': 'boolean', 'default': False, 'description': 'Whether to return step-by-step information about the task.Should be false by default. May contain excessive information, so we strongly recommend setting this to false.'}, 'sessionOptions': {'type': 'object', 'properties': {'profile': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'ID of the persistent profile to use for the session'}, 'persistChanges': {'type': 'boolean', 'default': True, 'description': 'Whether changes made during the session should be saved to the profile. Recommended true.'}}, 'description': 'Options for using a persistent Hyperbrowser profile', 'additionalProperties': False}, 'useProxy': {'type': 'boolean', 'default': False, 'description': 'Whether to use a proxy. Recommended false.'}, 'useStealth': {'type': 'boolean', 'default': False, 'description': 'Whether to use stealth mode. Recommended false.'}, 'acceptCookies': {'type': 'boolean', 'default': False, 'description': 'Whether to automatically close the accept cookies popup. Recommended false.'}, 'solveCaptchas': {'type': 'boolean', 'default': False, 'description': 'Whether to solve captchas. Recommended false.'}}, 'description': 'Options for the browser session. Avoid setting these if not mentioned explicitly', 'additionalProperties': False}}, 'additionalProperties': False}}, {'name': 'claude_computer_use_agent', 'description': "This tool leverages Anthropic's Claude model to autonomously execute complex browser tasks with sophisticated reasoning capabilities using a cloud browser. It specializes in handling intricate, nuanced, or highly context-sensitive web interactions.\n\nOptimal for tasks requiring:\n- Complex reasoning over multiple web pages\n- Nuanced interpretation and flexible decision-making\n- Human-like interaction with detailed context awareness\n\nBest suited use cases include:\n- Multi-step processes requiring reasoning (e.g., detailed registrations or onboarding)\n- Interacting intelligently with advanced web apps\n- Conducting in-depth research with complex conditions\n- Extracting information from dynamic or interactive websites\n\nProvide detailed task instructions, relevant context, and clearly specify the desired outcome for best results. Returns the completed result or an error message if issues arise.", 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['task'], 'properties': {'task': {'type': 'string', 'description': 'The task to perform inside the browser'}, 'maxSteps': {'type': 'integer', 'default': 25, 'maximum': 100, 'minimum': 1, 'exclusiveMinimum': 0}, 'returnStepInfo': {'type': 'boolean', 'default': False, 'description': 'Whether to return step-by-step information about the task.Should be false by default. May contain excessive information, so we strongly recommend setting this to false.'}, 'sessionOptions': {'type': 'object', 'properties': {'profile': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'ID of the persistent profile to use for the session'}, 'persistChanges': {'type': 'boolean', 'default': True, 'description': 'Whether changes made during the session should be saved to the profile. Recommended true.'}}, 'description': 'Options for using a persistent Hyperbrowser profile', 'additionalProperties': False}, 'useProxy': {'type': 'boolean', 'default': False, 'description': 'Whether to use a proxy. Recommended false.'}, 'useStealth': {'type': 'boolean', 'default': False, 'description': 'Whether to use stealth mode. Recommended false.'}, 'acceptCookies': {'type': 'boolean', 'default': False, 'description': 'Whether to automatically close the accept cookies popup. Recommended false.'}, 'solveCaptchas': {'type': 'boolean', 'default': False, 'description': 'Whether to solve captchas. Recommended false.'}}, 'description': 'Options for the browser session. Avoid setting these if not mentioned explicitly', 'additionalProperties': False}}, 'additionalProperties': False}}, {'name': 'search_with_bing', 'description': 'Search the web using Bing. This tool allows you to search the web using bing.com', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The search query to submit to Bing'}, 'numResults': {'type': 'integer', 'default': 10, 'maximum': 50, 'minimum': 1, 'description': 'Number of search results to return', 'exclusiveMinimum': 0}, 'sessionOptions': {'type': 'object', 'properties': {'profile': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'ID of the persistent profile to use for the session'}, 'persistChanges': {'type': 'boolean', 'default': True, 'description': 'Whether changes made during the session should be saved to the profile. Recommended true.'}}, 'description': 'Options for using a persistent Hyperbrowser profile', 'additionalProperties': False}, 'useProxy': {'type': 'boolean', 'default': False, 'description': 'Whether to use a proxy. Recommended false.'}, 'useStealth': {'type': 'boolean', 'default': False, 'description': 'Whether to use stealth mode. Recommended false.'}, 'acceptCookies': {'type': 'boolean', 'default': False, 'description': 'Whether to automatically close the accept cookies popup. Recommended false.'}, 'solveCaptchas': {'type': 'boolean', 'default': False, 'description': 'Whether to solve captchas. Recommended false.'}}, 'description': 'Options for the browser session. Avoid setting these if not mentioned explicitly', 'additionalProperties': False}}, 'additionalProperties': False}}, {'name': 'create_profile', 'description': 'Creates a new persistent Hyperbrowser profile.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'delete_profile', 'description': 'Deletes an existing persistent Hyperbrowser profile.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['profileId'], 'properties': {'profileId': {'type': 'string', 'description': 'ID of the profile to delete'}}, 'additionalProperties': False}}, {'name': 'list_profiles', 'description': 'Lists existing persistent Hyperbrowser profiles, with optional pagination.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'page': {'type': 'integer', 'description': 'Page number for pagination (optional)', 'exclusiveMinimum': 0}, 'limit': {'type': 'integer', 'description': 'Number of profiles per page (optional)', 'exclusiveMinimum': 0}}, 'additionalProperties': False}}]
@Ashish-Bansal/playwright-mcp
Playwright MCP
Connect AI assistants directly to your DOM for faster, smarter test automation. Enable AI tools to see your application structure, generating precise Playwright tests based on real elements rather than descriptions alone.
2025-03-10T20:20:50.704Z
0
https://smithery.ai/server/@Ashish-Bansal/playwright-mcp
false
null
{ "scanPassed": true }
[{'name': 'init-browser', 'description': 'Initialize a browser with a URL', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['url'], 'properties': {'url': {'type': 'string', 'format': 'uri', 'description': 'The URL to navigate to'}}, 'additionalProperties': False}}, {'name': 'get-dom', 'description': 'Get the DOM of the required element', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-url', 'description': 'Get the URL of a page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'get-selector-count', 'description': 'Get the count of elements matching a selector', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['selector'], 'properties': {'selector': {'type': 'string'}}, 'additionalProperties': False}}]
@lpigeon/ros-mcp-server
ROS MCP Server
The ROS MCP Server is designed to support robots in performing complex tasks and adapting effectively to various environments by providing a set of functions that transform natural language commands, entered by a user through an LLM, into ROS commands for robot control. Furthermore, by utilizing rosbridge, it is configured to operate with both ROS and ROS2 systems, and its WebSocket-based communication enables broad applicability across diverse platforms.
2025-04-25T16:56:53.807Z
0
https://smithery.ai/server/@lpigeon/ros-mcp-server
false
null
null
[{'name': 'pub_twist', 'description': '', 'inputSchema': {'type': 'object', 'title': 'pub_twistArguments', 'required': ['linear', 'angular'], 'properties': {'linear': {'type': 'array', 'items': {}, 'title': 'Linear'}, 'angular': {'type': 'array', 'items': {}, 'title': 'Angular'}}}}, {'name': 'pub_twist_seq', 'description': '', 'inputSchema': {'type': 'object', 'title': 'pub_twist_seqArguments', 'required': ['linear', 'angular', 'duration'], 'properties': {'linear': {'type': 'array', 'items': {}, 'title': 'Linear'}, 'angular': {'type': 'array', 'items': {}, 'title': 'Angular'}, 'duration': {'type': 'array', 'items': {}, 'title': 'Duration'}}}}]
@phuc-nt/mcp-atlassian-server
Atlassian Integration Server
Connect AI agents to Atlassian Jira and Confluence to query data and perform actions through a standardized interface. Enable seamless management of issues, projects, pages, and comments directly from AI assistants. Simplify workflows and reduce context switching for developers and teams using Atlassian tools.
2025-05-04T15:32:39.682Z
0
https://smithery.ai/server/@phuc-nt/mcp-atlassian-server
false
null
{ "scanPassed": true }
[{'name': 'createIssue', 'description': 'Create a new issue in Jira', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectKey', 'summary'], 'properties': {'labels': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Labels for the issue'}, 'summary': {'type': 'string', 'description': 'Issue summary'}, 'assignee': {'type': 'string', 'description': 'Assignee username'}, 'priority': {'type': 'string', 'description': 'Priority (e.g., High, Medium, Low)'}, 'issueType': {'type': 'string', 'default': 'Task', 'description': 'Issue type (e.g., Bug, Task, Story)'}, 'projectKey': {'type': 'string', 'description': 'Project key (e.g., PROJ)'}, 'description': {'type': 'string', 'description': 'Issue description'}}, 'additionalProperties': False}}, {'name': 'updateIssue', 'description': 'Update information of a Jira issue', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['issueIdOrKey'], 'properties': {'labels': {'type': 'array', 'items': {'type': 'string'}, 'description': 'New labels for the issue'}, 'summary': {'type': 'string', 'description': 'New summary of the issue'}, 'priority': {'type': 'string', 'description': 'New priority (e.g., High, Medium, Low)'}, 'description': {'type': 'string', 'description': 'New description of the issue'}, 'customFields': {'type': 'object', 'description': 'Custom fields to update', 'additionalProperties': {}}, 'issueIdOrKey': {'type': 'string', 'description': 'ID or key of the issue to update (e.g., PROJ-123)'}}, 'additionalProperties': False}}, {'name': 'transitionIssue', 'description': 'Transition the status of a Jira issue', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['issueIdOrKey', 'transitionId'], 'properties': {'comment': {'type': 'string', 'description': 'Comment when performing the transition'}, 'issueIdOrKey': {'type': 'string', 'description': 'ID or key of the issue (e.g., PROJ-123)'}, 'transitionId': {'type': 'string', 'description': 'ID of the transition to apply'}}, 'additionalProperties': False}}, {'name': 'assignIssue', 'description': 'Assign a Jira issue to a user', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['issueIdOrKey'], 'properties': {'accountId': {'type': 'string', 'description': 'Account ID of the assignee (leave blank to unassign)'}, 'issueIdOrKey': {'type': 'string', 'description': 'ID or key of the issue (e.g., PROJ-123)'}}, 'additionalProperties': False}}, {'name': 'createPage', 'description': 'Create a new page in Confluence', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['spaceKey', 'title', 'content'], 'properties': {'title': {'type': 'string', 'description': 'Title of the page'}, 'content': {'type': 'string', 'description': 'Content of the page (in Confluence storage/HTML format)'}, 'parentId': {'type': 'string', 'description': 'ID of the parent page (if creating a child page)'}, 'spaceKey': {'type': 'string', 'description': 'Space key to create the page in (e.g., DEV, HR)'}}, 'additionalProperties': False}}, {'name': 'addComment', 'description': 'Add a comment to a Confluence page', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['pageId', 'content'], 'properties': {'pageId': {'type': 'string', 'description': 'ID of the page to add a comment to'}, 'content': {'type': 'string', 'description': 'Content of the comment (in Confluence storage/HTML format)'}}, 'additionalProperties': False}}]
@krzko/google-cloud-mcp
Google Cloud Services Integration
Connect to Google Cloud services to query logs, execute SQL queries, retrieve metrics, and analyze traces. Enhance your debugging and monitoring capabilities with natural language support for seamless interaction with your cloud resources.
2025-03-08T22:47:52.457Z
0
https://smithery.ai/server/@krzko/google-cloud-mcp
false
null
{ "scanPassed": true }
[{'name': 'query-logs', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['filter'], 'properties': {'limit': {'type': 'number', 'default': 50, 'maximum': 1000, 'minimum': 1, 'description': 'Maximum number of log entries to return'}, 'filter': {'type': 'string', 'description': 'The filter to apply to logs'}}, 'additionalProperties': False}}, {'name': 'logs-time-range', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['startTime'], 'properties': {'limit': {'type': 'number', 'default': 50, 'maximum': 1000, 'minimum': 1, 'description': 'Maximum number of log entries to return'}, 'filter': {'type': 'string', 'description': 'Additional filter criteria'}, 'endTime': {'type': 'string', 'description': 'End time in ISO format (defaults to now)'}, 'startTime': {'type': 'string', 'description': 'Start time in ISO format or relative time (e.g., "1h", "2d")'}}, 'additionalProperties': False}}, {'name': 'execute-spanner-query', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sql'], 'properties': {'sql': {'type': 'string', 'description': 'The SQL query to execute'}, 'params': {'type': 'object', 'description': 'Query parameters', 'additionalProperties': {}}, 'databaseId': {'type': 'string', 'description': 'Spanner database ID (defaults to SPANNER_DATABASE env var)'}, 'instanceId': {'type': 'string', 'description': 'Spanner instance ID (defaults to SPANNER_INSTANCE env var)'}}, 'additionalProperties': False}}, {'name': 'list-spanner-tables', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'databaseId': {'type': 'string', 'description': 'Spanner database ID (defaults to SPANNER_DATABASE env var)'}, 'instanceId': {'type': 'string', 'description': 'Spanner instance ID (defaults to SPANNER_INSTANCE env var)'}}, 'additionalProperties': False}}, {'name': 'list-spanner-instances', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'_dummy': {'type': 'string', 'description': 'Not used, just to ensure parameter compatibility'}}, 'additionalProperties': False}}, {'name': 'list-spanner-databases', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['instanceId'], 'properties': {'instanceId': {'type': 'string', 'description': 'Spanner instance ID'}}, 'additionalProperties': False}}, {'name': 'natural-language-spanner-query', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'Natural language description of the query you want to execute'}, 'databaseId': {'type': 'string', 'description': 'Spanner database ID (defaults to SPANNER_DATABASE env var)'}, 'instanceId': {'type': 'string', 'description': 'Spanner instance ID (defaults to SPANNER_INSTANCE env var)'}}, 'additionalProperties': False}}, {'name': 'spanner-query-count', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'status': {'enum': ['ALL', 'OK', 'ERROR'], 'type': 'string', 'default': 'ALL', 'description': 'Status of queries to count (ALL, OK, ERROR)'}, 'endTime': {'type': 'string', 'description': 'End time for the query (defaults to now)'}, 'queryType': {'enum': ['ALL', 'READ', 'QUERY'], 'type': 'string', 'default': 'ALL', 'description': 'Type of queries to count (ALL, READ, QUERY)'}, 'startTime': {'type': 'string', 'default': '1h', 'description': 'Start time for the query (e.g., "1h", "2d", "30m")'}, 'databaseId': {'type': 'string', 'description': 'Spanner database ID (optional, if not provided will show all databases)'}, 'instanceId': {'type': 'string', 'description': 'Spanner instance ID (optional, if not provided will show all instances)'}, 'alignmentPeriod': {'type': 'string', 'default': '60s', 'description': 'Alignment period for aggregating data points (e.g., "60s", "5m", "1h")'}}, 'additionalProperties': False}}, {'name': 'query-metrics', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['filter', 'startTime'], 'properties': {'filter': {'type': 'string', 'description': 'The filter to apply to metrics'}, 'endTime': {'type': 'string', 'description': 'End time in ISO format (defaults to now)'}, 'startTime': {'type': 'string', 'description': 'Start time in ISO format or relative time (e.g., "1h", "2d")'}, 'alignmentPeriod': {'type': 'string', 'description': 'Alignment period (e.g., "60s", "300s")'}}, 'additionalProperties': False}}, {'name': 'list-metric-types', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'filter': {'type': 'string', 'description': 'Simple search term (e.g., "spanner") or full filter expression (e.g., "metric.type = starts_with(\\"spanner\\")")'}, 'timeout': {'type': 'number', 'default': 30, 'maximum': 60, 'minimum': 5, 'description': 'Timeout in seconds for the request'}, 'pageSize': {'type': 'number', 'default': 20, 'maximum': 100, 'minimum': 1, 'description': 'Maximum number of metric types to return'}}, 'additionalProperties': False}}, {'name': 'natural-language-metrics-query', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'Natural language description of the query you want to execute'}, 'endTime': {'type': 'string', 'description': 'End time in ISO format (defaults to now)'}, 'startTime': {'type': 'string', 'description': 'Start time in ISO format or relative time (e.g., "1h", "2d")'}, 'alignmentPeriod': {'type': 'string', 'description': 'Alignment period (e.g., "60s", "300s")'}}, 'additionalProperties': False}}, {'name': 'get-trace', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['traceId'], 'properties': {'traceId': {'type': 'string', 'description': 'The trace ID to retrieve'}, 'projectId': {'type': 'string', 'description': 'Optional Google Cloud project ID'}}, 'additionalProperties': False}}, {'name': 'list-traces', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'limit': {'type': 'number', 'default': 10, 'maximum': 100, 'minimum': 1, 'description': 'Maximum number of traces to return'}, 'filter': {'type': 'string', 'description': 'Optional filter for traces (e.g., "status.code != 0" for errors)'}, 'projectId': {'type': 'string', 'description': 'Optional Google Cloud project ID'}, 'startTime': {'type': 'string', 'description': 'Start time in ISO format or relative time (e.g., "1h", "2d")'}}, 'additionalProperties': False}}, {'name': 'find-traces-from-logs', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['filter'], 'properties': {'limit': {'type': 'number', 'default': 10, 'maximum': 100, 'minimum': 1, 'description': 'Maximum number of logs to check'}, 'filter': {'type': 'string', 'description': 'Filter for logs (e.g., "severity>=ERROR AND timestamp>"-1d"")'}, 'projectId': {'type': 'string', 'description': 'Optional Google Cloud project ID'}}, 'additionalProperties': False}}, {'name': 'natural-language-trace-query', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'Natural language query about traces (e.g., "Show me failed traces from the last hour")'}, 'projectId': {'type': 'string', 'description': 'Optional Google Cloud project ID'}}, 'additionalProperties': False}}, {'name': 'set-project-id', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['projectId'], 'properties': {'projectId': {'type': 'string', 'description': 'The Google Cloud project ID to set as default'}}, 'additionalProperties': False}}, {'name': 'get-project-id', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}]
@ODAncona/code2prompt
Code2Prompt MCP Server
Enable seamless integration of code generation and prompt engineering capabilities into your applications. Leverage the power of the Model Context Protocol to enhance your development workflow with dynamic context and tools. Start building smarter applications that understand and generate code effectively.
2025-03-20T01:29:35.734Z
0
https://smithery.ai/server/@ODAncona/code2prompt
false
null
{ "scanPassed": true }
[{'name': 'get_context', 'description': '\nRetrieve context from a codebase using code2prompt with the specified parameters.\n\nArgs:\n path: Path to the codebase\n include_patterns: List of glob patterns for files to include\n exclude_patterns: List of glob patterns for files to exclude\n include_priority: Give priority to include patterns\n line_numbers: Add line numbers to code\n absolute_paths: Use absolute paths instead of relative paths\n full_directory_tree: List the full directory tree\n code_blocks: Wrap code in markdown code blocks\n follow_symlinks: Follow symbolic links\n include_hidden: Include hidden directories and files\n template: Custom Handlebars template\n encoding: Token encoding (cl100k, gpt2, p50k_base)\n\nReturns:\n Dictionary with the prompt and metadata\n', 'inputSchema': {'type': 'object', 'title': 'get_contextArguments', 'properties': {'path': {'type': 'string', 'title': 'Path', 'default': '.'}, 'encoding': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Encoding', 'default': 'cl100k'}, 'template': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Template', 'default': None}, 'code_blocks': {'type': 'boolean', 'title': 'Code Blocks', 'default': True}, 'line_numbers': {'type': 'boolean', 'title': 'Line Numbers', 'default': True}, 'absolute_paths': {'type': 'boolean', 'title': 'Absolute Paths', 'default': False}, 'include_hidden': {'type': 'boolean', 'title': 'Include Hidden', 'default': False}, 'follow_symlinks': {'type': 'boolean', 'title': 'Follow Symlinks', 'default': False}, 'exclude_patterns': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Exclude Patterns', 'default': []}, 'include_patterns': {'type': 'array', 'items': {'type': 'string'}, 'title': 'Include Patterns', 'default': []}, 'include_priority': {'type': 'boolean', 'title': 'Include Priority', 'default': False}, 'full_directory_tree': {'type': 'boolean', 'title': 'Full Directory Tree', 'default': False}}}}]
@doggybee/mcp-server-memo
Memo Server for Session Memory Management
Manage rich session summaries and memos for large language models with persistent local filesystem storage. Track session history versions and easily store, retrieve, and list summaries to enhance context retention. Improve your LLM's memory capabilities with a lightweight and efficient server.
2025-04-15T05:43:38.787Z
0
https://smithery.ai/server/@doggybee/mcp-server-memo
false
null
{ "scanPassed": true }
[{'name': 'upsertSummary', 'description': 'Create or update a detailed session summary with metadata', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sessionId', 'summary'], 'properties': {'tags': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Keywords or tags to categorize the session.'}, 'title': {'type': 'string', 'description': 'A short, descriptive title for the session.'}, 'summary': {'type': 'string', 'description': '**Mandatory.** The detailed content of the session chronicle/log.'}, 'sessionId': {'type': 'string', 'minLength': 1, 'description': '**Mandatory.** A unique identifier for the conversation session.'}}, 'additionalProperties': False}}, {'name': 'getSummaryTool', 'description': 'Retrieves a specific summary by sessionId or lists all available summaries if no ID is provided.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sessionId'], 'properties': {'maxLength': {'type': 'integer', 'description': 'If provided, truncate the retrieved summary text to this maximum length.', 'exclusiveMinimum': 0}, 'sessionId': {'type': 'string', 'minLength': 1, 'description': 'The unique ID of the session summary to retrieve.'}}, 'additionalProperties': False}}, {'name': 'listSummariesTool', 'description': 'Lists available summaries with support for filtering, sorting, and pagination.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'tag': {'type': 'string', 'description': 'Filter sessions by a specific tag.'}, 'limit': {'type': 'integer', 'description': 'Limit results.', 'exclusiveMinimum': 0}, 'order': {'enum': ['asc', 'desc'], 'type': 'string', 'description': 'Sort order.'}, 'offset': {'type': 'integer', 'minimum': 0, 'description': 'Offset for pagination.'}, 'sortBy': {'enum': ['lastUpdated', 'title'], 'type': 'string', 'description': 'Sort field.'}}, 'additionalProperties': False}}, {'name': 'updateMetadata', 'description': 'Updates only the metadata (title and/or tags) without changing the summary content or timestamp.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sessionId'], 'properties': {'tags': {'type': 'array', 'items': {'type': 'string'}, 'description': 'New tags array. If omitted, tags remain unchanged.'}, 'title': {'type': 'string', 'description': 'New title. If omitted, title remains unchanged.'}, 'sessionId': {'type': 'string', 'minLength': 1, 'description': '**Mandatory.** The unique ID of the session whose metadata to update.'}}, 'additionalProperties': False}}, {'name': 'listAllSummariesTool', 'description': 'Simple tool to list all available summaries.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}, 'additionalProperties': False}}, {'name': 'appendSummary', 'description': 'Simple reliable tool to append content to a session summary. Creates a new version that includes previous content plus new content.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sessionId', 'content'], 'properties': {'tags': {'type': 'array', 'items': {'type': 'string'}, 'description': 'Optional tags for categorizing the session.'}, 'title': {'type': 'string', 'description': 'Optional title for the session.'}, 'content': {'type': 'string', 'description': 'The content to append to the session. This will be added to the existing content and saved as a new version.'}, 'sessionId': {'type': 'string', 'minLength': 1, 'description': 'Unique identifier for the conversation session.'}}, 'additionalProperties': False}}, {'name': 'getSessionHistory', 'description': 'Retrieves all historical versions of a session in chronological order.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sessionId'], 'properties': {'sessionId': {'type': 'string', 'minLength': 1, 'description': 'The unique ID of the session to retrieve history for.'}}, 'additionalProperties': False}}]
@isaacraja/hubspot-mcp-server
HubSpot API Integration Server
Enable seamless interaction with HubSpot's contacts, deals, and engagement data through a standardized protocol. Access and manipulate HubSpot data effortlessly, enhancing your LLM's capabilities with real-time CRM insights. Simplify your workflow by integrating HubSpot functionalities directly into your applications.
2025-03-27T05:50:11.142Z
0
https://smithery.ai/server/@isaacraja/hubspot-mcp-server
false
null
{ "scanPassed": true }
[{'name': 'get_contact_by_id', 'description': '\n Get a HubSpot contact by ID\n\n Args:\n contact_id: The HubSpot contact ID. Can be provided as integer or string.\n\n Returns:\n The contact information as a dictionary\n ', 'inputSchema': {'type': 'object', 'title': 'get_contact_by_idArguments', 'properties': {'contact_id': {'type': 'string', 'title': 'contact_id', 'default': None}}}}, {'name': 'get_contact_by_email', 'description': "\n Get a HubSpot contact by email address\n\n Args:\n email: The contact's email address\n\n Returns:\n The contact information as a dictionary or an error message\n ", 'inputSchema': {'type': 'object', 'title': 'get_contact_by_emailArguments', 'required': ['email'], 'properties': {'email': {'type': 'string', 'title': 'Email'}}}}, {'name': 'search_contacts', 'description': '\n Search for HubSpot contacts based on property criteria\n\n Args:\n property_name: The contact property to search (e.g., firstname, lastname, email)\n operator: The operator to use for searching (EQ, CONTAINS, NEQ, GT, LT, GTE, LTE)\n value: The value to search for\n limit: Maximum number of results to return (default: 10)\n\n Returns:\n A dictionary containing matching contacts\n ', 'inputSchema': {'type': 'object', 'title': 'search_contactsArguments', 'required': ['property_name', 'operator', 'value'], 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 10}, 'value': {'type': 'string', 'title': 'Value'}, 'operator': {'type': 'string', 'title': 'Operator'}, 'property_name': {'type': 'string', 'title': 'Property Name'}}}}, {'name': 'get_deal_by_id', 'description': '\n Get a HubSpot deal by ID\n\n Args:\n deal_id: The HubSpot deal ID. Can be provided as integer or string.\n\n Returns:\n The deal information as a dictionary\n ', 'inputSchema': {'type': 'object', 'title': 'get_deal_by_idArguments', 'properties': {'deal_id': {'type': 'string', 'title': 'deal_id', 'default': None}}}}, {'name': 'get_contact_deals', 'description': '\n Get all deals associated with a HubSpot contact\n\n Args:\n contact_id: The HubSpot contact ID. Can be provided as integer or string.\n\n Returns:\n A dictionary containing the deals associated with the contact\n ', 'inputSchema': {'type': 'object', 'title': 'get_contact_dealsArguments', 'properties': {'contact_id': {'type': 'string', 'title': 'contact_id', 'default': None}}}}, {'name': 'get_deal_contacts', 'description': '\n Get all contacts associated with a HubSpot deal\n\n Args:\n deal_id: The HubSpot deal ID. Can be provided as integer or string.\n\n Returns:\n A dictionary containing the contacts associated with the deal\n ', 'inputSchema': {'type': 'object', 'title': 'get_deal_contactsArguments', 'properties': {'deal_id': {'type': 'string', 'title': 'deal_id', 'default': None}}}}, {'name': 'get_latest_marketing_campaign', 'description': '\n Get the most recent marketing campaigns\n\n Args:\n limit: Number of campaigns to retrieve (default: 1)\n type: Campaign type (EMAIL, SOCIAL, etc.)\n\n Returns:\n Information about the latest marketing campaigns\n ', 'inputSchema': {'type': 'object', 'title': 'get_latest_marketing_campaignArguments', 'properties': {'type': {'type': 'string', 'title': 'Type', 'default': 'EMAIL'}, 'limit': {'type': 'integer', 'title': 'Limit', 'default': 1}}}}, {'name': 'get_campaign_engagement', 'description': '\n Get contacts who engaged with a specific marketing campaign\n\n Args:\n campaign_id: ID of the marketing campaign\n engagement_type: Type of engagement (OPEN, CLICK, etc.)\n limit: Maximum number of contacts to return\n\n Returns:\n List of contacts with engagement data\n ', 'inputSchema': {'type': 'object', 'title': 'get_campaign_engagementArguments', 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 10}, 'campaign_id': {'type': 'string', 'title': 'campaign_id', 'default': None}, 'engagement_type': {'type': 'string', 'title': 'Engagement Type', 'default': 'OPEN'}}}}, {'name': 'get_page_visits', 'description': '\n Get contacts who visited a specific page in the given time period\n\n Args:\n page_path: URL path of the page (e.g., "/pricing")\n days_ago: How many days back to look for visits\n limit: Maximum number of contacts to return\n\n Returns:\n List of contacts with visit data\n ', 'inputSchema': {'type': 'object', 'title': 'get_page_visitsArguments', 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 10}, 'days_ago': {'type': 'integer', 'title': 'Days Ago', 'default': 7}, 'page_path': {'type': 'string', 'title': 'Page Path', 'default': '/pricing'}}}}, {'name': 'get_contact_analytics', 'description': '\n Get analytics data for a specific contact\n\n Args:\n contact_id: ID of the contact\n metrics: Types of metrics to retrieve (page_views, form_submissions, etc.)\n timeframe: Time period for data (last_7_days, last_30_days, etc.)\n\n Returns:\n Analytics data for the contact\n ', 'inputSchema': {'type': 'object', 'title': 'get_contact_analyticsArguments', 'properties': {'metrics': {'type': 'string', 'title': 'Metrics', 'default': 'page_views'}, 'timeframe': {'type': 'string', 'title': 'Timeframe', 'default': 'last_7_days'}, 'contact_id': {'type': 'string', 'title': 'contact_id', 'default': None}}}}, {'name': 'get_scheduled_meetings', 'description': '\n Get meetings scheduled within a time period\n\n Args:\n start_date: Start of time period (first day of current month by default)\n end_date: End of time period (last day of current month by default)\n owner_id: Optional filter for meetings with a specific owner\n limit: Maximum number of meetings to return\n\n Returns:\n List of meetings with associated contact information\n ', 'inputSchema': {'type': 'object', 'title': 'get_scheduled_meetingsArguments', 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 10}, 'end_date': {'type': 'string', 'title': 'End Date', 'default': None}, 'owner_id': {'type': 'string', 'title': 'Owner Id', 'default': None}, 'start_date': {'type': 'string', 'title': 'Start Date', 'default': None}}}}, {'name': 'get_meeting_details', 'description': '\n Get detailed information about a specific meeting\n\n Args:\n meeting_id: ID of the meeting\n\n Returns:\n Detailed meeting information including attendees, notes, etc.\n ', 'inputSchema': {'type': 'object', 'title': 'get_meeting_detailsArguments', 'properties': {'meeting_id': {'type': 'string', 'title': 'meeting_id', 'default': None}}}}]
@kakao-yanoo-kim/prometheus-mcp-server-py
Prometheus MCP Server
Provide seamless access to Prometheus monitoring data through a Model Context Protocol server. Enable querying and retrieving Prometheus metrics securely with support for authentication and multi-tenant setups. Simplify integration of Prometheus data into LLM-based applications and workflows.
2025-05-02T05:16:07.667Z
0
https://smithery.ai/server/@kakao-yanoo-kim/prometheus-mcp-server-py
false
null
{ "scanPassed": true }
[{'name': 'execute_query', 'description': 'Execute a PromQL instant query against Prometheus', 'inputSchema': {'type': 'object', 'title': 'execute_queryArguments', 'required': ['query'], 'properties': {'time': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Time', 'default': None}, 'limit': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Limit', 'default': None}, 'query': {'type': 'string', 'title': 'Query'}, 'timeout': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Timeout', 'default': None}}}}, {'name': 'execute_range_query', 'description': 'Execute a PromQL range query with start time, end time, and step interval', 'inputSchema': {'type': 'object', 'title': 'execute_range_queryArguments', 'required': ['query', 'start', 'end', 'step'], 'properties': {'end': {'type': 'string', 'title': 'End'}, 'step': {'type': 'string', 'title': 'Step'}, 'limit': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Limit', 'default': None}, 'query': {'type': 'string', 'title': 'Query'}, 'start': {'type': 'string', 'title': 'Start'}, 'timeout': {'anyOf': [{'type': 'integer'}, {'type': 'null'}], 'title': 'Timeout', 'default': None}}}}, {'name': 'get_rules', 'description': 'Get all alerting and recording rules currently loaded in Prometheus', 'inputSchema': {'type': 'object', 'title': 'get_rulesArguments', 'properties': {'type': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Type', 'default': None}}}}, {'name': 'list_metrics', 'description': 'List all available metrics in Prometheus', 'inputSchema': {'type': 'object', 'title': 'list_metricsArguments', 'properties': {}}}, {'name': 'get_labels', 'description': 'List all available label names', 'inputSchema': {'type': 'object', 'title': 'get_labelsArguments', 'properties': {}}}, {'name': 'get_label_values', 'description': 'Get all values for a specific label', 'inputSchema': {'type': 'object', 'title': 'get_label_valuesArguments', 'required': ['label'], 'properties': {'label': {'type': 'string', 'title': 'Label'}}}}]
@davidkingzyb/scast
SCAST
Convert code into UML diagrams and flowcharts effortlessly. Analyze your code statically and visualize it using advanced tools like Mermaid and D3. Enhance your understanding of code structure and flow with this intuitive visualization tool.
2025-03-21T15:48:16.813Z
0
https://smithery.ai/server/@davidkingzyb/scast
false
null
{ "scanPassed": true }
[{'name': 'scast_anaylisis', 'description': '\nSCAST is a tool designed to assist users in analyzing and summarizing code through visualization. \nBy simply providing the folder path where the code is located, \nSCAST can perform static analysis on the code, helping users understand the code structure, explain its functionality.\ngenerate various visual charts such as UML diagrams, AST tree diagrams and Mermaid flowcharts.\n ', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['dir'], 'properties': {'dir': {'type': 'string'}}, 'additionalProperties': False}}]
@syia-ai/mcp_circular
Typesense and MongoDB Integrated MCP Server
Provide a unified MCP server that integrates Typesense search engine and MongoDB database to enable dynamic data retrieval and search capabilities. Easily configure and run the server with environment variables and included scripts to connect your LLM applications with powerful search and database resources. Simplify your development by leveraging this ready-to-use MCP server example for enhanced context integration.
2025-04-30T07:51:48.143Z
0
https://smithery.ai/server/@syia-ai/mcp_circular
false
null
{ "scanPassed": true }
[{'name': 'get_circulars_table_of_contents_by_maker', 'description': 'Retrieve a table of contents (ToC) listing all circulars related to a specific equipment maker.', 'inputSchema': {'type': 'object', 'required': ['maker'], 'properties': {'maker': {'type': 'string', 'description': "Name of the equipment maker. Example: 'MAN B&W'."}}, 'additionalProperties': False}}, {'name': 'search_circular_by_name_identifier', 'description': 'Search and retrieve circulars using any part of the document name or number.', 'inputSchema': {'type': 'object', 'required': ['document_name_or_num'], 'properties': {'document_name_or_num': {'type': 'string', 'description': "A text snippet containing part of the document name or number. Example: 'USI-40048-ERev.1_MET type Turbocharger Design change of MET Turbocharger locking washer'."}}, 'additionalProperties': False}}, {'name': 'search_circulars_by_maker_and_timeframe', 'description': 'Retrieve circulars for a specific maker issued within a date range.', 'inputSchema': {'type': 'object', 'required': ['maker', 'start_date', 'end_date'], 'properties': {'maker': {'type': 'string', 'description': "Name of the equipment maker. Example: 'MAN B&W', 'Wärtsilä'."}, 'end_date': {'type': 'string', 'description': "End date in YYYY-MM-DD format. Example: '2025-04-29'."}, 'start_date': {'type': 'string', 'description': "Start date in YYYY-MM-DD format. Example: '2023-10-28'."}}, 'additionalProperties': False}}, {'name': 'circular_general_search', 'description': 'This tool provides a flexible way to search circulars based on multiple parameters such as either maker name, document name or date range.', 'inputSchema': {'type': 'object', 'required': [], 'properties': {'maker': {'type': 'string', 'description': "The name of the equipment maker or manufacturer associated with the circular. Example: 'MAN B&W'."}, 'end_date': {'type': 'string', 'description': "End date in YYYY-MM-DD format. Example: '2025-04-29'."}, 'start_date': {'type': 'string', 'description': "Start date in YYYY-MM-DD format. Example: '2023-10-28'."}, 'document_name': {'type': 'string', 'description': "The name of the circular or document. Example: 'Engine Maintenance Update 2025-01'."}}, 'additionalProperties': False}}, {'name': 'get_typesense_schema', 'description': 'This tool retrieves Typesense schema and instructions on how to query a typesense table for a specific category.', 'inputSchema': {'type': 'object', 'required': ['category'], 'properties': {'category': {'enum': ['purchase', 'budget', 'expense', 'certificate', 'pms', 'crew', 'defect', 'voyage', 'caseFiles', 'diary_mails'], 'type': 'string', 'description': 'The category for which to retrieve the Typesense schema (e.g., purchase, voyage, certificates).'}}}}, {'name': 'mongodb_find', 'description': 'Search a MongoDB collection using a query', 'inputSchema': {'type': 'object', 'required': ['collection', 'query'], 'properties': {'skip': {'type': 'integer', 'description': 'Number of documents to skip (default: 0)'}, 'limit': {'type': 'integer', 'description': 'Maximum number of documents to return (default: 10)'}, 'query': {'type': 'object', 'description': 'MongoDB query in JSON format'}, 'collection': {'type': 'string', 'description': 'Name of the collection to search'}}}}, {'name': 'vessel_info_search', 'description': 'Retrieves information for a specific vessel.', 'inputSchema': {'type': 'object', 'required': ['query'], 'properties': {'query': {'type': 'string', 'description': 'The search query including the vessel name and what information you want to find.'}}}}]
@bombe89/mcp-servers-test
MCP Servers Test
Provide a test implementation of MCP servers to experiment with MCP features and integrations. Enable developers to validate and explore MCP capabilities in a controlled environment. Facilitate the development and testing of MCP-compliant tools and resources.
2025-04-28T12:18:14.489Z
0
https://smithery.ai/server/@bombe89/mcp-servers-test
false
null
{ "scanPassed": true }
[{'name': 'add', 'description': 'Add two integers.', 'inputSchema': {'type': 'object', 'title': 'addArguments', 'required': ['a', 'b'], 'properties': {'a': {'type': 'integer', 'title': 'A'}, 'b': {'type': 'integer', 'title': 'B'}}}}, {'name': 'multiply', 'description': 'Multiply two integers.', 'inputSchema': {'type': 'object', 'title': 'multiplyArguments', 'required': ['a', 'b'], 'properties': {'a': {'type': 'integer', 'title': 'A'}, 'b': {'type': 'integer', 'title': 'B'}}}}]
@zick987/mcp
MCP Server
Integrate your applications with real-world data and tools seamlessly. Access files, databases, and APIs while leveraging the power of language models to enhance your workflows. Simplify complex interactions and automate tasks with a standardized protocol.
2025-03-12T06:55:54.553Z
0
https://smithery.ai/server/@zick987/mcp
false
null
{ "scanPassed": true }
[{'name': 'get_alerts', 'description': 'Get weather alerts for a US state.\n\n Args:\n state: Two-letter US state code (e.g. CA, NY)\n ', 'inputSchema': {'type': 'object', 'title': 'get_alertsArguments', 'required': ['state'], 'properties': {'state': {'type': 'string', 'title': 'State'}}}}, {'name': 'get_forecast', 'description': 'Get weather forecast for a location.\n\n Args:\n latitude: Latitude of the location\n longitude: Longitude of the location\n ', 'inputSchema': {'type': 'object', 'title': 'get_forecastArguments', 'required': ['latitude', 'longitude'], 'properties': {'latitude': {'type': 'number', 'title': 'Latitude'}, 'longitude': {'type': 'number', 'title': 'Longitude'}}}}]
@prakasarao/mcp-server-rabbitmqkenlio
RabbitMQ Server
Enable LLMs to interact with RabbitMQ queues and topics seamlessly. Perform read and write operations on RabbitMQ instances through a standardized protocol. Simplify automation and integration of messaging workflows with LLMs.
2025-04-21T12:02:47.161Z
0
https://smithery.ai/server/@prakasarao/mcp-server-rabbitmqkenlio
false
null
{ "scanPassed": true }
[{'name': 'enqueue', 'description': 'Enqueue a message to a queue hosted on RabbitMQ', 'inputSchema': {'type': 'object', 'title': 'Enqueue', 'required': ['message', 'queue'], 'properties': {'queue': {'type': 'string', 'title': 'Queue', 'description': 'The name of the queue'}, 'message': {'type': 'string', 'title': 'Message', 'description': 'The message to publish'}}}}, {'name': 'fanout', 'description': 'Publish a message to an exchange with fanout type', 'inputSchema': {'type': 'object', 'title': 'Fanout', 'required': ['message', 'exchange'], 'properties': {'message': {'type': 'string', 'title': 'Message', 'description': 'The message to publish'}, 'exchange': {'type': 'string', 'title': 'Exchange', 'description': 'The name of the exchange'}}}}, {'name': 'list_queues', 'description': 'List all the queues in the broker', 'inputSchema': {'type': 'object', 'title': 'ListQueues', 'properties': {}}}, {'name': 'list_exchanges', 'description': 'List all the exchanges in the broker', 'inputSchema': {'type': 'object', 'title': 'ListExchanges', 'properties': {}}}, {'name': 'get_queue_info', 'description': 'Get detailed information about a specific queue', 'inputSchema': {'type': 'object', 'title': 'GetQueueInfo', 'required': ['queue'], 'properties': {'queue': {'type': 'string', 'title': 'Queue', 'description': 'The name of the queue to get info about'}, 'vhost': {'type': 'string', 'title': 'Vhost', 'default': '/', 'description': 'The virtual host where the queue exists'}}}}, {'name': 'delete_queue', 'description': 'Delete a specific queue', 'inputSchema': {'type': 'object', 'title': 'DeleteQueue', 'required': ['queue'], 'properties': {'queue': {'type': 'string', 'title': 'Queue', 'description': 'The name of the queue to delete'}, 'vhost': {'type': 'string', 'title': 'Vhost', 'default': '/', 'description': 'The virtual host where the queue exists'}}}}, {'name': 'purge_queue', 'description': 'Remove all messages from a specific queue', 'inputSchema': {'type': 'object', 'title': 'PurgeQueue', 'required': ['queue'], 'properties': {'queue': {'type': 'string', 'title': 'Queue', 'description': 'The name of the queue to purge'}, 'vhost': {'type': 'string', 'title': 'Vhost', 'default': '/', 'description': 'The virtual host where the queue exists'}}}}, {'name': 'delete_exchange', 'description': 'Delete a specific exchange', 'inputSchema': {'type': 'object', 'title': 'DeleteExchange', 'required': ['exchange'], 'properties': {'vhost': {'type': 'string', 'title': 'Vhost', 'default': '/', 'description': 'The virtual host where the exchange exists'}, 'exchange': {'type': 'string', 'title': 'Exchange', 'description': 'The name of the exchange to delete'}}}}, {'name': 'get_exchange_info', 'description': 'Get detailed information about a specific exchange', 'inputSchema': {'type': 'object', 'title': 'GetExchangeInfo', 'required': ['exchange'], 'properties': {'vhost': {'type': 'string', 'title': 'Vhost', 'default': '/', 'description': 'The virtual host where the exchange exists'}, 'exchange': {'type': 'string', 'title': 'Exchange', 'description': 'The name of the exchange to get info about'}}}}]
@thiagoainvestor/servers
GitHub API MCP Server
Manage your GitHub repositories effortlessly. Create, update, and search for files, issues, and pull requests with ease, all while preserving your Git history. Streamline your development workflow by automating repository management tasks.
2025-04-02T15:20:49.064Z
0
https://smithery.ai/server/@thiagoainvestor/servers
false
null
{ "scanPassed": true }
[{'name': 'create_or_update_file', 'description': 'Create or update a single file in a GitHub repository', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'path', 'content', 'message', 'branch'], 'properties': {'sha': {'type': 'string', 'description': 'SHA of the file being replaced (required when updating existing files)'}, 'path': {'type': 'string', 'description': 'Path where to create/update the file'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'branch': {'type': 'string', 'description': 'Branch to create/update the file in'}, 'content': {'type': 'string', 'description': 'Content of the file'}, 'message': {'type': 'string', 'description': 'Commit message'}}, 'additionalProperties': False}}, {'name': 'search_repositories', 'description': 'Search for GitHub repositories', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['query'], 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination (default: 1)'}, 'query': {'type': 'string', 'description': 'Search query (see GitHub search syntax)'}, 'perPage': {'type': 'number', 'description': 'Number of results per page (default: 30, max: 100)'}}, 'additionalProperties': False}}, {'name': 'create_repository', 'description': 'Create a new GitHub repository in your account', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['name'], 'properties': {'name': {'type': 'string', 'description': 'Repository name'}, 'private': {'type': 'boolean', 'description': 'Whether the repository should be private'}, 'autoInit': {'type': 'boolean', 'description': 'Initialize with README.md'}, 'description': {'type': 'string', 'description': 'Repository description'}}, 'additionalProperties': False}}, {'name': 'get_file_contents', 'description': 'Get the contents of a file or directory from a GitHub repository', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'path'], 'properties': {'path': {'type': 'string', 'description': 'Path to the file or directory'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'branch': {'type': 'string', 'description': 'Branch to get contents from'}}, 'additionalProperties': False}}, {'name': 'push_files', 'description': 'Push multiple files to a GitHub repository in a single commit', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'branch', 'files', 'message'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'files': {'type': 'array', 'items': {'type': 'object', 'required': ['path', 'content'], 'properties': {'path': {'type': 'string'}, 'content': {'type': 'string'}}, 'additionalProperties': False}, 'description': 'Array of files to push'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'branch': {'type': 'string', 'description': "Branch to push to (e.g., 'main' or 'master')"}, 'message': {'type': 'string', 'description': 'Commit message'}}, 'additionalProperties': False}}, {'name': 'create_issue', 'description': 'Create a new issue in a GitHub repository', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'title'], 'properties': {'body': {'type': 'string'}, 'repo': {'type': 'string'}, 'owner': {'type': 'string'}, 'title': {'type': 'string'}, 'labels': {'type': 'array', 'items': {'type': 'string'}}, 'assignees': {'type': 'array', 'items': {'type': 'string'}}, 'milestone': {'type': 'number'}}, 'additionalProperties': False}}, {'name': 'create_pull_request', 'description': 'Create a new pull request in a GitHub repository', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'title', 'head', 'base'], 'properties': {'base': {'type': 'string', 'description': 'The name of the branch you want the changes pulled into'}, 'body': {'type': 'string', 'description': 'Pull request body/description'}, 'head': {'type': 'string', 'description': 'The name of the branch where your changes are implemented'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'draft': {'type': 'boolean', 'description': 'Whether to create the pull request as a draft'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'title': {'type': 'string', 'description': 'Pull request title'}, 'maintainer_can_modify': {'type': 'boolean', 'description': 'Whether maintainers can modify the pull request'}}, 'additionalProperties': False}}, {'name': 'fork_repository', 'description': 'Fork a GitHub repository to your account or specified organization', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'organization': {'type': 'string', 'description': 'Optional: organization to fork to (defaults to your personal account)'}}, 'additionalProperties': False}}, {'name': 'create_branch', 'description': 'Create a new branch in a GitHub repository', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'branch'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'branch': {'type': 'string', 'description': 'Name for the new branch'}, 'from_branch': {'type': 'string', 'description': "Optional: source branch to create from (defaults to the repository's default branch)"}}, 'additionalProperties': False}}, {'name': 'list_commits', 'description': 'Get list of commits of a branch in a GitHub repository', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo'], 'properties': {'sha': {'type': 'string'}, 'page': {'type': 'number'}, 'repo': {'type': 'string'}, 'owner': {'type': 'string'}, 'perPage': {'type': 'number'}}, 'additionalProperties': False}}, {'name': 'list_issues', 'description': 'List issues in a GitHub repository with filtering options', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo'], 'properties': {'page': {'type': 'number'}, 'repo': {'type': 'string'}, 'sort': {'enum': ['created', 'updated', 'comments'], 'type': 'string'}, 'owner': {'type': 'string'}, 'since': {'type': 'string'}, 'state': {'enum': ['open', 'closed', 'all'], 'type': 'string'}, 'labels': {'type': 'array', 'items': {'type': 'string'}}, 'per_page': {'type': 'number'}, 'direction': {'enum': ['asc', 'desc'], 'type': 'string'}}, 'additionalProperties': False}}, {'name': 'update_issue', 'description': 'Update an existing issue in a GitHub repository', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'issue_number'], 'properties': {'body': {'type': 'string'}, 'repo': {'type': 'string'}, 'owner': {'type': 'string'}, 'state': {'enum': ['open', 'closed'], 'type': 'string'}, 'title': {'type': 'string'}, 'labels': {'type': 'array', 'items': {'type': 'string'}}, 'assignees': {'type': 'array', 'items': {'type': 'string'}}, 'milestone': {'type': 'number'}, 'issue_number': {'type': 'number'}}, 'additionalProperties': False}}, {'name': 'add_issue_comment', 'description': 'Add a comment to an existing issue', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'issue_number', 'body'], 'properties': {'body': {'type': 'string'}, 'repo': {'type': 'string'}, 'owner': {'type': 'string'}, 'issue_number': {'type': 'number'}}, 'additionalProperties': False}}, {'name': 'search_code', 'description': 'Search for code across GitHub repositories', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['q'], 'properties': {'q': {'type': 'string'}, 'page': {'type': 'number', 'minimum': 1}, 'order': {'enum': ['asc', 'desc'], 'type': 'string'}, 'per_page': {'type': 'number', 'maximum': 100, 'minimum': 1}}, 'additionalProperties': False}}, {'name': 'search_issues', 'description': 'Search for issues and pull requests across GitHub repositories', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['q'], 'properties': {'q': {'type': 'string'}, 'page': {'type': 'number', 'minimum': 1}, 'sort': {'enum': ['comments', 'reactions', 'reactions-+1', 'reactions--1', 'reactions-smile', 'reactions-thinking_face', 'reactions-heart', 'reactions-tada', 'interactions', 'created', 'updated'], 'type': 'string'}, 'order': {'enum': ['asc', 'desc'], 'type': 'string'}, 'per_page': {'type': 'number', 'maximum': 100, 'minimum': 1}}, 'additionalProperties': False}}, {'name': 'search_users', 'description': 'Search for users on GitHub', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['q'], 'properties': {'q': {'type': 'string'}, 'page': {'type': 'number', 'minimum': 1}, 'sort': {'enum': ['followers', 'repositories', 'joined'], 'type': 'string'}, 'order': {'enum': ['asc', 'desc'], 'type': 'string'}, 'per_page': {'type': 'number', 'maximum': 100, 'minimum': 1}}, 'additionalProperties': False}}, {'name': 'get_issue', 'description': 'Get details of a specific issue in a GitHub repository.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'issue_number'], 'properties': {'repo': {'type': 'string'}, 'owner': {'type': 'string'}, 'issue_number': {'type': 'number'}}, 'additionalProperties': False}}, {'name': 'get_pull_request', 'description': 'Get details of a specific pull request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'pull_number'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'pull_number': {'type': 'number', 'description': 'Pull request number'}}, 'additionalProperties': False}}, {'name': 'list_pull_requests', 'description': 'List and filter repository pull requests', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo'], 'properties': {'base': {'type': 'string', 'description': 'Filter by base branch name'}, 'head': {'type': 'string', 'description': 'Filter by head user or head organization and branch name'}, 'page': {'type': 'number', 'description': 'Page number of the results'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'sort': {'enum': ['created', 'updated', 'popularity', 'long-running'], 'type': 'string', 'description': 'What to sort results by'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'state': {'enum': ['open', 'closed', 'all'], 'type': 'string', 'description': 'State of the pull requests to return'}, 'per_page': {'type': 'number', 'description': 'Results per page (max 100)'}, 'direction': {'enum': ['asc', 'desc'], 'type': 'string', 'description': 'The direction of the sort'}}, 'additionalProperties': False}}, {'name': 'create_pull_request_review', 'description': 'Create a review on a pull request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'pull_number', 'body', 'event'], 'properties': {'body': {'type': 'string', 'description': 'The body text of the review'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'event': {'enum': ['APPROVE', 'REQUEST_CHANGES', 'COMMENT'], 'type': 'string', 'description': 'The review action to perform'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'comments': {'type': 'array', 'items': {'type': 'object', 'required': ['path', 'position', 'body'], 'properties': {'body': {'type': 'string', 'description': 'Text of the review comment'}, 'path': {'type': 'string', 'description': 'The relative path to the file being commented on'}, 'position': {'type': 'number', 'description': 'The position in the diff where you want to add a review comment'}}, 'additionalProperties': False}, 'description': 'Comments to post as part of the review'}, 'commit_id': {'type': 'string', 'description': 'The SHA of the commit that needs a review'}, 'pull_number': {'type': 'number', 'description': 'Pull request number'}}, 'additionalProperties': False}}, {'name': 'merge_pull_request', 'description': 'Merge a pull request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'pull_number'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'pull_number': {'type': 'number', 'description': 'Pull request number'}, 'commit_title': {'type': 'string', 'description': 'Title for the automatic commit message'}, 'merge_method': {'enum': ['merge', 'squash', 'rebase'], 'type': 'string', 'description': 'Merge method to use'}, 'commit_message': {'type': 'string', 'description': 'Extra detail to append to automatic commit message'}}, 'additionalProperties': False}}, {'name': 'get_pull_request_files', 'description': 'Get the list of files changed in a pull request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'pull_number'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'pull_number': {'type': 'number', 'description': 'Pull request number'}}, 'additionalProperties': False}}, {'name': 'get_pull_request_status', 'description': 'Get the combined status of all status checks for a pull request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'pull_number'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'pull_number': {'type': 'number', 'description': 'Pull request number'}}, 'additionalProperties': False}}, {'name': 'update_pull_request_branch', 'description': 'Update a pull request branch with the latest changes from the base branch', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'pull_number'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'pull_number': {'type': 'number', 'description': 'Pull request number'}, 'expected_head_sha': {'type': 'string', 'description': "The expected SHA of the pull request's HEAD ref"}}, 'additionalProperties': False}}, {'name': 'get_pull_request_comments', 'description': 'Get the review comments on a pull request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'pull_number'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'pull_number': {'type': 'number', 'description': 'Pull request number'}}, 'additionalProperties': False}}, {'name': 'get_pull_request_reviews', 'description': 'Get the reviews on a pull request', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['owner', 'repo', 'pull_number'], 'properties': {'repo': {'type': 'string', 'description': 'Repository name'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'pull_number': {'type': 'number', 'description': 'Pull request number'}}, 'additionalProperties': False}}]
@lingxingchi/mcp-server-browserbase
Browserbase Server
Enable LLMs to automate and interact with web browsers in the cloud. Perform tasks such as navigating web pages, extracting structured data, capturing screenshots, executing JavaScript, and monitoring browser console logs. Enhance AI workflows with seamless browser control and data extraction capabilities.
2025-04-22T09:45:40.120Z
0
https://smithery.ai/server/@lingxingchi/mcp-server-browserbase
false
null
{ "scanPassed": true }
[{'name': 'browserbase_create_session', 'description': 'Create a new cloud browser session using Browserbase', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}, {'name': 'browserbase_navigate', 'description': 'Navigate to a URL', 'inputSchema': {'type': 'object', 'required': ['url'], 'properties': {'url': {'type': 'string'}}}}, {'name': 'browserbase_screenshot', 'description': 'Takes a screenshot of the current page. Use this tool to learn where you are on the page when controlling the browser with Stagehand. Only use this tool when the other tools are not sufficient to get the information you need.', 'inputSchema': {'type': 'object', 'properties': {}}}, {'name': 'browserbase_click', 'description': 'Click an element on the page', 'inputSchema': {'type': 'object', 'required': ['selector'], 'properties': {'selector': {'type': 'string', 'description': 'CSS selector for element to click'}}}}, {'name': 'browserbase_fill', 'description': 'Fill out an input field', 'inputSchema': {'type': 'object', 'required': ['selector', 'value'], 'properties': {'value': {'type': 'string', 'description': 'Value to fill'}, 'selector': {'type': 'string', 'description': 'CSS selector for input field'}}}}, {'name': 'browserbase_get_text', 'description': 'Extract all text content from the current page', 'inputSchema': {'type': 'object', 'required': [], 'properties': {}}}]
@tuskermanshu/compress-mcp-server
Compress Files
Provides file compression and decompression services, supporting multiple formats such as gzip, tar.gz, ZIP, and 7z. Simplifies file processing workflows through standardized interfaces, ensuring security and efficiency.
2025-03-27T03:26:04.160Z
0
https://smithery.ai/server/@tuskermanshu/compress-mcp-server
false
null
{ "scanPassed": true }
[{'name': 'zip', 'description': 'Compress a single file using gzip format. Specify output directory, filename, and compression level. Supports progress reporting.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sourceFilePath'], 'properties': {'outputFileName': {'type': 'string', 'description': 'Output filename (defaults to original filename + .gz)'}, 'sourceFilePath': {'type': 'string', 'minLength': 1, 'description': 'Path to the file to compress'}, 'outputDirectory': {'type': 'string', 'description': 'Output directory (defaults to source file directory)'}, 'compressionLevel': {'type': 'integer', 'default': 6, 'maximum': 9, 'minimum': 1, 'description': 'Compression level (1-9), higher values provide better compression but slower speed'}}, 'additionalProperties': False}}, {'name': 'unzip', 'description': 'Decompress gzip files. Specify output directory and filename. Supports progress reporting. Suitable for decompressing .gz files.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sourceFilePath'], 'properties': {'outputFileName': {'type': 'string', 'description': 'Output filename (defaults to original file name without .gz suffix)'}, 'sourceFilePath': {'type': 'string', 'minLength': 1, 'description': 'Path to the gzip file to decompress'}, 'outputDirectory': {'type': 'string', 'description': "Output directory (defaults to source file's directory)"}}, 'additionalProperties': False}}, {'name': 'list-zip-contents', 'description': 'Preview the contents of a gzip compressed file. Specify preview length in bytes. Useful for viewing .gz file contents without full decompression.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sourceFilePath'], 'properties': {'previewLength': {'type': 'integer', 'default': 1000, 'maximum': 10000, 'description': 'Number of bytes to preview, defaults to 1000 bytes, maximum 10000 bytes', 'exclusiveMinimum': 0}, 'sourceFilePath': {'type': 'string', 'minLength': 1, 'description': 'Path to the gzip file to view'}}, 'additionalProperties': False}}, {'name': 'zip-folder', 'description': 'Compress folders to tar.gz format. Specify output directory, filename, and compression level. Supports progress reporting.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sourceFolderPath'], 'properties': {'outputFileName': {'type': 'string', 'description': 'Output filename (defaults to original folder name + .tar.gz)'}, 'outputDirectory': {'type': 'string', 'description': "Output directory (defaults to source folder's directory)"}, 'compressionLevel': {'type': 'integer', 'default': 6, 'maximum': 9, 'minimum': 1, 'description': 'Compression level (1-9), higher values provide better compression but slower speed'}, 'sourceFolderPath': {'type': 'string', 'minLength': 1, 'description': 'Path to the folder to compress'}}, 'additionalProperties': False}}, {'name': 'unzip-folder', 'description': 'Extract tar.gz format compressed folders. Specify output directory and directory level stripping options. Supports progress reporting.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sourceArchivePath'], 'properties': {'outputDirectory': {'type': 'string', 'description': "Output directory (defaults to source archive's directory)"}, 'stripComponents': {'type': 'integer', 'default': 0, 'minimum': 0, 'description': 'Number of directory levels to strip during extraction (default is 0, keeping original directory structure)'}, 'sourceArchivePath': {'type': 'string', 'minLength': 1, 'description': 'Path to the tar.gz file to extract'}}, 'additionalProperties': False}}, {'name': 'zip-archive', 'description': 'Use ZIP format to compress files or folders. Specify output directory, filename, and compression level. Supports progress reporting.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sourcePath'], 'properties': {'sourcePath': {'type': 'string', 'minLength': 1, 'description': '要压缩的文件或文件夹路径'}, 'outputFileName': {'type': 'string', 'description': '输出文件名(默认为原文件或文件夹名+.zip)'}, 'outputDirectory': {'type': 'string', 'description': '输出目录(默认为源文件所在目录)'}, 'compressionLevel': {'type': 'integer', 'default': 6, 'maximum': 9, 'minimum': 1, 'description': '压缩级别 (1-9),值越大压缩比越高但速度越慢'}}, 'additionalProperties': False}}, {'name': '7z-archive', 'description': 'Use 7z format to compress files or folders. Specify output directory, filename, and compression level. Supports progress reporting. Requires 7-Zip to be installed on the system.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['sourcePath'], 'properties': {'sourcePath': {'type': 'string', 'minLength': 1, 'description': 'Path to the file or folder to compress'}, 'outputFileName': {'type': 'string', 'description': 'Output filename (defaults to original file or folder name + .7z)'}, 'outputDirectory': {'type': 'string', 'description': "Output directory (defaults to source file's directory)"}, 'compressionLevel': {'type': 'integer', 'default': 6, 'maximum': 9, 'minimum': 1, 'description': 'Compression level (1-9), higher values provide better compression but slower speed'}}, 'additionalProperties': False}}, {'name': 'compression', 'description': 'Unified compression tool that supports multiple operations (compress, decompress, list) and formats.\nThis tool consolidates all compression functionality into a single interface.\n\nFormats supported: gzip\n\nOperations:\n- compress: Compress a file or directory\n- decompress: Extract a compressed file\n- list: Show contents of a compressed file\n\nEach operation has specific parameters. See examples below.', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['operation', 'format', 'sourcePath'], 'properties': {'format': {'type': 'string', 'minLength': 1}, 'operation': {'enum': ['compress', 'decompress', 'list'], 'type': 'string'}, 'sourcePath': {'type': 'string', 'minLength': 1}, 'previewLength': {'type': 'number', 'default': 1000, 'maximum': 10000, 'minimum': 1}, 'outputFileName': {'type': 'string'}, 'outputDirectory': {'type': 'string'}, 'stripComponents': {'type': 'number', 'default': 0, 'minimum': 0}, 'compressionLevel': {'type': 'number', 'default': 6, 'maximum': 9, 'minimum': 1}}, 'additionalProperties': False}}]
@dragons96/mcp-undetected-chromedriver
mcp-undetected-chromedriver
An MCP service built on undetected-chromedriver, providing a comprehensive interface for automating Chrome browser control while bypassing anti-bot detection.
2025-04-18T08:57:35.629Z
0
https://smithery.ai/server/@dragons96/mcp-undetected-chromedriver
false
null
null
[{'name': 'browser_navigate', 'description': 'Navigate to a URL\n\n Args:\n url: The URL to navigate to - required\n timeout: The timeout for the navigation - optional, default is 30000\n ', 'inputSchema': {'type': 'object', 'title': 'browser_navigateArguments', 'required': ['url'], 'properties': {'url': {'type': 'string', 'title': 'Url'}, 'timeout': {'type': 'integer', 'title': 'Timeout', 'default': 30000}}}}, {'name': 'browser_screenshot', 'description': 'Take a screenshot of the current page or a specific element\n\n Args:\n name: The name of the screenshot - required, default is "screenshot"\n storeBase64: Whether to store the screenshot as a base64 string - optional, default is True\n downloadsDir: The directory to save the screenshot to - optional, default is the user\'s Downloads directory\n ', 'inputSchema': {'type': 'object', 'title': 'browser_screenshotArguments', 'required': ['name'], 'properties': {'name': {'type': 'string', 'title': 'Name'}, 'storeBase64': {'type': 'boolean', 'title': 'Storebase64', 'default': True}, 'downloadsDir': {'type': 'string', 'title': 'Downloadsdir', 'default': None}}}}, {'name': 'browser_click', 'description': 'Click an element on the page\n\n Args:\n selector: The selector of the element to click - required\n ', 'inputSchema': {'type': 'object', 'title': 'browser_clickArguments', 'required': ['selector'], 'properties': {'selector': {'type': 'string', 'title': 'Selector'}}}}, {'name': 'browser_iframe_click', 'description': 'Click an element inside an iframe on the page\n\n Args:\n iframeSelector: The selector of the iframe - required\n selector: The selector of the element to click - required\n ', 'inputSchema': {'type': 'object', 'title': 'browser_iframe_clickArguments', 'required': ['iframeSelector', 'selector'], 'properties': {'selector': {'type': 'string', 'title': 'Selector'}, 'iframeSelector': {'type': 'string', 'title': 'Iframeselector'}}}}, {'name': 'browser_fill', 'description': 'fill out an input field\n\n Args:\n selector: CSS selector for input field - required\n value: The value to fill - required\n ', 'inputSchema': {'type': 'object', 'title': 'browser_fillArguments', 'required': ['selector', 'value'], 'properties': {'value': {'type': 'string', 'title': 'Value'}, 'selector': {'type': 'string', 'title': 'Selector'}}}}, {'name': 'browser_select', 'description': 'Select an element on the page with Select tag\n\n Args:\n selector: CSS selector for element to select - required\n value: The value to select - required\n ', 'inputSchema': {'type': 'object', 'title': 'browser_selectArguments', 'required': ['selector', 'value'], 'properties': {'value': {'type': 'string', 'title': 'Value'}, 'selector': {'type': 'string', 'title': 'Selector'}}}}, {'name': 'browser_hover', 'description': 'Hover over an element on the page\n\n Args:\n selector: CSS selector for element to hover over - required\n ', 'inputSchema': {'type': 'object', 'title': 'browser_hoverArguments', 'required': ['selector'], 'properties': {'selector': {'type': 'string', 'title': 'Selector'}}}}, {'name': 'browser_evalute', 'description': 'Evaluate a JavaScript expression in the browser console\n\n Args:\n script: The JavaScript expression to evaluate - required\n ', 'inputSchema': {'type': 'object', 'title': 'browser_evaluteArguments', 'required': ['script'], 'properties': {'script': {'type': 'string', 'title': 'Script'}}}}, {'name': 'browser_close', 'description': 'Close the browser and release all resources', 'inputSchema': {'type': 'object', 'title': 'browser_closeArguments', 'properties': {}}}, {'name': 'browser_get_visible_text', 'description': 'Get the visible text of the current page', 'inputSchema': {'type': 'object', 'title': 'browser_get_visible_textArguments', 'properties': {}}}, {'name': 'browser_get_visible_html', 'description': 'Get the HTML of the current page', 'inputSchema': {'type': 'object', 'title': 'browser_get_visible_htmlArguments', 'properties': {}}}, {'name': 'browser_go_back', 'description': 'Navigate back in browser history', 'inputSchema': {'type': 'object', 'title': 'browser_go_backArguments', 'properties': {}}}, {'name': 'browser_go_forward', 'description': 'Navigate forward in browser history', 'inputSchema': {'type': 'object', 'title': 'browser_go_forwardArguments', 'properties': {}}}, {'name': 'browser_drag', 'description': 'Drag an element to another element\n\n Args:\n sourceSelector: The selector for the element to drag - required\n targetSelector: The selector for the target location - required\n ', 'inputSchema': {'type': 'object', 'title': 'browser_dragArguments', 'required': ['sourceSelector', 'targetSelector'], 'properties': {'sourceSelector': {'type': 'string', 'title': 'Sourceselector'}, 'targetSelector': {'type': 'string', 'title': 'Targetselector'}}}}, {'name': 'browser_press_key', 'description': "Press a key on the keyboard\n\n Args:\n key: The key to press - required, (e.g. 'Enter', 'ArrowDown', 'a')\n selector: Optional CSS selector to focus on before pressing the key - optional\n ", 'inputSchema': {'type': 'object', 'title': 'browser_press_keyArguments', 'required': ['key'], 'properties': {'key': {'type': 'string', 'title': 'Key'}, 'selector': {'type': 'string', 'title': 'Selector', 'default': None}}}}, {'name': 'browser_save_as_pdf', 'description': 'Save the current page as a PDF\n\n Args:\n outputPath: The path to save the PDF to - required\n filename: The name of the PDF file - optional, default is "page.pdf"\n format: The format of the PDF - optional, default is "A4" (e.g. "A4", "LETTER", "LEGAL", "TABLOID")\n printBackground: Whether to print the background - optional, default is True\n margin: The margin of the PDF - optional, default is None (e.g. {"top": "1cm", "right": "1cm", "bottom": "1cm", "left": "1cm"})\n ', 'inputSchema': {'type': 'object', 'title': 'browser_save_as_pdfArguments', 'required': ['outputPath'], 'properties': {'format': {'type': 'string', 'title': 'Format', 'default': 'A4'}, 'margin': {'type': 'object', 'title': 'Margin', 'default': None, 'additionalProperties': True}, 'filename': {'type': 'string', 'title': 'Filename', 'default': 'page.pdf'}, 'outputPath': {'type': 'string', 'title': 'Outputpath'}, 'printBackground': {'type': 'boolean', 'title': 'Printbackground', 'default': True}}}}]
@Swayingleaves/cockroachdb-mcp-server
CockroachDB MCP Server
Connect directly to your CockroachDB database and execute SQL queries seamlessly. Retrieve table structures, manage connections, and utilize SQL query templates to enhance your database interactions. Experience automatic reconnection and detailed logging for troubleshooting.
2025-03-13T02:06:30.681Z
0
https://smithery.ai/server/@Swayingleaves/cockroachdb-mcp-server
false
null
{ "scanPassed": true }
[{'name': 'connect_database', 'description': '连接到CockroachDB数据库。\n \n Args:\n jdbc_url: JDBC连接URL (例如: jdbc:postgresql://localhost:26257/defaultdb)\n username: 数据库用户名\n password: 数据库密码\n ', 'inputSchema': {'type': 'object', 'title': 'connect_databaseArguments', 'required': ['jdbc_url', 'username', 'password'], 'properties': {'jdbc_url': {'type': 'string', 'title': 'Jdbc Url'}, 'password': {'type': 'string', 'title': 'Password'}, 'username': {'type': 'string', 'title': 'Username'}}}}, {'name': 'disconnect_database', 'description': '断开与数据库的连接。\n \n Returns:\n 断开连接的结果\n ', 'inputSchema': {'type': 'object', 'title': 'disconnect_databaseArguments', 'properties': {}}}, {'name': 'get_tables', 'description': '获取数据库中的所有表。\n \n Returns:\n 包含表信息的字典\n ', 'inputSchema': {'type': 'object', 'title': 'get_tablesArguments', 'properties': {}}}, {'name': 'get_table_schema', 'description': '获取指定表的结构信息。\n \n Args:\n table_name: 表名\n \n Returns:\n 包含表结构信息的字典\n ', 'inputSchema': {'type': 'object', 'title': 'get_table_schemaArguments', 'required': ['table_name'], 'properties': {'table_name': {'type': 'string', 'title': 'Table Name'}}}}, {'name': 'execute_query', 'description': '执行SQL查询。\n \n Args:\n query: SQL查询语句\n \n Returns:\n 查询结果或影响的行数\n ', 'inputSchema': {'type': 'object', 'title': 'execute_queryArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}}}}, {'name': 'initialize_connection', 'description': '初始化连接,当客户端连接时调用。\n \n Args:\n jdbc_url: JDBC连接URL (例如: jdbc:postgresql://localhost:26257/defaultdb)\n username: 数据库用户名\n password: 数据库密码\n \n Returns:\n 初始化结果\n ', 'inputSchema': {'type': 'object', 'title': 'initialize_connectionArguments', 'required': ['jdbc_url', 'username', 'password'], 'properties': {'jdbc_url': {'type': 'string', 'title': 'Jdbc Url'}, 'password': {'type': 'string', 'title': 'Password'}, 'username': {'type': 'string', 'title': 'Username'}}}}]
@Swayingleaves/cockroachdb-mcp-server
CockroachDB MCP Server
Connect directly to your CockroachDB database and execute SQL queries seamlessly. Retrieve table structures, manage connections, and utilize SQL query templates to enhance your database interactions. Experience automatic reconnection and detailed logging for troubleshooting.
2025-03-13T02:06:30.681Z
0
https://smithery.ai/server/@Swayingleaves/cockroachdb-mcp-server
false
null
{ "scanPassed": true }
[{'name': 'connect_database', 'description': '连接到CockroachDB数据库。\n \n Args:\n jdbc_url: JDBC连接URL (例如: jdbc:postgresql://localhost:26257/defaultdb)\n username: 数据库用户名\n password: 数据库密码\n ', 'inputSchema': {'type': 'object', 'title': 'connect_databaseArguments', 'required': ['jdbc_url', 'username', 'password'], 'properties': {'jdbc_url': {'type': 'string', 'title': 'Jdbc Url'}, 'password': {'type': 'string', 'title': 'Password'}, 'username': {'type': 'string', 'title': 'Username'}}}}, {'name': 'disconnect_database', 'description': '断开与数据库的连接。\n \n Returns:\n 断开连接的结果\n ', 'inputSchema': {'type': 'object', 'title': 'disconnect_databaseArguments', 'properties': {}}}, {'name': 'get_tables', 'description': '获取数据库中的所有表。\n \n Returns:\n 包含表信息的字典\n ', 'inputSchema': {'type': 'object', 'title': 'get_tablesArguments', 'properties': {}}}, {'name': 'get_table_schema', 'description': '获取指定表的结构信息。\n \n Args:\n table_name: 表名\n \n Returns:\n 包含表结构信息的字典\n ', 'inputSchema': {'type': 'object', 'title': 'get_table_schemaArguments', 'required': ['table_name'], 'properties': {'table_name': {'type': 'string', 'title': 'Table Name'}}}}, {'name': 'execute_query', 'description': '执行SQL查询。\n \n Args:\n query: SQL查询语句\n \n Returns:\n 查询结果或影响的行数\n ', 'inputSchema': {'type': 'object', 'title': 'execute_queryArguments', 'required': ['query'], 'properties': {'query': {'type': 'string', 'title': 'Query'}}}}, {'name': 'initialize_connection', 'description': '初始化连接,当客户端连接时调用。\n \n Args:\n jdbc_url: JDBC连接URL (例如: jdbc:postgresql://localhost:26257/defaultdb)\n username: 数据库用户名\n password: 数据库密码\n \n Returns:\n 初始化结果\n ', 'inputSchema': {'type': 'object', 'title': 'initialize_connectionArguments', 'required': ['jdbc_url', 'username', 'password'], 'properties': {'jdbc_url': {'type': 'string', 'title': 'Jdbc Url'}, 'password': {'type': 'string', 'title': 'Password'}, 'username': {'type': 'string', 'title': 'Username'}}}}]
@mateusribeirocampos/npm-mcp-server
NPM MCP Server
Fetch detailed information about npm packages and discover the most popular ones. Enhance your development workflow by integrating package insights directly into your applications.
2025-03-26T20:32:42.191Z
0
https://smithery.ai/server/@mateusribeirocampos/npm-mcp-server
false
null
{ "scanPassed": true }
[{'name': 'searchNpmPackage', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['packageName'], 'properties': {'packageName': {'type': 'string'}}, 'additionalProperties': False}}]
@mateusribeirocampos/npm-mcp-server
NPM MCP Server
Fetch detailed information about npm packages and discover the most popular ones. Enhance your development workflow by integrating package insights directly into your applications.
2025-03-26T20:32:42.191Z
0
https://smithery.ai/server/@mateusribeirocampos/npm-mcp-server
false
null
{ "scanPassed": true }
[{'name': 'searchNpmPackage', 'inputSchema': {'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['packageName'], 'properties': {'packageName': {'type': 'string'}}, 'additionalProperties': False}}]