server_name
stringclasses 156
values | category
stringclasses 1
value | tool
stringlengths 176
38.2k
|
---|---|---|
razorpay
|
other
|
{'type': 'function', 'name': 'fetch_saved_cards_with_contact', 'description': 'Get all saved payment methods (cards, UPI, wallets, etc.) for a contact number. This tool first finds or creates a customer with the given contact number, then fetches all saved payment tokens associated with that customer including credit/debit cards, UPI IDs, digital wallets, and other tokenized payment instruments.', 'parameters': {'type': 'object', 'properties': {'contact': {'type': 'string', 'description': 'Contact number of the customer to fetch all saved payment methods for. For example, 9876543210 or +919876543210'}}, 'required': ['contact'], 'additionalProperties': False}, 'strict': True}
|
razorpay
|
other
|
{'type': 'function', 'name': 'fetch_settlement_recon_details', 'description': 'Fetch settlement reconciliation report for a specific time period', 'parameters': {'type': 'object', 'properties': {'count': {'type': 'number', 'description': 'Optional: Number of records to fetch (default: 10, max: 100)'}, 'day': {'type': 'number', 'description': 'Optional: Day for which the settlement report is requested (DD format)'}, 'month': {'type': 'number', 'description': 'Month for which the settlement report is requested (MM format)'}, 'skip': {'type': 'number', 'description': 'Optional: Number of records to skip for pagination'}, 'year': {'type': 'number', 'description': 'Year for which the settlement report is requested (YYYY format)'}}, 'required': ['year', 'month'], 'additionalProperties': False}, 'strict': True}
|
razorpay
|
other
|
{'type': 'function', 'name': 'fetch_settlement_with_id', 'description': 'Fetch details of a specific settlement using its ID', 'parameters': {'type': 'object', 'properties': {'settlement_id': {'type': 'string', 'description': "The ID of the settlement to fetch.ID starts with the 'setl_'"}}, 'required': ['settlement_id'], 'additionalProperties': False}, 'strict': True}
|
razorpay
|
other
|
{'type': 'function', 'name': 'fetch_specific_refund_for_payment', 'description': 'Use this tool to retrieve details of a specific refund made for a payment.', 'parameters': {'type': 'object', 'properties': {'payment_id': {'type': 'string', 'description': 'Unique identifier of the payment for which the refund has been made. ID should have a pay_ prefix.'}, 'refund_id': {'type': 'string', 'description': 'Unique identifier of the refund to be retrieved. ID should have a rfnd_ prefix.'}}, 'required': ['payment_id', 'refund_id'], 'additionalProperties': False}, 'strict': True}
|
razorpay
|
other
|
{'type': 'function', 'name': 'initiate_payment', 'description': 'Initiate a payment using the S2S JSON v1 flow with required parameters: amount, order_id, and token. Supports optional parameters like email and contact. Returns payment details including next action steps if required.', 'parameters': {'type': 'object', 'properties': {'amount': {'type': 'number', 'description': 'Payment amount in the smallest currency sub-unit (e.g., for ₹100, use 10000)', 'minimum': 100}, 'contact': {'type': 'string', 'description': "Customer's phone number"}, 'currency': {'type': 'string', 'description': "Currency code for the payment. Default is 'INR'"}, 'email': {'type': 'string', 'description': "Customer's email address (optional)"}, 'order_id': {'type': 'string', 'description': "Order ID for which the payment is being initiated. Must start with 'order_'"}, 'token': {'type': 'string', 'description': "Token ID of the saved payment method. Must start with 'token_'"}}, 'required': ['amount', 'token', 'order_id'], 'additionalProperties': False}, 'strict': True}
|
razorpay
|
other
|
{'type': 'function', 'name': 'payment_link_notify', 'description': 'Send or resend notification for a payment link via SMS or email.', 'parameters': {'type': 'object', 'properties': {'medium': {'type': 'string', 'description': "Medium through which to send the notification. Must be either 'sms' or 'email'.", 'enum': ['sms', 'email']}, 'payment_link_id': {'type': 'string', 'description': 'ID of the payment link for which to send notification (ID should have a plink_ prefix).'}}, 'required': ['payment_link_id', 'medium'], 'additionalProperties': False}, 'strict': True}
|
razorpay
|
other
|
{'type': 'function', 'name': 'payment_link_upi_create', 'description': 'Create a new UPI payment link in Razorpay with a specified amount and additional options.', 'parameters': {'type': 'object', 'properties': {'accept_partial': {'type': 'boolean', 'description': 'Indicates whether customers can make partial payments using the Payment Link. Default: false'}, 'amount': {'type': 'number', 'description': 'Amount to be paid using the link in smallest currency unit(e.g., ₹300, use 30000), Only accepted currency is INR', 'minimum': 100}, 'callback_method': {'type': 'string', 'description': "HTTP method for callback redirection. Must be 'get' if callback_url is set."}, 'callback_url': {'type': 'string', 'description': 'If specified, adds a redirect URL to the Payment Link. Customer will be redirected here after payment.'}, 'currency': {'type': 'string', 'description': 'Three-letter ISO code for the currency (e.g., INR). UPI links are only supported in INR'}, 'customer_contact': {'type': 'string', 'description': 'Contact number of the customer.'}, 'customer_email': {'type': 'string', 'description': 'Email address of the customer.'}, 'customer_name': {'type': 'string', 'description': 'Name of the customer.'}, 'description': {'type': 'string', 'description': 'A brief description of the Payment Link explaining the intent of the payment.'}, 'expire_by': {'type': 'number', 'description': 'Timestamp, in Unix, when the Payment Link will expire. By default, a Payment Link will be valid for six months.'}, 'first_min_partial_amount': {'type': 'number', 'description': 'Minimum amount that must be paid by the customer as the first partial payment. Default value is 100.'}, 'notes': {'type': 'object', 'description': 'Key-value pairs that can be used to store additional information. Maximum 15 pairs, each value limited to 256 characters.'}, 'notify_email': {'type': 'boolean', 'description': 'Send email notifications for the Payment Link.'}, 'notify_sms': {'type': 'boolean', 'description': 'Send SMS notifications for the Payment Link.'}, 'reference_id': {'type': 'string', 'description': 'Reference number tagged to a Payment Link. Must be unique for each Payment Link. Max 40 characters.'}, 'reminder_enable': {'type': 'boolean', 'description': 'Enable payment reminders for the Payment Link.'}}, 'required': ['amount', 'currency'], 'additionalProperties': False}, 'strict': True}
|
razorpay
|
other
|
{'type': 'function', 'name': 'resend_otp', 'description': "Resend OTP to the customer's registered mobile number if the previous OTP was not received or has expired.", 'parameters': {'type': 'object', 'properties': {'payment_id': {'type': 'string', 'description': "Unique identifier of the payment for which OTP needs to be generated. Must start with 'pay_'"}}, 'required': ['payment_id'], 'additionalProperties': False}, 'strict': True}
|
razorpay
|
other
|
{'type': 'function', 'name': 'submit_otp', 'description': 'Verify and submit the OTP received by the customer to complete the payment authentication process.', 'parameters': {'type': 'object', 'properties': {'otp_string': {'type': 'string', 'description': 'OTP string received from the user'}, 'payment_id': {'type': 'string', 'description': "Unique identifier of the payment for which OTP needs to be submitted. Must start with 'pay_'"}}, 'required': ['otp_string', 'payment_id'], 'additionalProperties': False}, 'strict': True}
|
razorpay
|
other
|
{'type': 'function', 'name': 'update_order', 'description': 'Use this tool to update the notes for a specific order. Only the notes field can be modified.', 'parameters': {'type': 'object', 'properties': {'notes': {'type': 'object', 'description': 'Key-value pairs used to store additional information about the order. A maximum of 15 key-value pairs can be included, with each value not exceeding 256 characters.'}, 'order_id': {'type': 'string', 'description': 'Unique identifier of the order which needs to be updated. ID should have an order_ prefix.'}}, 'required': ['order_id', 'notes'], 'additionalProperties': False}, 'strict': True}
|
razorpay
|
other
|
{'type': 'function', 'name': 'update_payment', 'description': 'Use this tool to update the notes field of a payment. Notes are key-value pairs that can be used to store additional information.', 'parameters': {'type': 'object', 'properties': {'notes': {'type': 'object', 'description': 'Key-value pairs that can be used to store additional information about the payment. Values must be strings or integers.'}, 'payment_id': {'type': 'string', 'description': "Unique identifier of the payment to be updated. Must start with 'pay_'"}}, 'required': ['payment_id', 'notes'], 'additionalProperties': False}, 'strict': True}
|
razorpay
|
other
|
{'type': 'function', 'name': 'update_payment_link', 'description': 'Update any existing standard or UPI payment link with new details such as reference ID, expiry date, or notes.', 'parameters': {'type': 'object', 'properties': {'accept_partial': {'type': 'boolean', 'description': 'Allow customers to make partial payments. Not allowed with UPI payment links.'}, 'expire_by': {'type': 'number', 'description': 'Timestamp, in Unix format, when the payment link should expire.'}, 'notes': {'type': 'object', 'description': 'Key-value pairs for additional information. Maximum 15 pairs, each value limited to 256 characters.'}, 'payment_link_id': {'type': 'string', 'description': 'ID of the payment link to update (ID should have a plink_ prefix).'}, 'reference_id': {'type': 'string', 'description': 'Adds a unique reference number to the payment link.'}, 'reminder_enable': {'type': 'boolean', 'description': 'Enable or disable reminders for the payment link.'}}, 'required': ['payment_link_id'], 'additionalProperties': False}, 'strict': True}
|
razorpay
|
other
|
{'type': 'function', 'name': 'update_refund', 'description': 'Use this tool to update the notes for a specific refund. Only the notes field can be modified.', 'parameters': {'type': 'object', 'properties': {'notes': {'type': 'object', 'description': 'Key-value pairs used to store additional information. A maximum of 15 key-value pairs can be included, with each value not exceeding 256 characters.'}, 'refund_id': {'type': 'string', 'description': 'Unique identifier of the refund which needs to be updated. ID should have a rfnd_ prefix.'}}, 'required': ['refund_id', 'notes'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'client_list', 'description': 'Get a list of connected clients to the Redis server.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'create_vector_index_hash', 'description': "Create a Redis 8 vector similarity index using HNSW on a Redis hash.\n\nThis function sets up a Redis index for approximate nearest neighbor (ANN)\nsearch using the HNSW algorithm and float32 vector embeddings.\n\nArgs:\n index_name: The name of the Redis index to create. Unless specifically required, use the default name for the index.\n prefix: The key prefix used to identify documents to index (e.g., 'doc:'). Unless specifically required, use the default prefix.\n vector_field: The name of the vector field to be indexed for similarity search. Unless specifically required, use the default field name\n dim: The dimensionality of the vectors stored under the vector_field.\n distance_metric: The distance function to use (e.g., 'COSINE', 'L2', 'IP').\n\nReturns:\n A string indicating whether the index was created successfully or an error message.", 'parameters': {'type': 'object', 'properties': {'dim': {'type': 'integer', 'title': 'Dim', 'default': 1536}, 'distance_metric': {'type': 'string', 'title': 'Distance Metric', 'default': 'COSINE'}, 'index_name': {'type': 'string', 'title': 'Index Name', 'default': 'vector_index'}, 'prefix': {'type': 'string', 'title': 'Prefix', 'default': 'doc:'}, 'vector_field': {'type': 'string', 'title': 'Vector Field', 'default': 'vector'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'dbsize', 'description': 'Get the number of keys stored in the Redis database', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'delete', 'description': 'Delete a Redis key.\n\nArgs:\n key (str): The key to delete.\n\nReturns:\n str: Confirmation message or an error message.', 'parameters': {'type': 'object', 'properties': {'key': {'type': 'string', 'title': 'Key'}}, 'required': ['key'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'expire', 'description': 'Set an expiration time for a Redis key.\n\nArgs:\n name: The Redis key.\n expire_seconds: Time in seconds after which the key should expire.\n\nReturns:\n A success message or an error message.', 'parameters': {'type': 'object', 'properties': {'expire_seconds': {'type': 'integer', 'title': 'Expire Seconds'}, 'name': {'type': 'string', 'title': 'Name'}}, 'required': ['name', 'expire_seconds'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'get', 'description': 'Get a Redis string value.\n\nArgs:\n key (str): The key to retrieve.\n\nReturns:\n str, bytes: The stored value or an error message.', 'parameters': {'type': 'object', 'properties': {'key': {'type': 'string', 'title': 'Key'}}, 'required': ['key'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'get_index_info', 'description': 'Retrieve schema and information about a specific Redis index using FT.INFO.\n\nArgs:\n index_name (str): The name of the index to retrieve information about.\n\nReturns:\n str: Information about the specified index or an error message.', 'parameters': {'type': 'object', 'properties': {'index_name': {'type': 'string', 'title': 'Index Name'}}, 'required': ['index_name'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'get_indexed_keys_number', 'description': 'Retrieve the number of indexed keys by the index\n\nArgs:\n index_name (str): The name of the index to retrieve information about.\n\nReturns:\n str: Number of indexed keys as a string', 'parameters': {'type': 'object', 'properties': {'index_name': {'type': 'string', 'title': 'Index Name'}}, 'required': ['index_name'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'get_indexes', 'description': 'List of indexes in the Redis database\n\nReturns:\n str: A JSON string containing the list of indexes or an error message.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'get_vector_from_hash', 'description': 'Retrieve a vector from a Redis hash and convert it back from binary blob.\n\nArgs:\n name: The Redis hash key.\n vector_field: The field name inside the hash. Unless specifically required, use the default field name\n\nReturns:\n The vector as a list of floats, or an error message if retrieval fails.', 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'title': 'Name'}, 'vector_field': {'type': 'string', 'title': 'Vector Field', 'default': 'vector'}}, 'required': ['name'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'hdel', 'description': 'Delete a field from a Redis hash.\n\nArgs:\n name: The Redis hash key.\n key: The field name inside the hash.\n\nReturns:\n A success message or an error message.', 'parameters': {'type': 'object', 'properties': {'key': {'type': 'string', 'title': 'Key'}, 'name': {'type': 'string', 'title': 'Name'}}, 'required': ['name', 'key'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'hexists', 'description': 'Check if a field exists in a Redis hash.\n\nArgs:\n name: The Redis hash key.\n key: The field name inside the hash.\n\nReturns:\n True if the field exists, False otherwise.', 'parameters': {'type': 'object', 'properties': {'key': {'type': 'string', 'title': 'Key'}, 'name': {'type': 'string', 'title': 'Name'}}, 'required': ['name', 'key'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'hget', 'description': 'Get the value of a field in a Redis hash.\n\nArgs:\n name: The Redis hash key.\n key: The field name inside the hash.\n\nReturns:\n The field value or an error message.', 'parameters': {'type': 'object', 'properties': {'key': {'type': 'string', 'title': 'Key'}, 'name': {'type': 'string', 'title': 'Name'}}, 'required': ['name', 'key'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'hgetall', 'description': 'Get all fields and values from a Redis hash.\n\nArgs:\n name: The Redis hash key.\n\nReturns:\n A dictionary of field-value pairs or an error message.', 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'title': 'Name'}}, 'required': ['name'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'hset', 'description': 'Set a field in a hash stored at key with an optional expiration time.\n\nArgs:\n name: The Redis hash key.\n key: The field name inside the hash.\n value: The value to set.\n expire_seconds: Optional; time in seconds after which the key should expire.\n\nReturns:\n A success message or an error message.', 'parameters': {'type': 'object', 'properties': {'expire_seconds': {'type': 'integer', 'title': 'Expire Seconds', 'default': None}, 'key': {'type': 'string', 'title': 'Key'}, 'name': {'type': 'string', 'title': 'Name'}, 'value': {'title': 'Value', 'anyOf': [{'type': 'string'}, {'type': 'integer'}, {'type': 'number'}]}}, 'required': ['name', 'key', 'value'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'info', 'description': 'Get Redis server information and statistics.\n\nArgs:\n section: The section of the info command (default, memory, cpu, etc.).\n\nReturns:\n A dictionary of server information or an error message.', 'parameters': {'type': 'object', 'properties': {'section': {'type': 'string', 'title': 'Section', 'default': 'default'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'json_del', 'description': "Delete a JSON value from Redis at a given path.\n\nArgs:\n name: The Redis key where the JSON document is stored.\n path: The JSON path to delete (default: root '$').\n\nReturns:\n A success message or an error message.", 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'title': 'Name'}, 'path': {'type': 'string', 'title': 'Path', 'default': '$'}}, 'required': ['name'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'json_get', 'description': "Retrieve a JSON value from Redis at a given path.\n\nArgs:\n name: The Redis key where the JSON document is stored.\n path: The JSON path to retrieve (default: root '$').\n\nReturns:\n The retrieved JSON value or an error message.", 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'title': 'Name'}, 'path': {'type': 'string', 'title': 'Path', 'default': '$'}}, 'required': ['name'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'json_set', 'description': 'Set a JSON value in Redis at a given path with an optional expiration time.\n\nArgs:\n name: The Redis key where the JSON document is stored.\n path: The JSON path where the value should be set.\n value: The JSON value to store.\n expire_seconds: Optional; time in seconds after which the key should expire.\n\nReturns:\n A success message or an error message.', 'parameters': {'type': 'object', 'properties': {'expire_seconds': {'type': 'integer', 'title': 'Expire Seconds', 'default': None}, 'name': {'type': 'string', 'title': 'Name'}, 'path': {'type': 'string', 'title': 'Path'}, 'value': {'title': 'Value'}}, 'required': ['name', 'path', 'value'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'llen', 'description': 'Get the length of a Redis list.', 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'title': 'Name'}}, 'required': ['name'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'lpop', 'description': 'Remove and return the first element from a Redis list.', 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'title': 'Name'}}, 'required': ['name'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'lpush', 'description': 'Push a value onto the left of a Redis list and optionally set an expiration time.', 'parameters': {'type': 'object', 'properties': {'expire': {'type': 'integer', 'title': 'Expire', 'default': None}, 'name': {'type': 'string', 'title': 'Name'}, 'value': {'title': 'Value', 'anyOf': [{'type': 'string', 'format': 'binary'}, {'type': 'string'}, {'type': 'integer'}, {'type': 'number'}]}}, 'required': ['name', 'value'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'lrange', 'description': 'Get elements from a Redis list within a specific range.\n\nReturns:\nstr: A JSON string containing the list of elements or an error message.', 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'title': 'Name'}, 'start': {'type': 'integer', 'title': 'Start'}, 'stop': {'type': 'integer', 'title': 'Stop'}}, 'required': ['name', 'start', 'stop'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'publish', 'description': 'Publish a message to a Redis channel.\n\nArgs:\n channel: The Redis channel to publish to.\n message: The message to send.\n\nReturns:\n A success message or an error message.', 'parameters': {'type': 'object', 'properties': {'channel': {'type': 'string', 'title': 'Channel'}, 'message': {'type': 'string', 'title': 'Message'}}, 'required': ['channel', 'message'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'rename', 'description': 'Renames a Redis key from old_key to new_key.\n\nArgs:\n old_key (str): The current name of the Redis key to rename.\n new_key (str): The new name to assign to the key.\n\nReturns:\n Dict[str, Any]: A dictionary containing the result of the operation.\n On success: {"status": "success", "message": "..."}\n On error: {"error": "..."}', 'parameters': {'type': 'object', 'properties': {'new_key': {'type': 'string', 'title': 'New Key'}, 'old_key': {'type': 'string', 'title': 'Old Key'}}, 'required': ['old_key', 'new_key'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'rpop', 'description': 'Remove and return the last element from a Redis list.', 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'title': 'Name'}}, 'required': ['name'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'rpush', 'description': 'Push a value onto the right of a Redis list and optionally set an expiration time.', 'parameters': {'type': 'object', 'properties': {'expire': {'type': 'integer', 'title': 'Expire', 'default': None}, 'name': {'type': 'string', 'title': 'Name'}, 'value': {'title': 'Value', 'anyOf': [{'type': 'string', 'format': 'binary'}, {'type': 'string'}, {'type': 'integer'}, {'type': 'number'}]}}, 'required': ['name', 'value'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'sadd', 'description': 'Add a value to a Redis set with an optional expiration time.\n\nArgs:\n name: The Redis set key.\n value: The value to add to the set.\n expire_seconds: Optional; time in seconds after which the set should expire.\n\nReturns:\n A success message or an error message.', 'parameters': {'type': 'object', 'properties': {'expire_seconds': {'type': 'integer', 'title': 'Expire Seconds', 'default': None}, 'name': {'type': 'string', 'title': 'Name'}, 'value': {'type': 'string', 'title': 'Value'}}, 'required': ['name', 'value'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'scan_all_keys', 'description': 'Scan and return ALL keys matching a pattern using multiple SCAN iterations.\n\nThis function automatically handles the SCAN cursor iteration to collect all matching keys.\nIt\'s safer than KEYS * for large databases but will still collect all results in memory.\n\n⚠️ WARNING: With very large datasets (millions of keys), this may consume significant memory.\nFor large-scale operations, consider using scan_keys() with manual iteration instead.\n\nArgs:\n pattern: Pattern to match keys against (default is "*" for all keys).\n batch_size: Number of keys to scan per iteration (default 100).\n\nReturns:\n A list of all keys matching the pattern or an error message.', 'parameters': {'type': 'object', 'properties': {'batch_size': {'type': 'integer', 'title': 'Batch Size', 'default': 100}, 'pattern': {'type': 'string', 'title': 'Pattern', 'default': '*'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'scan_keys', 'description': 'Scan keys in the Redis database using the SCAN command (non-blocking, production-safe).\n\n⚠️ IMPORTANT: This returns PARTIAL results from one iteration. Use scan_all_keys()\nto get ALL matching keys, or call this function multiple times with the returned cursor\nuntil cursor becomes 0.\n\nThe SCAN command iterates through the keyspace in small chunks, making it safe to use\non large databases without blocking other operations.\n\nArgs:\n pattern: Pattern to match keys against (default is "*" for all keys).\n Common patterns: "user:*", "cache:*", "*:123", etc.\n count: Hint for the number of keys to return per iteration (default 100).\n Redis may return more or fewer keys than this hint.\n cursor: The cursor position to start scanning from (0 to start from beginning).\n To continue scanning, use the cursor value returned from previous call.\n\nReturns:\n A dictionary containing:\n - \'cursor\': Next cursor position (0 means scan is complete)\n - \'keys\': List of keys found in this iteration (PARTIAL RESULTS)\n - \'total_scanned\': Number of keys returned in this batch\n - \'scan_complete\': Boolean indicating if scan is finished\n Or an error message if something goes wrong.\n\nExample usage:\n First call: scan_keys("user:*") -> returns cursor=1234, keys=[...], scan_complete=False\n Next call: scan_keys("user:*", cursor=1234) -> continues from where it left off\n Final call: returns cursor=0, scan_complete=True when done', 'parameters': {'type': 'object', 'properties': {'count': {'type': 'integer', 'title': 'Count', 'default': 100}, 'cursor': {'type': 'integer', 'title': 'Cursor', 'default': 0}, 'pattern': {'type': 'string', 'title': 'Pattern', 'default': '*'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'set', 'description': 'Set a Redis string value with an optional expiration time.\n\nArgs:\n key (str): The key to set.\n value (str, bytes, int, float, dict): The value to store.\n expiration (int, optional): Expiration time in seconds.\n\nReturns:\n str: Confirmation message or an error message.', 'parameters': {'type': 'object', 'properties': {'expiration': {'type': 'integer', 'title': 'Expiration', 'default': None}, 'key': {'type': 'string', 'title': 'Key'}, 'value': {'title': 'Value', 'anyOf': [{'type': 'string'}, {'type': 'string', 'format': 'binary'}, {'type': 'integer'}, {'type': 'number'}, {'type': 'object'}]}}, 'required': ['key', 'value'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'set_vector_in_hash', 'description': 'Store a vector as a field in a Redis hash.\n\nArgs:\n name: The Redis hash key.\n vector_field: The field name inside the hash. Unless specifically required, use the default field name\n vector: The vector (list of numbers) to store in the hash.\n\nReturns:\n True if the vector was successfully stored, False otherwise.', 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'title': 'Name'}, 'vector': {'type': 'array', 'title': 'Vector', 'items': True}, 'vector_field': {'type': 'string', 'title': 'Vector Field', 'default': 'vector'}}, 'required': ['name', 'vector'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'smembers', 'description': 'Get all members of a Redis set.\n\nArgs:\n name: The Redis set key.\n\nReturns:\n A list of values in the set or an error message.', 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'title': 'Name'}}, 'required': ['name'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'srem', 'description': 'Remove a value from a Redis set.\n\nArgs:\n name: The Redis set key.\n value: The value to remove from the set.\n\nReturns:\n A success message or an error message.', 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'title': 'Name'}, 'value': {'type': 'string', 'title': 'Value'}}, 'required': ['name', 'value'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'subscribe', 'description': 'Subscribe to a Redis channel.\n\nArgs:\n channel: The Redis channel to subscribe to.\n\nReturns:\n A success message or an error message.', 'parameters': {'type': 'object', 'properties': {'channel': {'type': 'string', 'title': 'Channel'}}, 'required': ['channel'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'type', 'description': "Returns the string representation of the type of the value stored at key\n\nArgs:\n key (str): The key to check.\n\nReturns:\n str: The type of key, or none when key doesn't exist", 'parameters': {'type': 'object', 'properties': {'key': {'type': 'string', 'title': 'Key'}}, 'required': ['key'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'unsubscribe', 'description': 'Unsubscribe from a Redis channel.\n\nArgs:\n channel: The Redis channel to unsubscribe from.\n\nReturns:\n A success message or an error message.', 'parameters': {'type': 'object', 'properties': {'channel': {'type': 'string', 'title': 'Channel'}}, 'required': ['channel'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'vector_search_hash', 'description': 'Perform a KNN vector similarity search using Redis 8 or later version on vectors stored in hash data structures.\n\nArgs:\n query_vector: List of floats to use as the query vector.\n index_name: Name of the Redis index. Unless specifically specified, use the default index name.\n vector_field: Name of the indexed vector field. Unless specifically required, use the default field name\n k: Number of nearest neighbors to return.\n return_fields: List of fields to return (optional).\n\nReturns:\n A list of matched documents or an error message.', 'parameters': {'type': 'object', 'properties': {'index_name': {'type': 'string', 'title': 'Index Name', 'default': 'vector_index'}, 'k': {'type': 'integer', 'title': 'K', 'default': 5}, 'query_vector': {'type': 'array', 'title': 'Query Vector', 'items': True}, 'return_fields': {'type': 'array', 'title': 'Return Fields', 'default': None, 'items': True}, 'vector_field': {'type': 'string', 'title': 'Vector Field', 'default': 'vector'}}, 'required': ['query_vector'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'xadd', 'description': 'Add an entry to a Redis stream with an optional expiration time.\n\nArgs:\n key (str): The stream key.\n fields (dict): The fields and values for the stream entry.\n expiration (int, optional): Expiration time in seconds.\n\nReturns:\n str: The ID of the added entry or an error message.', 'parameters': {'type': 'object', 'properties': {'expiration': {'type': 'integer', 'title': 'Expiration', 'default': None}, 'fields': {'type': 'object', 'title': 'Fields'}, 'key': {'type': 'string', 'title': 'Key'}}, 'required': ['key', 'fields'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'xdel', 'description': 'Delete an entry from a Redis stream.\n\nArgs:\n key (str): The stream key.\n entry_id (str): The ID of the entry to delete.\n\nReturns:\n str: Confirmation message or an error message.', 'parameters': {'type': 'object', 'properties': {'entry_id': {'type': 'string', 'title': 'Entry Id'}, 'key': {'type': 'string', 'title': 'Key'}}, 'required': ['key', 'entry_id'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'xrange', 'description': 'Read entries from a Redis stream.\n\nArgs:\n key (str): The stream key.\n count (int, optional): Number of entries to retrieve.\n\nReturns:\n str: The retrieved stream entries or an error message.', 'parameters': {'type': 'object', 'properties': {'count': {'type': 'integer', 'title': 'Count', 'default': 1}, 'key': {'type': 'string', 'title': 'Key'}}, 'required': ['key'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'zadd', 'description': 'Add a member to a Redis sorted set with an optional expiration time.\n\nArgs:\n key (str): The sorted set key.\n score (float): The score of the member.\n member (str): The member to add.\n expiration (int, optional): Expiration time in seconds.\n\nReturns:\n str: Confirmation message or an error message.', 'parameters': {'type': 'object', 'properties': {'expiration': {'type': 'integer', 'title': 'Expiration', 'default': None}, 'key': {'type': 'string', 'title': 'Key'}, 'member': {'type': 'string', 'title': 'Member'}, 'score': {'type': 'number', 'title': 'Score'}}, 'required': ['key', 'score', 'member'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'zrange', 'description': 'Retrieve a range of members from a Redis sorted set.\n\nArgs:\n key (str): The sorted set key.\n start (int): The starting index.\n end (int): The ending index.\n with_scores (bool, optional): Whether to include scores in the result.\n\nReturns:\n str: The sorted set members in the given range or an error message.', 'parameters': {'type': 'object', 'properties': {'end': {'type': 'integer', 'title': 'End'}, 'key': {'type': 'string', 'title': 'Key'}, 'start': {'type': 'integer', 'title': 'Start'}, 'with_scores': {'type': 'boolean', 'title': 'With Scores', 'default': False}}, 'required': ['key', 'start', 'end'], 'additionalProperties': False}, 'strict': True}
|
redis
|
other
|
{'type': 'function', 'name': 'zrem', 'description': 'Remove a member from a Redis sorted set.\n\nArgs:\n key (str): The sorted set key.\n member (str): The member to remove.\n\nReturns:\n str: Confirmation message or an error message.', 'parameters': {'type': 'object', 'properties': {'key': {'type': 'string', 'title': 'Key'}, 'member': {'type': 'string', 'title': 'Member'}}, 'required': ['key', 'member'], 'additionalProperties': False}, 'strict': True}
|
remote-mcp
|
other
|
{'type': 'function', 'name': 'ListRemoteMCPServers', 'description': '', 'parameters': {'type': 'object', 'properties': {'query': {'type': 'string'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'create_key_value', 'description': 'Create a new Key Value instance in your Render account', 'parameters': {'type': 'object', 'properties': {'maxmemoryPolicy': {'type': 'string', 'description': 'The eviction policy for the Key Value store', 'enum': ['noeviction', 'allkeys_lfu', 'allkeys_lru', 'allkeys_random', 'volatile_lfu', 'volatile_lru', 'volatile_random', 'volatile_ttl']}, 'name': {'type': 'string', 'description': 'Name of the Key Value instance'}, 'plan': {'type': 'string', 'description': 'Pricing plan for the Key Value instance', 'default': 'free', 'enum': ['free', 'starter', 'standard', 'pro', 'pro_plus']}, 'region': {'type': 'string', 'description': 'Region where the Key Value instance will be deployed', 'default': 'oregon', 'enum': ['oregon', 'frankfurt', 'singapore', 'ohio', 'virginia']}}, 'required': ['name', 'plan'], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'create_postgres', 'description': 'Create a new Postgres instance in your Render account', 'parameters': {'type': 'object', 'properties': {'diskSizeGb': {'type': 'number', 'description': "Your database's capacity, in GB. You can increase storage at any time, but you can't decrease it. Specify 1 GB or any multiple of 5 GB."}, 'name': {'type': 'string', 'description': 'The name of the database as it will appear in the Render Dashboard'}, 'plan': {'type': 'string', 'description': 'Pricing plan for the database', 'enum': ['free', 'basic_256mb', 'basic_1gb', 'basic_4gb', 'pro_4gb', 'pro_8gb', 'pro_16gb', 'pro_32gb', 'pro_64gb', 'pro_128gb', 'pro_192gb', 'pro_256gb', 'pro_384gb', 'pro_512gb', 'accelerated_16gb', 'accelerated_32gb', 'accelerated_64gb', 'accelerated_128gb', 'accelerated_256gb', 'accelerated_384gb', 'accelerated_512gb', 'accelerated_768gb', 'accelerated_1024gb']}, 'region': {'type': 'string', 'description': 'Region where the database will be deployed', 'enum': ['oregon', 'frankfurt', 'singapore', 'ohio', 'virginia']}, 'version': {'type': 'number', 'description': 'PostgreSQL version to use (e.g., 14, 15)', 'default': 16, 'minimum': 12, 'maximum': 16}}, 'required': ['name', 'plan'], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'create_static_site', 'description': "Create a new static site in your Render account. Apps that consist entirely of statically served assets (commonly HTML, CSS, and JS). Static sites have a public onrender.com subdomain and are served over a global CDN. Create a static site if you're building with a framework like: Create React App, Vue.js, Gatsby, etc.This tool is currently limited to support only a subset of the static site configuration parameters.To create a static site without those limitations, please use the dashboard at: https://dashboard.render.com/static/new", 'parameters': {'type': 'object', 'properties': {'autoDeploy': {'type': 'string', 'description': "Whether to automatically deploy the service when the specified branch is updated. Defaults to 'yes'.", 'default': 'yes', 'enum': ['yes', 'no']}, 'branch': {'type': 'string', 'description': 'The repository branch to deploy. This branch will be deployed when you manually trigger deploys and when auto-deploy is enabled. If left empty, this will fall back to the default branch of the repository.'}, 'buildCommand': {'type': 'string', 'description': "Render runs this command to build your app before each deploy. For example, 'yarn; yarn build' a React app."}, 'envVars': {'type': 'array', 'description': 'Environment variables to set for your service. These are exposed during builds and at runtime.', 'items': {'type': 'object', 'required': ['key', 'value'], 'properties': {'key': {'type': 'string', 'description': 'The name of the environment variable'}, 'value': {'type': 'string', 'description': 'The value of the environment variable'}}, 'additionalProperties': False}}, 'name': {'type': 'string', 'description': "A unique name for your service. This will be used to generate the service's URL if it is public."}, 'publishPath': {'type': 'string', 'description': 'The relative path of the directory containing built assets to publish. Examples: ./, ./build, dist and frontend/build. This is the directory that will be served to the public.', 'default': 'public'}, 'repo': {'type': 'string', 'description': "The repository containing the source code for your service. Must be a valid Git URL that Render can clone and deploy. Do not include the branch in the repo string. You can instead supply a 'branch' parameter."}}, 'required': ['name', 'buildCommand'], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'create_web_service', 'description': "Create a new web service in your Render account. A web service is a public-facing service that can be accessed by users on the internet. By default, these services are automatically deployed when the specified branch is updated and do not require a manual trigger of a deploy. The user should only be prompted to manually trigger a deploy if auto-deploy is disabled.This tool is currently limited to support only a subset of the web service configuration parameters.It also only supports web services which don't use Docker, or a container registry.To create a service without those limitations, please use the dashboard at: https://dashboard.render.com/web/new", 'parameters': {'type': 'object', 'properties': {'autoDeploy': {'type': 'string', 'description': "Whether to automatically deploy the service when the specified branch is updated. Defaults to 'yes'.", 'default': 'yes', 'enum': ['yes', 'no']}, 'branch': {'type': 'string', 'description': 'The repository branch to deploy. This branch will be deployed when you manually trigger deploys and when auto-deploy is enabled. If left empty, this will fall back to the default branch of the repository.'}, 'buildCommand': {'type': 'string', 'description': "The command used to build your service. For example, 'npm run build' for Node.js or 'pip install -r requirements.txt' for Python."}, 'envVars': {'type': 'array', 'description': 'Environment variables to set for your service. These are exposed during builds and at runtime.', 'items': {'type': 'object', 'required': ['key', 'value'], 'properties': {'key': {'type': 'string', 'description': 'The name of the environment variable'}, 'value': {'type': 'string', 'description': 'The value of the environment variable'}}, 'additionalProperties': False}}, 'name': {'type': 'string', 'description': "A unique name for your service. This will be used to generate the service's URL if it is public."}, 'plan': {'type': 'string', 'description': 'The pricing plan for your service. Different plans offer different levels of resources and features.', 'default': 'starter', 'enum': ['starter', 'standard', 'pro', 'pro_max', 'pro_plus', 'pro_ultra']}, 'region': {'type': 'string', 'description': 'The geographic region where your service will be deployed. Defaults to Oregon. Choose the region closest to your users for best performance.', 'default': 'oregon', 'enum': ['oregon', 'frankfurt', 'singapore', 'ohio', 'virginia']}, 'repo': {'type': 'string', 'description': "The repository containing the source code for your service. Must be a valid Git URL that Render can clone and deploy. Do not include the branch in the repo string. You can instead supply a 'branch' parameter."}, 'runtime': {'type': 'string', 'description': 'The runtime environment for your service. This determines how your service is built and run.', 'enum': ['node', 'python', 'go', 'rust', 'ruby', 'elixir', 'docker']}, 'startCommand': {'type': 'string', 'description': "The command used to start your service. For example, 'npm start' for Node.js or 'gunicorn app:app' for Python."}}, 'required': ['name', 'runtime', 'buildCommand', 'startCommand'], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'get_deploy', 'description': 'Retrieve the details of a particular deploy for a particular service.', 'parameters': {'type': 'object', 'properties': {'deployId': {'type': 'string', 'description': 'The ID of the deployment to retrieve'}, 'serviceId': {'type': 'string', 'description': 'The ID of the service to get deployments for'}}, 'required': ['serviceId', 'deployId'], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'get_key_value', 'description': 'Retrieve a Key Value instance by ID', 'parameters': {'type': 'object', 'properties': {'keyValueId': {'type': 'string', 'description': 'The ID of the Key Value instance to retrieve'}}, 'required': ['keyValueId'], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'get_metrics', 'description': 'Get performance metrics for any Render resource (services, Postgres databases, key-value stores). Supports CPU usage/limits/targets, memory usage/limits/targets, service instance counts, HTTP request counts and response time metrics, bandwidth usage metrics, database active connection counts for debugging, capacity planning, and performance optimization. Returns time-series data with timestamps and values for the specified time range. HTTP metrics support filtering by host and path for more granular analysis. Limits and targets help understand resource constraints and autoscaling thresholds. Metrics may be empty if the metric is not valid for the given resource.', 'parameters': {'type': 'object', 'properties': {'aggregateHttpRequestCountsBy': {'type': 'string', 'description': 'Field to aggregate HTTP request metrics by. Only supported for http_request_count metric. Options: host (aggregate by request host), statusCode (aggregate by HTTP status code). When not specified, returns total request counts.', 'enum': ['host', 'statusCode']}, 'cpuUsageAggregationMethod': {'type': 'string', 'description': 'Method for aggregating metric values over time intervals. Only supported for CPU usage metrics. Options: AVG, MAX, MIN. Defaults to AVG.', 'default': 'AVG', 'enum': ['AVG', 'MAX', 'MIN']}, 'endTime': {'type': 'string', 'description': "End time for metrics query in RFC3339 format (e.g., '2024-01-01T13:00:00Z'). Defaults to the current time. The end time must be within the last 30 days."}, 'httpHost': {'type': 'string', 'description': "Filter HTTP metrics to specific request hosts. Supported for http_request_count and http_latency metrics. Example: 'api.example.com' or 'myapp.render.com'. When not specified, includes all hosts."}, 'httpLatencyQuantile': {'type': 'number', 'description': 'The quantile/percentile of HTTP latency to fetch. Only supported for http_latency metric. Common values: 0.5 (median), 0.95 (95th percentile), 0.99 (99th percentile). Defaults to 0.95 if not specified.', 'default': 0.9500000000000001, 'minimum': 0, 'maximum': 1}, 'httpPath': {'type': 'string', 'description': "Filter HTTP metrics to specific request paths. Supported for http_request_count and http_latency metrics. Example: '/api/users' or '/health'. When not specified, includes all paths."}, 'metricTypes': {'type': 'array', 'description': 'Which metrics to fetch. CPU usage/limits/targets, memory usage/limits/targets, and instance count metrics are available for all resources. HTTP request counts and response time metrics, and bandwidth usage metrics are only available for services. Active connection metrics are only available for databases and key-value stores. Limits show resource constraints, targets show autoscaling thresholds.', 'items': {'type': 'string', 'enum': ['cpu_usage', 'memory_usage', 'http_request_count', 'active_connections', 'instance_count', 'http_latency', 'cpu_limit', 'cpu_target', 'memory_limit', 'memory_target', 'bandwidth_usage']}}, 'resolution': {'type': 'number', 'description': 'Time resolution for data points in seconds. Lower values provide more granular data. Higher values provide more aggregated data points. API defaults to 60 seconds if not provided. There is a limit to the number of data points that can be returned, after which the metrics endpoint will return a 500. If you are getting a 500, try reducing granularity (increasing the value of resolution).', 'minimum': 30}, 'resourceId': {'type': 'string', 'description': 'The ID of the resource to get metrics for (service ID, Postgres ID, or key-value store ID)'}, 'startTime': {'type': 'string', 'description': "Start time for metrics query in RFC3339 format (e.g., '2024-01-01T12:00:00Z'). Defaults to 1 hour ago. The start time must be within the last 30 days."}}, 'required': ['resourceId', 'metricTypes'], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'get_postgres', 'description': 'Retrieve a Postgres instance by ID', 'parameters': {'type': 'object', 'properties': {'postgresId': {'type': 'string', 'description': 'The ID of the Postgres instance to retrieve'}}, 'required': ['postgresId'], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'get_selected_workspace', 'description': 'Get the currently selected workspace', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'get_service', 'description': 'Get details about a specific service', 'parameters': {'type': 'object', 'properties': {'serviceId': {'type': 'string', 'description': 'The ID of the service to retrieve'}}, 'required': ['serviceId'], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'list_deploys', 'description': 'List deploys matching the provided filters. If no filters are provided, all deploys for the service are returned.', 'parameters': {'type': 'object', 'properties': {'cursor': {'type': 'string', 'description': 'A unique string that corresponds to a position in the result list. If provided, the endpoint returns results that appear after the corresponding position. To fetch the first page of results, set to the empty string.', 'default': ''}, 'limit': {'type': 'number', 'description': 'The maximum number of deploys to return in a single page. To fetch additional pages of results, set the cursor to the last deploy in the previous page. It should be rare to need to set this value greater than 20.', 'default': 10, 'minimum': 1, 'maximum': 100}, 'serviceId': {'type': 'string', 'description': 'The ID of the service to get deployments for'}}, 'required': ['serviceId'], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'list_key_value', 'description': 'List all Key Value instances in your Render account', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'list_log_label_values', 'description': 'List all values for a given log label in the logs matching the provided filters. This can be used to discover what values are available for filtering logs using the list_logs tool. You can query for logs across multiple resources, but all resources must be in the same region and belong to the same owner.', 'parameters': {'type': 'object', 'properties': {'direction': {'type': 'string', 'description': 'The direction to query logs for. Backward will return most recent logs first. Forward will start with the oldest logs in the time range.', 'default': 'backward', 'enum': ['backward', 'forward']}, 'endTime': {'type': 'string', 'description': 'End time for log query (RFC3339 format). Defaults to the current time. The end time must be within the last 30 days.'}, 'host': {'type': 'array', 'description': 'Filter request logs by their host. Wildcards and regex are supported.', 'items': {'type': 'string'}}, 'instance': {'type': 'array', 'description': 'Filter logs by the instance they were emitted from.', 'items': {'type': 'string'}}, 'label': {'type': 'string', 'description': 'The label to list values for.', 'enum': ['host', 'instance', 'level', 'method', 'statusCode', 'type']}, 'level': {'type': 'array', 'description': 'Filter logs by their severity level. Wildcards and regex are supported.', 'items': {'type': 'string'}}, 'method': {'type': 'array', 'description': 'Filter request logs by their requests method. Wildcards and regex are supported.', 'items': {'type': 'string'}}, 'path': {'type': 'array', 'description': 'Filter request logs by their path. Wildcards and regex are supported.', 'items': {'type': 'string'}}, 'resource': {'type': 'array', 'description': 'Filter by resource. A resource is the id of a server, cronjob, job, postgres, or redis.', 'items': {'type': 'string'}}, 'startTime': {'type': 'string', 'description': 'Start time for log query (RFC3339 format). Defaults to 1 hour ago. The start time must be within the last 30 days.'}, 'statusCode': {'type': 'array', 'description': 'Filter request logs by their status code. Wildcards and regex are supported.', 'items': {'type': 'string'}}, 'text': {'type': 'array', 'description': 'Filter by the text of the logs. Wildcards and regex are supported.', 'items': {'type': 'string'}}, 'type': {'type': 'array', 'description': 'Filter logs by their type.', 'items': {'type': 'string'}}}, 'required': ['label', 'resource'], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'list_logs', 'description': 'List logs matching the provided filters. Logs are paginated by start and end timestamps. There are more logs to fetch if hasMore is true in the response. Provide the nextStartTime and nextEndTime timestamps as the startTime and endTime query parameters to fetch the next page of logs. You can query for logs across multiple resources, but all resources must be in the same region and belong to the same owner.', 'parameters': {'type': 'object', 'properties': {'direction': {'type': 'string', 'description': 'The direction to query logs for. Backward will return most recent logs first. Forward will start with the oldest logs in the time range.', 'default': 'backward', 'enum': ['backward', 'forward']}, 'endTime': {'type': 'string', 'description': 'End time for log query (RFC3339 format). Defaults to the current time. The end time must be within the last 30 days.'}, 'host': {'type': 'array', 'description': 'Filter request logs by their host. Wildcards and regex are supported.', 'items': {'type': 'string'}}, 'instance': {'type': 'array', 'description': 'Filter logs by the instance they were emitted from. An instance is the id of a specific running server.', 'items': {'type': 'string'}}, 'level': {'type': 'array', 'description': 'Filter logs by their severity level. Wildcards and regex are supported.', 'items': {'type': 'string'}}, 'limit': {'type': 'number', 'description': 'Maximum number of logs to return', 'minimum': 1, 'maximum': 100}, 'method': {'type': 'array', 'description': 'Filter request logs by their requests method. Wildcards and regex are supported.', 'items': {'type': 'string'}}, 'path': {'type': 'array', 'description': 'Filter request logs by their path. Wildcards and regex are supported.', 'items': {'type': 'string'}}, 'resource': {'type': 'array', 'description': 'Filter logs by their resource. A resource is the id of a server, cronjob, job, postgres, or redis.', 'items': {'type': 'string'}}, 'startTime': {'type': 'string', 'description': 'Start time for log query (RFC3339 format). Defaults to 1 hour ago. The start time must be within the last 30 days.'}, 'statusCode': {'type': 'array', 'description': 'Filter request logs by their status code. Wildcards and regex are supported.', 'items': {'type': 'string'}}, 'text': {'type': 'array', 'description': 'Filter by the text of the logs. Wildcards and regex are supported.', 'items': {'type': 'string'}}, 'type': {'type': 'array', 'description': 'Filter logs by their type. Types include app for application logs, request for request logs, and build for build logs. You can find the full set of types available for a query by using the list_log_label_values tool.', 'items': {'type': 'string'}}}, 'required': ['resource'], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'list_postgres_instances', 'description': 'List all Postgres databases in your Render account', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'list_services', 'description': 'List all services in your Render account', 'parameters': {'type': 'object', 'properties': {'includePreviews': {'type': 'boolean', 'description': 'Whether to include preview services in the response. Defaults to false.', 'default': False}}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'list_workspaces', 'description': 'List the workspaces that you have access to', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'query_render_postgres', 'description': 'Run a read-only SQL query against a Render-hosted Postgres database. This tool creates a new connection for each query and closes it after the query completes.', 'parameters': {'type': 'object', 'properties': {'postgresId': {'type': 'string', 'description': 'The ID of the Postgres instance to query'}, 'sql': {'type': 'string', 'description': 'The SQL query to run. Note that the query will be wrapped in a read-only transaction.'}}, 'required': ['postgresId', 'sql'], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'select_workspace', 'description': 'Select a workspace to use for all actions. This tool should only be used after explicitly asking the user to select one, it should not be invoked as part of an automated process. Having the wrong workspace selected can lead to destructive actions being performed on unintended resources.', 'parameters': {'type': 'object', 'properties': {'ownerID': {'type': 'string', 'description': 'The ID of the owner to select'}}, 'required': ['ownerID'], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'update_environment_variables', 'description': "Update environment variables for a service. By default, environment variables passed in will be merged with the service's existing environment variables. This makes it safe to update environment variableswithout pulling the existing ones into the MCP host's context. To replace all existing environment variables, set the 'replace' parameter to 'true'.", 'parameters': {'type': 'object', 'properties': {'envVars': {'type': 'array', 'description': 'The list of environment variables to update or set for the service.', 'items': {'type': 'object', 'required': ['key', 'value'], 'properties': {'key': {'type': 'string', 'description': 'The name of the environment variable'}, 'value': {'type': 'string', 'description': 'The value of the environment variable'}}, 'additionalProperties': False}}, 'replace': {'type': 'boolean', 'description': 'Whether to replace all existing environment variables with the provided list, or merge with the existing ones. Defaults to false.', 'default': False}, 'serviceId': {'type': 'string', 'description': 'The ID of the service to update'}}, 'required': ['serviceId', 'envVars'], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'update_static_site', 'description': 'Update an existing static site in your Render account.', 'parameters': {'type': 'object', 'properties': {'serviceId': {'type': 'string', 'description': 'The ID of the service to update'}}, 'required': ['serviceId'], 'additionalProperties': False}, 'strict': True}
|
render
|
other
|
{'type': 'function', 'name': 'update_web_service', 'description': 'Update an existing web service in your Render account.', 'parameters': {'type': 'object', 'properties': {'serviceId': {'type': 'string', 'description': 'The ID of the service to update'}}, 'required': ['serviceId'], 'additionalProperties': False}, 'strict': True}
|
resend
|
other
|
{'type': 'function', 'name': 'send-email', 'description': 'Send an email using Resend', 'parameters': {'type': 'object', 'properties': {'bcc': {'type': 'array', 'description': 'Optional array of BCC email addresses. You MUST ask the user for this parameter. Under no circumstance provide it yourself', 'items': {'type': 'string', 'format': 'email'}}, 'cc': {'type': 'array', 'description': 'Optional array of CC email addresses. You MUST ask the user for this parameter. Under no circumstance provide it yourself', 'items': {'type': 'string', 'format': 'email'}}, 'from': {'type': 'string', 'description': 'Sender email address. You MUST ask the user for this parameter. Under no circumstance provide it yourself', 'minLength': 1, 'format': 'email'}, 'html': {'type': 'string', 'description': 'HTML email content. When provided, the plain text argument MUST be provided as well.'}, 'replyTo': {'type': 'array', 'description': 'Optional email addresses for the email readers to reply to. You MUST ask the user for this parameter. Under no circumstance provide it yourself', 'items': {'type': 'string', 'format': 'email'}}, 'scheduledAt': {'type': 'string', 'description': "Optional parameter to schedule the email. This uses natural language. Examples would be 'tomorrow at 10am' or 'in 2 hours' or 'next day at 9am PST' or 'Friday at 3pm ET'."}, 'subject': {'type': 'string', 'description': 'Email subject line'}, 'text': {'type': 'string', 'description': 'Plain text email content'}, 'to': {'type': 'string', 'description': 'Recipient email address', 'format': 'email'}}, 'required': ['to', 'subject', 'text', 'from'], 'additionalProperties': False}, 'strict': True}
|
root
|
other
|
{'type': 'function', 'name': 'create_registry_integration', 'description': "Creates a registry integration within root system. The integration will be used to pull images for remediating and push the resulted image with a new tag. Use this tool if the user wants to remediate an image from a registry they haven't integrated before. This tool uses a wizard approach to guide users through the setup process. Suggest using this tool if the user requests to remediate a private image with no registry integration for it.", 'parameters': {'type': 'object', 'properties': {'access_key_id': {'type': 'string', 'description': 'AWS Access Key ID for ECR registry'}, 'account_service_key_file': {'type': 'string', 'description': 'Google Cloud Service Account Key File (JSON string) for GAR registry'}, 'client_id': {'type': 'string', 'description': 'Azure Client ID for ACR registry'}, 'client_secret': {'type': 'string', 'description': 'Azure Client Secret for ACR registry'}, 'display_name': {'type': 'string', 'description': "A convenient informative name for this registry integration (e.g., 'backend_dockerhub_prod')"}, 'organization_id': {'type': 'string', 'description': 'The organization ID to create the registry integration for'}, 'personal_access_token': {'type': 'string', 'description': 'Personal Access Token for registries that use PAT authentication (DockerHub, GHCR, GitLab, Sonatype Nexus, Quay)'}, 'region': {'type': 'string', 'description': 'AWS Region for ECR registry'}, 'registry': {'type': 'string', 'description': 'The registry type to integrate with. Options: dockerhub, ghcr, gitlab, ecr, gar, sonatype_nexus, quay, acr'}, 'role_arn': {'type': 'string', 'description': 'AWS Role ARN for ECR registry using assumed role'}, 'secret_key': {'type': 'string', 'description': 'AWS Secret Key for ECR registry'}, 'test_image': {'type': 'string', 'description': "An image to test connection with the registry (should exist in the registry but won't be remediated)"}, 'username': {'type': 'string', 'description': 'Username for registries that use Personal Access Token authentication (DockerHub, GHCR, GitLab, Sonatype Nexus, Quay)'}}, 'required': ['organization_id', 'registry', 'display_name', 'test_image'], 'additionalProperties': False}, 'strict': True}
|
root
|
other
|
{'type': 'function', 'name': 'get_image_remediation', 'description': 'Retrieves image remediation for a given image_remediation_id (imgrmd_...). Provides detailed information about the remediation step including the list of packages that were upgraded, the FQIN of the resulted remediated image, or alternatively the decision of patching which might be not to patch with the reason. IMPORTANT NOTE: image remediation should ALWAYS be fetched together with get_remediation_continuity_summary to provide a report at the end of every remediation process.', 'parameters': {'type': 'object', 'properties': {'image_remediation_id': {'type': 'string', 'description': 'The image remediation ID to retrieve details for'}, 'organization_id': {'type': 'string', 'description': "The organization ID that owns the image remediation. Get this from 'get_user_info' tool."}}, 'required': ['organization_id', 'image_remediation_id'], 'additionalProperties': False}, 'strict': True}
|
root
|
other
|
{'type': 'function', 'name': 'get_remediation_continuity_summary', 'description': 'Get remediation continuity summary for a specific FQIN showing aggregated fixes and vulnerability trends over time. This includes the number of root patches and upstream upgrades applied, as well as vulnerability counts by severity from the first tag ever remediated to the last tag remediated of this image. NOTE: This tool should be called after using the list_unique_fqins tool to get the exact FQIN.', 'parameters': {'type': 'object', 'properties': {'organization_id': {'type': 'string', 'description': "The organization ID that owns the images. Get this from 'get_user_info' tool."}, 'untagged_fqin': {'type': 'string', 'description': "The fully qualified image name without tag (e.g., 'docker.io/library/ubuntu')"}}, 'required': ['organization_id', 'untagged_fqin'], 'additionalProperties': False}, 'strict': True}
|
root
|
other
|
{'type': 'function', 'name': 'get_remediation_details_by_scan_id', 'description': 'Gets the remediation details for a given scan ID focusing mainly on the packages that were upgraded / patched by root and the resulted image name to perform docker pull. IMPORTANT NOTE: image remediation should ALWAYS be fetched together with get_remediation_continuity_summary to provide a report at the end of every remediation process.', 'parameters': {'type': 'object', 'properties': {'organization_id': {'type': 'string', 'description': "The organization ID that owns the image remediations. Get this from 'get_user_info' tool."}, 'scan_id': {'type': 'string', 'description': 'Required scan ID to get remediation details for a specific scan'}}, 'required': ['organization_id', 'scan_id'], 'additionalProperties': False}, 'strict': True}
|
root
|
other
|
{'type': 'function', 'name': 'get_remediation_status', 'description': "Get detailed status and results of an image remediation process. Use the remediation_id returned from 'trigger_remediation' tool. PROCESS STEPS: 'pulling' → 'scanning' → 'evaluating' → 'remediating' → 'rescanning' → 'pushing' → 'completed'. PROCESS STATUS: 'in_progress', 'completed', 'failed'. SCAN STATUS: 'scan_status_pending', 'scan_status_running', 'scan_status_completed', 'scan_status_failed'. Poll this endpoint to track progress and get final results including remediated image details.", 'parameters': {'type': 'object', 'properties': {'organization_id': {'type': 'string', 'description': "The organization ID that owns the remediation. Get this from 'get_user_info' tool."}, 'remediation_id': {'type': 'string', 'description': "The remediation ID returned from the 'trigger_remediation' tool"}}, 'required': ['organization_id', 'remediation_id'], 'additionalProperties': False}, 'strict': True}
|
root
|
other
|
{'type': 'function', 'name': 'get_user_info', 'description': 'Get current user information including organization details. ESSENTIAL FIRST TOOL: Call this tool at the start of every session to get the organization_id required by most other tools. Returns user profile with organization memberships, roles, and access details. The organization_id from this response should be used in subsequent tool calls like registries_credentials_list, trigger_remediation, and get_remediation_status.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
root
|
other
|
{'type': 'function', 'name': 'list_remediation_continuity_summaries', 'description': 'List all remediation continuity summaries for an organization showing aggregated fixes and vulnerability trends for all FQINs. This provides an overview of all images that have been remediated in the organization, including the number of root patches and upstream upgrades applied, as well as vulnerability counts by severity for each image. NOTE: This tool should be called after using the list_unique_fqins tool to get the exact FQIN.', 'parameters': {'type': 'object', 'properties': {'organization_id': {'type': 'string', 'description': "The organization ID that owns the images. Get this from 'get_user_info' tool."}}, 'required': ['organization_id'], 'additionalProperties': False}, 'strict': True}
|
root
|
other
|
{'type': 'function', 'name': 'list_unique_fqins', 'description': 'List all unique FQINs (fully qualified image names) for an organization. This returns a list of all unique image names that have been processed for remediation in the organization. Use this to discover which images are available for continuity summary analysis.', 'parameters': {'type': 'object', 'properties': {'organization_id': {'type': 'string', 'description': "The organization ID that owns the images. Get this from 'get_user_info' tool."}}, 'required': ['organization_id'], 'additionalProperties': False}, 'strict': True}
|
root
|
other
|
{'type': 'function', 'name': 'ping', 'description': 'Health check endpoint that returns server status and timestamp', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
root
|
other
|
{'type': 'function', 'name': 'registries_credentials_list', 'description': "List all private registry credentials for an organization. WORKFLOW: First call 'get_user_info' to get organization_id, then use this tool to get creds_id values needed for triggering image remediation processes. Each credential entry includes an ID that can be used with the trigger_remediation tool to authenticate access to private registries containing the images to be remediated.", 'parameters': {'type': 'object', 'properties': {'organization_id': {'type': 'string', 'description': "The organization ID to list credentials for. Get this from 'get_user_info' tool."}}, 'required': ['organization_id'], 'additionalProperties': False}, 'strict': True}
|
root
|
other
|
{'type': 'function', 'name': 'trigger_remediation', 'description': "Trigger an asynchronous image remediation process for a container image. WORKFLOW: 1) First use 'get_user_info' to get organization_id. 2) Use 'registries_credentials_list' to get available creds_id values for private registry access. 3) Then use this tool to start remediation. PROCESS: Scans image for vulnerabilities → Creates SBOM → Evaluates OS/arch support → Applies security patches → Rescans → Pushes remediated image to registry. Returns a remediation_id for status tracking with 'get_remediation_status' tool.", 'parameters': {'type': 'object', 'properties': {'arch': {'type': 'string', 'description': "Target architecture (e.g., 'amd64', 'arm64'). Optional, will auto-detect if not specified."}, 'creds_id': {'type': 'string', 'description': "Registry credential ID from 'registries_credentials_list' tool. Required for private registries, SHOULD NOT be provided for public images."}, 'image_name': {'type': 'string', 'description': "Full image name including registry, repository, and tag (e.g., 'registry.com/repo/image:tag')"}, 'organization_id': {'type': 'string', 'description': "The organization ID that owns the image and credentials. Get this from 'get_user_info' tool."}}, 'required': ['organization_id', 'image_name'], 'additionalProperties': False}, 'strict': True}
|
ros2
|
other
|
{'type': 'function', 'name': 'ros2_get_message_fields', 'description': 'Returns the fields of a given ROS2 message type.', 'parameters': {'type': 'object', 'properties': {'message_type': {'type': 'string', 'description': 'Full ROS2 message type, e.g., std_msgs/msg/String'}}, 'required': ['message_type'], 'additionalProperties': False}, 'strict': True}
|
ros2
|
other
|
{'type': 'function', 'name': 'ros2_get_messages', 'description': 'Calls the ROS2 ‘/get_messages’ service to retrieve past messages from a topic for data which is stored in InfluxDB.', 'parameters': {'type': 'object', 'properties': {'message_type': {'type': 'string', 'description': 'Full ROS2 message type used for decoding'}, 'number_of_messages': {'type': 'integer', 'description': 'Number of messages to fetch.', 'default': 0}, 'time_end': {'type': 'string', 'description': 'ISO8601 timestamp string to filter messages before a point in time.'}, 'time_start': {'type': 'string', 'description': 'ISO8601 timestamp string to filter messages after a point in time.'}, 'topic_name': {'type': 'string', 'description': 'Name of the topic to retrieve messages from.'}}, 'required': ['topic_name', 'message_type'], 'additionalProperties': False}, 'strict': True}
|
ros2
|
other
|
{'type': 'function', 'name': 'ros2_interface_list', 'description': 'Returns a list of available ROS 2 interfaces.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
ros2
|
other
|
{'type': 'function', 'name': 'ros2_service_call', 'description': "Call a ROS 2 service by name and type using provided fields.\n Will ask the user to confirm if some fields are missing unless 'force_call' is set to True.\n Before **every** use of this tool, the agent must call 'ros2 service list' and 'ros2 interface list' to ensure the latest interface information is available.", 'parameters': {'type': 'object', 'properties': {'fields': {'type': 'object', 'description': 'Dictionary of fields to send in the service request.'}, 'force_call': {'type': 'boolean', 'description': 'Whether to call the service even if some fields are missing', 'default': False}, 'service_name': {'type': 'string', 'description': 'Name of the service to call'}, 'service_type': {'type': 'string', 'description': 'Full ROS 2 service type, before pass, check service type using tool ros2_service_list'}}, 'required': ['service_name', 'service_type', 'fields'], 'additionalProperties': False}, 'strict': True}
|
ros2
|
other
|
{'type': 'function', 'name': 'ros2_service_list', 'description': 'Returns a list of available ROS 2 services and their request fields.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
ros2
|
other
|
{'type': 'function', 'name': 'ros2_topic_list', 'description': 'Returns a list of available ROS 2 topics and their types.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
ros2
|
other
|
{'type': 'function', 'name': 'ros2_topic_publish', 'description': "Publish a message to a ROS 2 topic by name and message type using provided field values.\n Before **every** use of this tool, the agent must call 'ros2_topic_list' and 'ros2_interface_list'\n to ensure the latest available topics and message types are known.", 'parameters': {'type': 'object', 'properties': {'data': {'type': 'object', 'description': 'Dictionary containing the message fields and values'}, 'message_type': {'type': 'string', 'description': "Full ROS 2 message type, e.g., 'std_msgs/msg/String'"}, 'topic_name': {'type': 'string', 'description': 'Name of the topic to publish to'}}, 'required': ['topic_name', 'message_type', 'data'], 'additionalProperties': False}, 'strict': True}
|
ros2
|
other
|
{'type': 'function', 'name': 'ros2_topic_subscribe', 'description': "Subscribe to a ROS 2 topic by name collecting messages for a given time or count limit.\n Before **every** use of this tool, the agent must call 'ros2_topic_list'\n to ensure it has the latest available topics", 'parameters': {'type': 'object', 'properties': {'duration': {'type': 'number', 'description': 'If provided, collects messages for this many seconds.'}, 'message_limit': {'type': 'integer', 'description': 'If provided, stops after receiving this number of messages.'}, 'topic_name': {'type': 'string', 'description': 'Name of the topic to subscribe to'}}, 'required': ['topic_name', 'message_type'], 'additionalProperties': False}, 'strict': True}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.