server_name
stringclasses
156 values
category
stringclasses
1 value
tool
stringlengths
176
38.2k
cockroachdb
other
{'type': 'function', 'name': 'drop_database', 'description': 'Drop an existing database.\n\nArgs:\n database_name (str): Name of the database to drop.\n\nReturns:\n A success message or an error message.', 'parameters': {'type': 'object', 'properties': {'database_name': {'type': 'string', 'title': 'Database Name'}}, 'required': ['database_name'], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'drop_index', 'description': 'Drop an existing index.\n\nArgs:\n index_name (str): Name of the index to drop.\n\nReturns:\n A success message or an error message.', 'parameters': {'type': 'object', 'properties': {'index_name': {'type': 'string', 'title': 'Index Name'}}, 'required': ['index_name'], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'drop_table', 'description': 'Facilitate the deletion of existing tables from the database. This tool is useful for cleaning up test environments or managing schema changes, always with the necessary confirmations for security.\n\nArgs:\n table_name (str): Name of the table to drop.\n\nReturns:\n A success message or an error message.', 'parameters': {'type': 'object', 'properties': {'table_name': {'type': 'string', 'title': 'Table Name'}}, 'required': ['table_name'], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'drop_view', 'description': 'Drop an existing view.\n\nArgs:\n view_name (str): Name of the view to drop.\n\nReturns:\n A success message or an error message.', 'parameters': {'type': 'object', 'properties': {'view_name': {'type': 'string', 'title': 'View Name'}}, 'required': ['view_name'], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'execute_query', 'description': "Execute a SQL query with optional parameters and formatting.\n\nArgs:\n query (str): SQL query to execute.\n params (List, optional): Query parameters.\n format (str): Output format ('json', 'csv', 'table').\n limit (int, optional): Limit number of rows returned.\n\nReturns:\n The query resultset in json or csv format.", 'parameters': {'type': 'object', 'properties': {'format': {'type': 'string', 'title': 'Format', 'default': 'json'}, 'limit': {'title': 'Limit', 'default': None, 'anyOf': [{'type': 'integer'}, {'type': 'null'}]}, 'params': {'title': 'Params', 'default': None, 'anyOf': [{'type': 'array', 'items': True}, {'type': 'null'}]}, 'query': {'type': 'string', 'title': 'Query'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'execute_transaction', 'description': 'Execute a list of SQL queries as a single transaction.\n\nArgs:\n queries (List[str]): List of SQL queries to execute.\n\nReturns:\n A success message or an error message.', 'parameters': {'type': 'object', 'properties': {'queries': {'type': 'array', 'title': 'Queries', 'items': {'type': 'string'}}}, 'required': ['queries'], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'explain_query', 'description': "Return CockroachDB's statement plan for a preparable statement. You can use this information to optimize the query. If you run it with Analyze, it executes the SQL query and generates a statement plan with execution statistics.\n\nArgs:\n query (str): SQL query to explain.\n analyze (bool): If True, run EXPLAIN ANALYZE.\n\nReturns:\n A success message or an error message.", 'parameters': {'type': 'object', 'properties': {'analyze': {'type': 'boolean', 'title': 'Analyze', 'default': False}, 'query': {'type': 'string', 'title': 'Query'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'get_active_connections', 'description': 'List active connections/sessions to the current database.\n\nReturns:\n Active sessions on the cluster.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'get_cluster_status', 'description': "Get cluster health and node distribution.\n\nArgs:\n detailed (bool): If True, returns all node details. If False, returns summary info.\n\nReturns:\n Details about the cluster's status and how nodes/ranges are distributed or an error message.", 'parameters': {'type': 'object', 'properties': {'detailed': {'type': 'boolean', 'title': 'Detailed', 'default': False}}, 'required': [], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'get_connection_status', 'description': 'Get the current connection status and details.\n\nReturns:\n The connection status or an error message.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'get_database_settings', 'description': 'Retrieve current database or cluster settings.\n\nReturns:\n All cluster settings.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'get_query_history', 'description': 'Get the history of executed queries.\n\nArgs:\n limit (int): Number of recent queries to return (default: 10).\n\nReturns:\n A list of the last executed queries.', 'parameters': {'type': 'object', 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 10}}, 'required': [], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'get_replication_status', 'description': 'Get replication and distribution status for a table or the whole database.\n\nArgs:\n table_name (str): Table name to filter (default: "", for all tables).\n\nReturns:\n Details about range replication for a specific table or the current database.', 'parameters': {'type': 'object', 'properties': {'table_name': {'type': 'string', 'title': 'Table Name'}}, 'required': ['table_name'], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'get_table_relationships', 'description': 'Get foreign key relationships for a table or all tables.\n\nArgs:\n table_name (str, optional): Table name to filter relationships (default: None).\n\nReturns:\n List all relationships for a specific table or in a schema.', 'parameters': {'type': 'object', 'properties': {'table_name': {'title': 'Table Name', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': [], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'list_databases', 'description': 'List all databases in the CockroachDB cluster.\n\nReturns:\n A list of databases with row count or an error message.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'list_tables', 'description': 'List all tables present in the connected Cockroach database instance. This is invaluable for AI to understand the database’s landscape and identify relevant data sources for a given query. \n\nArgs:\n db_schema (str): Schema name (default: "public").\n\nReturns:\n The list of all tables present in the connected Cockroach database.', 'parameters': {'type': 'object', 'properties': {'db_schema': {'type': 'string', 'title': 'Db Schema', 'default': 'public'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'list_views', 'description': 'List all views in a schema.\n\nArgs:\n db_schema (str): Schema name (default: "public").\n\nReturns:\n All views in a schema', 'parameters': {'type': 'object', 'properties': {'db_schema': {'type': 'string', 'title': 'Db Schema', 'default': 'public'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'show_running_queries', 'description': "Show currently running queries on the cluster.\n\nArgs:\n node_id (int): Node ID to filter (default: 1).\n user (str): Username to filter (default: 'root').\n min_duration (str): Minimum query duration (default: '1:0', format: 'minutes:seconds').\n\nReturns:\n The queries running on the cluster.", 'parameters': {'type': 'object', 'properties': {'min_duration': {'type': 'string', 'title': 'Min Duration', 'default': '1:0'}, 'node_id': {'type': 'integer', 'title': 'Node Id', 'default': 1}, 'user': {'type': 'string', 'title': 'User', 'default': 'root'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
cockroachdb
other
{'type': 'function', 'name': 'switch_database', 'description': 'Switch the connection to a different database.\n\nArgs:\n database (str): Name of the database to switch to.\n\nReturns:\n A success message or an error message.', 'parameters': {'type': 'object', 'properties': {'database': {'type': 'string', 'title': 'Database'}}, 'required': ['database'], 'additionalProperties': False}, 'strict': True}
context7
other
{'type': 'function', 'name': 'get-library-docs', 'description': "Fetches up-to-date documentation for a library. You must call 'resolve-library-id' first to obtain the exact Context7-compatible library ID required to use this tool, UNLESS the user explicitly provides a library ID in the format '/org/project' or '/org/project/version' in their query.", 'parameters': {'type': 'object', 'properties': {'context7CompatibleLibraryID': {'type': 'string', 'description': "Exact Context7-compatible library ID (e.g., '/mongodb/docs', '/vercel/next.js', '/supabase/supabase', '/vercel/next.js/v14.3.0-canary.87') retrieved from 'resolve-library-id' or directly from user query in the format '/org/project' or '/org/project/version'."}, 'tokens': {'type': 'number', 'description': 'Maximum number of tokens of documentation to retrieve (default: 10000). Higher values provide more context but consume more tokens.'}, 'topic': {'type': 'string', 'description': "Topic to focus documentation on (e.g., 'hooks', 'routing')."}}, 'required': ['context7CompatibleLibraryID'], 'additionalProperties': False}, 'strict': True}
context7
other
{'type': 'function', 'name': 'resolve-library-id', 'description': "Resolves a package/product name to a Context7-compatible library ID and returns a list of matching libraries.\n\nYou MUST call this function before 'get-library-docs' to obtain a valid Context7-compatible library ID UNLESS the user explicitly provides a library ID in the format '/org/project' or '/org/project/version' in their query.\n\nSelection Process:\n1. Analyze the query to understand what library/package the user is looking for\n2. Return the most relevant match based on:\n- Name similarity to the query (exact matches prioritized)\n- Description relevance to the query's intent\n- Documentation coverage (prioritize libraries with higher Code Snippet counts)\n- Trust score (consider libraries with scores of 7-10 more authoritative)\n\nResponse Format:\n- Return the selected library ID in a clearly marked section\n- Provide a brief explanation for why this library was chosen\n- If multiple good matches exist, acknowledge this but proceed with the most relevant one\n- If no good matches exist, clearly state this and suggest query refinements\n\nFor ambiguous queries, request clarification before proceeding with a best-guess match.", 'parameters': {'type': 'object', 'properties': {'libraryName': {'type': 'string', 'description': 'Library name to search for and retrieve a Context7-compatible library ID.'}}, 'required': ['libraryName'], 'additionalProperties': False}, 'strict': True}
curl
other
{'type': 'function', 'name': 'curl', 'description': 'Run a curl command.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
cyreslab-ai-shodan
other
{'type': 'function', 'name': 'get_host_info', 'description': 'Get detailed information about a specific IP address', 'parameters': {'type': 'object', 'properties': {'fields': {'type': 'array', 'description': "List of fields to include in the results (e.g., ['ip_str', 'ports', 'location.country_name'])", 'items': {'type': 'string'}}, 'ip': {'type': 'string', 'description': 'IP address to look up'}, 'max_items': {'type': 'number', 'description': 'Maximum number of items to include in arrays (default: 5)'}}, 'required': ['ip'], 'additionalProperties': False}, 'strict': True}
cyreslab-ai-shodan
other
{'type': 'function', 'name': 'get_ssl_info', 'description': 'Get SSL certificate information for a domain', 'parameters': {'type': 'object', 'properties': {'domain': {'type': 'string', 'description': 'Domain name to look up SSL certificates for (e.g., example.com)'}}, 'required': ['domain'], 'additionalProperties': False}, 'strict': True}
cyreslab-ai-shodan
other
{'type': 'function', 'name': 'scan_network_range', 'description': 'Scan a network range (CIDR notation) for devices', 'parameters': {'type': 'object', 'properties': {'cidr': {'type': 'string', 'description': 'Network range in CIDR notation (e.g., 192.168.1.0/24)'}, 'fields': {'type': 'array', 'description': "List of fields to include in the results (e.g., ['ip_str', 'ports', 'location.country_name'])", 'items': {'type': 'string'}}, 'max_items': {'type': 'number', 'description': 'Maximum number of items to include in results (default: 5)'}}, 'required': ['cidr'], 'additionalProperties': False}, 'strict': True}
cyreslab-ai-shodan
other
{'type': 'function', 'name': 'search_iot_devices', 'description': 'Search for specific types of IoT devices', 'parameters': {'type': 'object', 'properties': {'country': {'type': 'string', 'description': "Optional country code to limit search (e.g., 'US', 'DE')"}, 'device_type': {'type': 'string', 'description': "Type of IoT device to search for (e.g., 'webcam', 'router', 'smart tv')"}, 'max_items': {'type': 'number', 'description': 'Maximum number of items to include in results (default: 5)'}}, 'required': ['device_type'], 'additionalProperties': False}, 'strict': True}
cyreslab-ai-shodan
other
{'type': 'function', 'name': 'search_shodan', 'description': "Search Shodan's database for devices and services", 'parameters': {'type': 'object', 'properties': {'facets': {'type': 'array', 'description': "List of facets to include in the search results (e.g., ['country', 'org'])", 'items': {'type': 'string'}}, 'fields': {'type': 'array', 'description': "List of fields to include in the results (e.g., ['ip_str', 'ports', 'location.country_name'])", 'items': {'type': 'string'}}, 'max_items': {'type': 'number', 'description': 'Maximum number of items to include in arrays (default: 5)'}, 'page': {'type': 'number', 'description': 'Page number for results pagination (default: 1)'}, 'query': {'type': 'string', 'description': "Shodan search query (e.g., 'apache country:US')"}, 'summarize': {'type': 'boolean', 'description': 'Whether to return a summary of the results instead of the full data (default: false)'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
dappier
other
{'type': 'function', 'name': 'dappier_ai_recommendations', 'description': 'Fetch AI-powered recommendations from Dappier by processing the provided query with a selected data model that tailors results to specific interests.\n\n - **Sports News (dm_01j0pb465keqmatq9k83dthx34):** \n Get real-time news, updates, and personalized content from top sports sources.\n\n - **Lifestyle News (dm_01j0q82s4bfjmsqkhs3ywm3x6y):** \n Access current lifestyle updates, analysis, and insights from leading lifestyle publications.\n\n - **iHeartDogs AI (dm_01j1sz8t3qe6v9g8ad102kvmqn):** \n Tap into a dog care expert with access to thousands of articles covering pet health, behavior, grooming, and ownership.\n\n - **iHeartCats AI (dm_01j1sza0h7ekhaecys2p3y0vmj):** \n Utilize a cat care specialist that provides comprehensive content on cat health, behavior, and lifestyle.\n\n - **GreenMonster (dm_01j5xy9w5sf49bm6b1prm80m27):** \n Receive guidance for making conscious and compassionate choices benefiting people, animals, and the planet.\n\n - **WISH-TV AI (dm_01jagy9nqaeer9hxx8z1sk1jx6):** \n Get recommendations covering sports, breaking news, politics, multicultural updates, and more.\n\n Based on the chosen `data_model_id`, the tool processes the input query and returns a formatted summary including article titles, summaries, images, source URLs, publication dates, and relevance scores.', 'parameters': {'type': 'object', 'properties': {'data_model_id': {'type': 'string', 'title': 'Data Model Id', 'description': 'The data model ID to use for recommendations.\n\nAvailable Data Models:\n- dm_01j0pb465keqmatq9k83dthx34: (Sports News) Real-time news, updates, and personalized content from top sports sources like Sportsnaut, Forever Blueshirts, Minnesota Sports Fan, LAFB Network, Bounding Into Sports and Ringside Intel.\n- dm_01j0q82s4bfjmsqkhs3ywm3x6y: (Lifestyle News) Real-time updates, analysis, and personalized content from top sources like The Mix, Snipdaily, Nerdable and Familyproof.\n- dm_01j1sz8t3qe6v9g8ad102kvmqn: (iHeartDogs AI) A dog care expert with access to thousands of articles on health, behavior, lifestyle, grooming, ownership, and more from the industry-leading pet community iHeartDogs.com.\n- dm_01j1sza0h7ekhaecys2p3y0vmj: (iHeartCats AI) A cat care expert with access to thousands of articles on health, behavior, lifestyle, grooming, ownership, and more from the industry-leading pet community iHeartCats.com.\n- dm_01j5xy9w5sf49bm6b1prm80m27: (GreenMonster) A helpful guide to making conscious and compassionate choices that benefit people, animals, and the planet.\n- dm_01jagy9nqaeer9hxx8z1sk1jx6: (WISH-TV AI) Covers sports, politics, breaking news, multicultural news, Hispanic language content, entertainment, health, and education.\n\n', 'enum': ['dm_01j0pb465keqmatq9k83dthx34', 'dm_01j0q82s4bfjmsqkhs3ywm3x6y', 'dm_01j1sz8t3qe6v9g8ad102kvmqn', 'dm_01j1sza0h7ekhaecys2p3y0vmj', 'dm_01j5xy9w5sf49bm6b1prm80m27', 'dm_01jagy9nqaeer9hxx8z1sk1jx6']}, 'num_articles_ref': {'type': 'integer', 'title': 'Num Articles Ref', 'description': 'Minimum number of articles to return from the reference domain.', 'default': 0}, 'query': {'type': 'string', 'title': 'Query', 'description': 'The input string for AI-powered content recommendations.'}, 'ref': {'title': 'Ref', 'description': 'The site domain where recommendations should be prioritized.', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'search_algorithm': {'type': 'string', 'title': 'Search Algorithm', 'description': 'The search algorithm to use for retrieving articles.', 'default': 'most_recent', 'enum': ['most_recent', 'semantic', 'most_recent_semantic', 'trending']}, 'similarity_top_k': {'type': 'integer', 'title': 'Similarity Top K', 'description': 'Number of top similar articles to retrieve based on semantic similarity.', 'default': 9}}, 'required': ['query', 'data_model_id'], 'additionalProperties': False}, 'strict': True}
dappier
other
{'type': 'function', 'name': 'dappier_real_time_search', 'description': 'Retrieve real-time search data from Dappier by processing an AI model that supports two key capabilities:\n\n - Real-Time Web Search: \n Access the latest news, stock market data, weather, travel information, deals, and more using model `am_01j06ytn18ejftedz6dyhz2b15`. \n Use this model when no stock ticker symbol is provided.\n\n - Stock Market Data: \n Retrieve real-time financial news, stock prices, and trade updates using model `am_01j749h8pbf7ns8r1bq9s2evrh`. \n Use this model only when a stock ticker symbol is provided.\n\n Based on the provided `ai_model_id`, the tool selects the appropriate model and returns search results.', 'parameters': {'type': 'object', 'properties': {'ai_model_id': {'type': 'string', 'title': 'Ai Model Id', 'description': 'The AI model ID to use for the query.\n\nAvailable AI Models:\n- am_01j06ytn18ejftedz6dyhz2b15: (Real-Time Data) Access real-time Google web search results, including the latest news, stock market data, news, weather, travel, deals, and more. Use this model when no stock ticker symbol is provided.\n- am_01j749h8pbf7ns8r1bq9s2evrh: (Stock Market Data) Access real-time financial news, stock prices, and trades from Polygon.io, with AI-powered insights and up-to-the-minute updates. Use this model only when a stock ticker symbol is provided.\n\n', 'enum': ['am_01j06ytn18ejftedz6dyhz2b15', 'am_01j749h8pbf7ns8r1bq9s2evrh']}, 'query': {'type': 'string', 'title': 'Query', 'description': 'The search query to retrieve real-time information.'}}, 'required': ['query', 'ai_model_id'], 'additionalProperties': False}, 'strict': True}
dart
other
{'type': 'function', 'name': 'add_task_comment', 'description': 'Add a comment to an existing task without modifying the task description. Comments support markdown formatting.', 'parameters': {'type': 'object', 'properties': {'taskId': {'type': 'string', 'description': 'The 12-character alphanumeric ID of the task', 'pattern': '^[a-zA-Z0-9]{12}$'}, 'text': {'type': 'string', 'description': 'The full content of the comment, which can include markdown formatting.'}}, 'required': ['taskId', 'text'], 'additionalProperties': False}, 'strict': True}
dart
other
{'type': 'function', 'name': 'create_doc', 'description': 'Create a new doc in Dart. You can specify title, text content, and folder.', 'parameters': {'type': 'object', 'properties': {'folder': {'type': 'string', 'description': 'The title of the folder to place the doc in'}, 'text': {'type': 'string', 'description': 'The text content of the doc, which can include markdown formatting'}, 'title': {'type': 'string', 'description': 'The title of the doc (required)'}}, 'required': ['title'], 'additionalProperties': False}, 'strict': True}
dart
other
{'type': 'function', 'name': 'create_task', 'description': 'Create a new task in Dart. You can specify title, description, status, priority, size, dates, dartboard, assignees, tags, parent task, custom properties, and task relationships.', 'parameters': {'type': 'object', 'properties': {'assignee': {'type': 'string', 'description': "Single assignee name or email (if workspace doesn't allow multiple assignees)"}, 'assignees': {'type': 'array', 'description': 'Array of assignee names or emails (if workspace allows multiple assignees)', 'items': {'type': 'string'}}, 'customProperties': {'type': 'object', 'description': "Custom properties to apply to the task. Use the property names from the config. Examples: { 'customCheckboxProperty': true, 'customTextProperty': 'Some text', 'customNumberProperty': 5, 'customSelectProperty': 'Option Name', 'customDatesProperty': '2025-05-10', 'customDatesPropertyWithRange': ['2025-05-01', '2025-05-30'], 'customMultiselectProperty': ['option1', 'option2'], 'customUserProperty': 'user@example.com', 'customMultipleUserProperty': ['user1@example.com', 'user2@example.com'], 'customTimeTrackingProperty': '1:30:00' }", 'additionalProperties': {'oneOf': [{'type': 'boolean', 'title': 'CustomPropertyCheckbox'}, {'type': ['array', 'null'], 'title': 'CustomPropertyDatesRange', 'items': {'type': ['string', 'null']}}, {'type': ['string', 'null'], 'title': 'CustomPropertyDatesSingle'}, {'type': 'array', 'title': 'CustomPropertyMultiselect', 'items': {'type': 'string'}}, {'type': ['number', 'null'], 'title': 'CustomPropertyNumber'}, {'type': ['string', 'null'], 'title': 'CustomPropertySelect'}, {'type': 'string', 'title': 'CustomPropertyStatus'}, {'type': 'string', 'title': 'CustomPropertyText'}, {'type': 'string', 'title': 'CustomPropertyTimeTracking', 'description': 'Duration in HH:MM:SS format', 'pattern': '^[0-9]+:[0-5][0-9]:[0-5][0-9]$'}, {'type': 'array', 'title': 'CustomPropertyUserMultiple', 'items': {'type': 'string'}}, {'type': ['string', 'null'], 'title': 'CustomPropertyUserSingle'}]}}, 'dartboard': {'type': 'string', 'description': 'The title of the dartboard (project or list of tasks)'}, 'description': {'type': 'string', 'description': 'A longer description of the task, which can include markdown formatting'}, 'dueAt': {'type': 'string', 'description': "The due date in ISO format (should be at 9:00am in user's timezone)"}, 'parentId': {'type': 'string', 'description': 'The ID of the parent task', 'pattern': '^[a-zA-Z0-9]{12}$'}, 'priority': {'type': 'string', 'description': 'The priority (Critical, High, Medium, or Low)'}, 'size': {'type': ['string', 'number', 'null'], 'description': 'The size which represents the amount of work needed'}, 'startAt': {'type': 'string', 'description': "The start date in ISO format (should be at 9:00am in user's timezone)"}, 'status': {'type': 'string', 'description': 'The status from the list of available statuses'}, 'tags': {'type': 'array', 'description': 'Array of tags to apply to the task', 'items': {'type': 'string'}}, 'taskRelationships': {'type': 'object', 'description': 'Task relationships including subtasks, blockers, duplicates, and related tasks', 'properties': {'blockerIds': {'type': 'array', 'description': 'List of task IDs that block this task', 'items': {'type': 'string', 'pattern': '^[a-zA-Z0-9]{12}$'}}, 'blockingIds': {'type': 'array', 'description': 'List of task IDs that this task blocks', 'items': {'type': 'string', 'pattern': '^[a-zA-Z0-9]{12}$'}}, 'duplicateIds': {'type': 'array', 'description': 'List of task IDs that are duplicates of this task', 'items': {'type': 'string', 'pattern': '^[a-zA-Z0-9]{12}$'}}, 'relatedIds': {'type': 'array', 'description': 'List of task IDs that are related to this task', 'items': {'type': 'string', 'pattern': '^[a-zA-Z0-9]{12}$'}}, 'subtaskIds': {'type': 'array', 'description': 'List of task IDs that are subtasks of this task', 'items': {'type': 'string', 'pattern': '^[a-zA-Z0-9]{12}$'}}}}, 'title': {'type': 'string', 'description': 'The title of the task (required)'}, 'type': {'type': 'string', 'description': 'The type of the task from the list of available types'}}, 'required': ['title'], 'additionalProperties': False}, 'strict': True}
dart
other
{'type': 'function', 'name': 'delete_doc', 'description': 'Move an existing doc to the trash, where it can be recovered if needed. Nothing else about the doc will be changed.', 'parameters': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'The 12-character alphanumeric ID of the doc', 'pattern': '^[a-zA-Z0-9]{12}$'}}, 'required': ['id'], 'additionalProperties': False}, 'strict': True}
dart
other
{'type': 'function', 'name': 'delete_task', 'description': 'Move an existing task to the trash, where it can be recovered if needed. Nothing else about the task will be changed.', 'parameters': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'The 12-character alphanumeric ID of the task', 'pattern': '^[a-zA-Z0-9]{12}$'}}, 'required': ['id'], 'additionalProperties': False}, 'strict': True}
dart
other
{'type': 'function', 'name': 'get_config', 'description': "Get information about the user's space, including all of the possible values that can be provided to other endpoints. This includes available assignees, dartboards, folders, statuses, tags, priorities, sizes, and all custom property definitions.", 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
dart
other
{'type': 'function', 'name': 'get_dartboard', 'description': "Retrieve an existing dartboard by its ID. Returns the dartboard's information including title, description, and all tasks within it.", 'parameters': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'The 12-character alphanumeric ID of the dartboard', 'pattern': '^[a-zA-Z0-9]{12}$'}}, 'required': ['id'], 'additionalProperties': False}, 'strict': True}
dart
other
{'type': 'function', 'name': 'get_doc', 'description': "Retrieve an existing doc by its ID. Returns the doc's information including title, text content, folder, and more.", 'parameters': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'The 12-character alphanumeric ID of the doc', 'pattern': '^[a-zA-Z0-9]{12}$'}}, 'required': ['id'], 'additionalProperties': False}, 'strict': True}
dart
other
{'type': 'function', 'name': 'get_folder', 'description': "Retrieve an existing folder by its ID. Returns the folder's information including title, description, and all docs within it.", 'parameters': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'The 12-character alphanumeric ID of the folder', 'pattern': '^[a-zA-Z0-9]{12}$'}}, 'required': ['id'], 'additionalProperties': False}, 'strict': True}
dart
other
{'type': 'function', 'name': 'get_task', 'description': "Retrieve an existing task by its ID. Returns the task's information including title, description, status, priority, dates, custom properties, and more.", 'parameters': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'The 12-character alphanumeric ID of the task', 'pattern': '^[a-zA-Z0-9]{12}$'}}, 'required': ['id'], 'additionalProperties': False}, 'strict': True}
dart
other
{'type': 'function', 'name': 'get_view', 'description': "Retrieve an existing view by its ID. Returns the view's information including title, description, and all tasks within it.", 'parameters': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'The 12-character alphanumeric ID of the view', 'pattern': '^[a-zA-Z0-9]{12}$'}}, 'required': ['id'], 'additionalProperties': False}, 'strict': True}
dart
other
{'type': 'function', 'name': 'list_docs', 'description': 'List docs from Dart with optional filtering parameters. You can filter by folder, title, text content, and more.', 'parameters': {'type': 'object', 'properties': {'folder': {'type': 'string', 'description': 'Filter by folder title'}, 'folderId': {'type': 'string', 'description': 'Filter by folder ID', 'pattern': '^[a-zA-Z0-9]{12}$'}, 'ids': {'type': 'string', 'description': 'Filter by IDs'}, 'inTrash': {'type': 'boolean', 'description': 'Filter by trash status'}, 'limit': {'type': 'number', 'description': 'Number of results per page'}, 'o': {'type': 'array', 'description': 'Ordering options (use - prefix for descending)', 'items': {'type': 'string', 'enum': ['-created_at', '-order', '-title', '-updated_at', 'created_at', 'order', 'title', 'updated_at']}}, 'offset': {'type': 'number', 'description': 'Initial index for pagination'}, 's': {'type': 'string', 'description': 'Search by title, text, or folder title'}, 'text': {'type': 'string', 'description': 'Filter by text content'}, 'title': {'type': 'string', 'description': 'Filter by title'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
dart
other
{'type': 'function', 'name': 'list_task_comments', 'description': 'List comments from Dart with optional filtering parameters. You can filter by author, task, text content, dates, and more.', 'parameters': {'type': 'object', 'properties': {'author': {'type': 'string', 'description': 'Filter by author name or email'}, 'authorId': {'type': 'string', 'description': 'Filter by author ID'}, 'ids': {'type': 'string', 'description': 'Filter by comment IDs'}, 'limit': {'type': 'number', 'description': 'Number of results per page'}, 'offset': {'type': 'number', 'description': 'Initial index for pagination'}, 'parentId': {'type': 'string', 'description': 'Filter by parent comment ID'}, 'publishedAtAfter': {'type': 'string', 'description': 'Filter by published date after (ISO format)'}, 'publishedAtBefore': {'type': 'string', 'description': 'Filter by published date before (ISO format)'}, 'task': {'type': 'string', 'description': 'Filter by task title'}, 'taskId': {'type': 'string', 'description': 'Filter by task ID'}, 'text': {'type': 'string', 'description': 'Filter by comment text content'}}, 'required': ['taskId'], 'additionalProperties': False}, 'strict': True}
dart
other
{'type': 'function', 'name': 'list_tasks', 'description': 'List tasks from Dart with optional filtering parameters. You can filter by assignee, status, dartboard, priority, due date, and more.', 'parameters': {'type': 'object', 'properties': {'assignee': {'type': 'string', 'description': 'Filter by assignee name or email'}, 'assigneeId': {'type': 'string', 'description': 'Filter by assignee ID', 'pattern': '^[a-zA-Z0-9]{12}$'}, 'dartboard': {'type': 'string', 'description': 'Filter by dartboard title'}, 'dartboardId': {'type': 'string', 'description': 'Filter by dartboard ID', 'pattern': '^[a-zA-Z0-9]{12}$'}, 'description': {'type': 'string', 'description': 'Filter by description content'}, 'dueAtAfter': {'type': 'string', 'description': 'Filter by due date after (ISO format)'}, 'dueAtBefore': {'type': 'string', 'description': 'Filter by due date before (ISO format)'}, 'ids': {'type': 'string', 'description': 'Filter by IDs'}, 'inTrash': {'type': 'boolean', 'description': 'Filter by trash status'}, 'isCompleted': {'type': 'boolean', 'description': 'Filter by completion status'}, 'limit': {'type': 'number', 'description': 'Number of results per page'}, 'offset': {'type': 'number', 'description': 'Initial index for pagination'}, 'parentId': {'type': 'string', 'description': 'Filter by parent task ID', 'pattern': '^[a-zA-Z0-9]{12}$'}, 'priority': {'type': 'string', 'description': 'Filter by priority'}, 'size': {'type': 'number', 'description': 'Filter by task size'}, 'startAtAfter': {'type': 'string', 'description': 'Filter by start date after (ISO format)'}, 'startAtBefore': {'type': 'string', 'description': 'Filter by start date before (ISO format)'}, 'status': {'type': 'string', 'description': 'Filter by status'}, 'statusId': {'type': 'string', 'description': 'Filter by status ID', 'pattern': '^[a-zA-Z0-9]{12}$'}, 'tag': {'type': 'string', 'description': 'Filter by tag'}, 'tagId': {'type': 'string', 'description': 'Filter by tag ID', 'pattern': '^[a-zA-Z0-9]{12}$'}, 'title': {'type': 'string', 'description': 'Filter by title'}, 'type': {'type': 'string', 'description': 'Filter by task type'}, 'typeId': {'type': 'string', 'description': 'Filter by task type ID', 'pattern': '^[a-zA-Z0-9]{12}$'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
dart
other
{'type': 'function', 'name': 'update_doc', 'description': 'Update an existing doc. You can modify its title, text content, and folder.', 'parameters': {'type': 'object', 'properties': {'folder': {'type': 'string', 'description': 'The title of the folder to place the doc in'}, 'id': {'type': 'string', 'description': 'The 12-character alphanumeric ID of the doc', 'pattern': '^[a-zA-Z0-9]{12}$'}, 'text': {'type': 'string', 'description': 'The text content of the doc, which can include markdown formatting'}, 'title': {'type': 'string', 'description': 'The title of the doc'}}, 'required': ['id'], 'additionalProperties': False}, 'strict': True}
dart
other
{'type': 'function', 'name': 'update_task', 'description': 'Update an existing task. You can modify any of its properties including title, description, status, priority, dates, assignees, tags, custom properties, and task relationships.', 'parameters': {'type': 'object', 'properties': {'assignee': {'type': 'string', 'description': "Single assignee name or email (if workspace doesn't allow multiple assignees)"}, 'assignees': {'type': 'array', 'description': 'Array of assignee names or emails (if workspace allows multiple assignees)', 'items': {'type': 'string'}}, 'customProperties': {'type': 'object', 'description': "Custom properties to apply to the task. Use the property names from the config. Examples: { 'customCheckboxProperty': true, 'customTextProperty': 'Some text', 'customNumberProperty': 5, 'customSelectProperty': 'Option Name', 'customDatesProperty': '2025-05-10', 'customDatesPropertyWithRange': ['2025-05-01', '2025-05-30'], 'customMultiselectProperty': ['option1', 'option2'], 'customUserProperty': 'user@example.com', 'customMultipleUserProperty': ['user1@example.com', 'user2@example.com'], 'customTimeTrackingProperty': '1:30:00' }", 'additionalProperties': {'oneOf': [{'type': 'boolean', 'title': 'CustomPropertyCheckbox'}, {'type': ['array', 'null'], 'title': 'CustomPropertyDatesRange', 'items': {'type': ['string', 'null']}}, {'type': ['string', 'null'], 'title': 'CustomPropertyDatesSingle'}, {'type': 'array', 'title': 'CustomPropertyMultiselect', 'items': {'type': 'string'}}, {'type': ['number', 'null'], 'title': 'CustomPropertyNumber'}, {'type': ['string', 'null'], 'title': 'CustomPropertySelect'}, {'type': 'string', 'title': 'CustomPropertyStatus'}, {'type': 'string', 'title': 'CustomPropertyText'}, {'type': 'string', 'title': 'CustomPropertyTimeTracking', 'description': 'Duration in HH:MM:SS format', 'pattern': '^[0-9]+:[0-5][0-9]:[0-5][0-9]$'}, {'type': 'array', 'title': 'CustomPropertyUserMultiple', 'items': {'type': 'string'}}, {'type': ['string', 'null'], 'title': 'CustomPropertyUserSingle'}]}}, 'dartboard': {'type': 'string', 'description': 'The title of the dartboard (project or list of tasks)'}, 'description': {'type': 'string', 'description': 'A longer description of the task, which can include markdown formatting'}, 'dueAt': {'type': 'string', 'description': "The due date in ISO format (should be at 9:00am in user's timezone)"}, 'id': {'type': 'string', 'description': 'The 12-character alphanumeric ID of the task', 'pattern': '^[a-zA-Z0-9]{12}$'}, 'parentId': {'type': 'string', 'description': 'The ID of the parent task', 'pattern': '^[a-zA-Z0-9]{12}$'}, 'priority': {'type': 'string', 'description': 'The priority (Critical, High, Medium, or Low)'}, 'size': {'type': ['string', 'number', 'null'], 'description': 'The size which represents the amount of work needed'}, 'startAt': {'type': 'string', 'description': "The start date in ISO format (should be at 9:00am in user's timezone)"}, 'status': {'type': 'string', 'description': 'The status from the list of available statuses'}, 'tags': {'type': 'array', 'description': 'Array of tags to apply to the task', 'items': {'type': 'string'}}, 'taskRelationships': {'type': 'object', 'description': 'Task relationships including subtasks, blockers, duplicates, and related tasks', 'properties': {'blockerIds': {'type': 'array', 'description': 'List of task IDs that block this task', 'items': {'type': 'string', 'pattern': '^[a-zA-Z0-9]{12}$'}}, 'blockingIds': {'type': 'array', 'description': 'List of task IDs that this task blocks', 'items': {'type': 'string', 'pattern': '^[a-zA-Z0-9]{12}$'}}, 'duplicateIds': {'type': 'array', 'description': 'List of task IDs that are duplicates of this task', 'items': {'type': 'string', 'pattern': '^[a-zA-Z0-9]{12}$'}}, 'relatedIds': {'type': 'array', 'description': 'List of task IDs that are related to this task', 'items': {'type': 'string', 'pattern': '^[a-zA-Z0-9]{12}$'}}, 'subtaskIds': {'type': 'array', 'description': 'List of task IDs that are subtasks of this task', 'items': {'type': 'string', 'pattern': '^[a-zA-Z0-9]{12}$'}}}}, 'title': {'type': 'string', 'description': 'The title of the task'}, 'type': {'type': 'string', 'description': 'The type of the task from the list of available types'}}, 'required': ['id'], 'additionalProperties': False}, 'strict': True}
databutton
other
{'type': 'function', 'name': 'submit_app_requirements', 'description': 'Submit app requirements', 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'The name of the app'}, 'pitch': {'type': 'string', 'description': 'The pitch for the app'}, 'spec': {'type': 'object', 'required': ['description', 'targetAudience', 'design', 'typography'], 'properties': {'description': {'type': 'string', 'description': "The app's specifications given in no more than 4-5 paragraphs"}, 'design': {'type': 'string', 'description': "The app's design"}, 'targetAudience': {'type': 'string', 'description': "The app's target audience"}, 'typography': {'type': 'string', 'description': "The app's typography"}}, 'additionalProperties': False}}, 'required': ['name', 'pitch', 'spec'], 'additionalProperties': False}, 'strict': True}
deepwiki
other
{'type': 'function', 'name': 'ask_question', 'description': 'Ask any question about a GitHub repository', 'parameters': {'type': 'object', 'properties': {'question': {'type': 'string', 'description': 'The question to ask about the repository'}, 'repoName': {'type': 'string', 'description': 'GitHub repository: owner/repo (e.g. "facebook/react")'}}, 'required': ['repoName', 'question'], 'additionalProperties': False}, 'strict': True}
deepwiki
other
{'type': 'function', 'name': 'read_wiki_contents', 'description': 'View documentation about a GitHub repository', 'parameters': {'type': 'object', 'properties': {'repoName': {'type': 'string', 'description': 'GitHub repository: owner/repo (e.g. "facebook/react")'}}, 'required': ['repoName'], 'additionalProperties': False}, 'strict': True}
deepwiki
other
{'type': 'function', 'name': 'read_wiki_structure', 'description': 'Get a list of documentation topics for a GitHub repository', 'parameters': {'type': 'object', 'properties': {'repoName': {'type': 'string', 'description': 'GitHub repository: owner/repo (e.g. "facebook/react")'}}, 'required': ['repoName'], 'additionalProperties': False}, 'strict': True}
descope
other
{'type': 'function', 'name': 'create-user', 'description': 'Create a new user in Descope project', 'parameters': {'type': 'object', 'properties': {'additionalLoginIds': {'type': 'array', 'description': 'Additional login identifiers', 'items': {'type': 'string'}}, 'customAttributes': {'type': 'object', 'description': 'Custom attributes for the user', 'additionalProperties': True}, 'displayName': {'type': 'string', 'description': "User's display name"}, 'email': {'type': 'string', 'description': "User's email address", 'format': 'email'}, 'familyName': {'type': 'string', 'description': "User's family/last name"}, 'givenName': {'type': 'string', 'description': "User's given/first name"}, 'loginId': {'type': 'string', 'description': 'Primary login identifier for the user'}, 'middleName': {'type': 'string', 'description': "User's middle name"}, 'phone': {'type': 'string', 'description': "User's phone number in E.164 format"}, 'picture': {'type': 'string', 'description': "URL to user's profile picture", 'format': 'uri'}, 'roles': {'type': 'array', 'description': 'Global role names to assign to the user', 'items': {'type': 'string'}}, 'ssoAppIds': {'type': 'array', 'description': 'SSO application IDs to associate', 'items': {'type': 'string'}}, 'userTenants': {'type': 'array', 'description': 'Tenant associations with specific roles', 'items': {'type': 'object', 'required': ['tenantId', 'roleNames'], 'properties': {'roleNames': {'type': 'array', 'items': {'type': 'string'}}, 'tenantId': {'type': 'string'}}, 'additionalProperties': False}}, 'verifiedEmail': {'type': 'boolean', 'description': 'Whether the email is pre-verified'}, 'verifiedPhone': {'type': 'boolean', 'description': 'Whether the phone is pre-verified'}}, 'required': ['loginId'], 'additionalProperties': False}, 'strict': True}
descope
other
{'type': 'function', 'name': 'invite-user', 'description': 'Create and invite a new user to the Descope project', 'parameters': {'type': 'object', 'properties': {'additionalLoginIds': {'type': 'array', 'description': 'Additional login identifiers', 'items': {'type': 'string'}}, 'customAttributes': {'type': 'object', 'description': 'Custom attributes for the user', 'additionalProperties': True}, 'displayName': {'type': 'string', 'description': "User's display name"}, 'email': {'type': 'string', 'description': "User's email address", 'format': 'email'}, 'familyName': {'type': 'string', 'description': "User's family/last name"}, 'givenName': {'type': 'string', 'description': "User's given/first name"}, 'inviteUrl': {'type': 'string', 'description': 'Custom URL for the invitation link', 'format': 'uri'}, 'loginId': {'type': 'string', 'description': 'Primary login identifier for the user'}, 'middleName': {'type': 'string', 'description': "User's middle name"}, 'phone': {'type': 'string', 'description': "User's phone number in E.164 format"}, 'picture': {'type': 'string', 'description': "URL to user's profile picture", 'format': 'uri'}, 'roles': {'type': 'array', 'description': 'Global role names to assign to the user', 'items': {'type': 'string'}}, 'sendMail': {'type': 'boolean', 'description': 'Send invite via email (default follows project settings)'}, 'sendSMS': {'type': 'boolean', 'description': 'Send invite via SMS (default follows project settings)'}, 'ssoAppIds': {'type': 'array', 'description': 'SSO application IDs to associate', 'items': {'type': 'string'}}, 'templateId': {'type': 'string', 'description': 'Custom template ID for the invitation'}, 'templateOptions': {'type': 'object', 'description': 'Options for customizing the invitation template', 'properties': {'appUrl': {'type': 'string', 'description': 'Application URL to use in the template', 'format': 'uri'}, 'customClaims': {'type': 'string', 'description': 'Custom claims to include in the template (as JSON string)'}, 'redirectUrl': {'type': 'string', 'description': 'URL to redirect after authentication', 'format': 'uri'}}, 'additionalProperties': False}, 'userTenants': {'type': 'array', 'description': 'Tenant associations with specific roles', 'items': {'type': 'object', 'required': ['tenantId', 'roleNames'], 'properties': {'roleNames': {'type': 'array', 'items': {'type': 'string'}}, 'tenantId': {'type': 'string'}}, 'additionalProperties': False}}, 'verifiedEmail': {'type': 'boolean', 'description': 'Whether the email is pre-verified'}, 'verifiedPhone': {'type': 'boolean', 'description': 'Whether the phone is pre-verified'}}, 'required': ['loginId'], 'additionalProperties': False}, 'strict': True}
descope
other
{'type': 'function', 'name': 'search-audits', 'description': 'Search Descope project audit logs', 'parameters': {'type': 'object', 'properties': {'actions': {'type': 'array', 'description': 'Filter by specific action types', 'items': {'type': 'string'}}, 'excludedActions': {'type': 'array', 'description': 'Actions to exclude from results', 'items': {'type': 'string'}}, 'geos': {'type': 'array', 'description': 'Filter by geographic locations', 'items': {'type': 'string'}}, 'hoursBack': {'type': 'number', 'description': 'Hours to look back (max 720 hours / 30 days)', 'default': 24, 'minimum': 1, 'maximum': 720}, 'limit': {'type': 'number', 'description': 'Number of audit logs to fetch (max 10)', 'default': 5, 'minimum': 1, 'maximum': 10}, 'loginIds': {'type': 'array', 'description': 'Filter by specific login IDs', 'items': {'type': 'string'}}, 'methods': {'type': 'array', 'description': 'Filter by authentication methods', 'items': {'type': 'string'}}, 'noTenants': {'type': 'boolean', 'description': 'If true, only show events without tenants'}, 'tenants': {'type': 'array', 'description': 'Filter by specific tenant IDs', 'items': {'type': 'string'}}}, 'required': [], 'additionalProperties': False}, 'strict': True}
descope
other
{'type': 'function', 'name': 'search-users', 'description': 'Search for users in Descope project', 'parameters': {'type': 'object', 'properties': {'emails': {'type': 'array', 'description': 'Filter by specific email addresses', 'items': {'type': 'string'}}, 'limit': {'type': 'number', 'description': 'Number of users per page (max 100)', 'default': 10, 'minimum': 1, 'maximum': 100}, 'loginIds': {'type': 'array', 'description': 'Filter by specific login IDs', 'items': {'type': 'string'}}, 'page': {'type': 'number', 'description': 'Page number for pagination', 'minimum': 0}, 'phones': {'type': 'array', 'description': 'Filter by specific phone numbers', 'items': {'type': 'string'}}, 'roles': {'type': 'array', 'description': 'Filter users by role names', 'items': {'type': 'string'}}, 'ssoAppIds': {'type': 'array', 'description': 'Filter users by SSO application IDs', 'items': {'type': 'string'}}, 'statuses': {'type': 'array', 'description': "Filter by user statuses ('enabled', 'disabled', or 'invited')", 'items': {'type': 'string', 'enum': ['enabled', 'disabled', 'invited']}}, 'tenantIds': {'type': 'array', 'description': 'Filter users by specific tenant IDs', 'items': {'type': 'string'}}, 'testUsersOnly': {'type': 'boolean', 'description': 'Return only test users'}, 'text': {'type': 'string', 'description': 'Text to search for in user fields'}, 'withTestUser': {'type': 'boolean', 'description': 'Include test users in results'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
devhub-cms
other
{'type': 'function', 'name': 'create_blog_post', 'description': 'Create a new blog post\n\n Args:\n site_id: Website ID where the post will be published. Prompt the user for this ID.\n title: Blog post title\n content: HTML content of blog post. Should not include a <h1> tag, only h2+', 'parameters': {'type': 'object', 'properties': {'content': {'type': 'string', 'title': 'Content'}, 'site_id': {'type': 'integer', 'title': 'Site Id'}, 'title': {'type': 'string', 'title': 'Title'}}, 'required': ['site_id', 'title', 'content'], 'additionalProperties': False}, 'strict': True}
devhub-cms
other
{'type': 'function', 'name': 'get_blog_post', 'description': 'Get a single blog post\n\n Args:\n post_id: Blog post id', 'parameters': {'type': 'object', 'properties': {'post_id': {'type': 'integer', 'title': 'Post Id'}}, 'required': ['post_id'], 'additionalProperties': False}, 'strict': True}
devhub-cms
other
{'type': 'function', 'name': 'get_businesses', 'description': 'Get all businesses within the DevHub account\n\n Returns a list of businesses with the following fields:\n - id: Business ID that can be used in the other tools\n - business_name: Business name\n\n If only one business exists in the account, you can assume that the user wants to use that business for any business_id related tools.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
devhub-cms
other
{'type': 'function', 'name': 'get_hours_of_operation', 'description': 'Get the hours of operation for a DevHub location\n\n Returns a list of items representing days of the week\n\n Except for the special case formatting, this object is a list of 7 items which represent each day.\n\n Each day can can have one-four time ranges. For example, two time ranges denotes a "lunch-break". No time ranges denotes closed.\n\n Examples:\n 9am-5pm [["09:00:00", "17:00:00"]]\n 9am-12pm and 1pm-5pm [["09:00:00", "12:00:00"], ["13:00:00", "17:00:00"]]\n Closed - an empty list []\n\n Args:\n location_id: DevHub Location ID\n hours_type: Defaults to \'primary\' unless the user specifies a different type', 'parameters': {'type': 'object', 'properties': {'hours_type': {'type': 'string', 'title': 'Hours Type', 'default': 'primary'}, 'location_id': {'type': 'integer', 'title': 'Location Id'}}, 'required': ['location_id'], 'additionalProperties': False}, 'strict': True}
devhub-cms
other
{'type': 'function', 'name': 'get_locations', 'description': 'Get all locations for a business\n\n Returns a list of locations with the following fields:\n - id: Location ID that can be used in the other tools\n - location_name: Location name\n - location_url: Location URL in DevHub\n - street: Street address\n - city: City\n - state: State\n - country: Country\n - postal_code: Postal code\n - lat: Latitude\n - lon: Longitude', 'parameters': {'type': 'object', 'properties': {'business_id': {'type': 'integer', 'title': 'Business Id'}}, 'required': ['business_id'], 'additionalProperties': False}, 'strict': True}
devhub-cms
other
{'type': 'function', 'name': 'get_nearest_location', 'description': 'Get the nearest DevHub location\n\n Args:\n business_id: DevHub Business ID associated with the location. Prompt the user for this ID\n latitude: Latitude of the location\n longitude: Longitude of the location', 'parameters': {'type': 'object', 'properties': {'business_id': {'type': 'integer', 'title': 'Business Id'}, 'latitude': {'type': 'number', 'title': 'Latitude'}, 'longitude': {'type': 'number', 'title': 'Longitude'}}, 'required': ['business_id', 'latitude', 'longitude'], 'additionalProperties': False}, 'strict': True}
devhub-cms
other
{'type': 'function', 'name': 'site_from_url', 'description': 'Get the DevHub site ID from a URL.\n\n Can prompt the user for the URL instead of passing a site_id.\n\n Returns details about the Site matches the URL that can be used in the other tools.\n - Site ID: ID of the DevHub site\n - Site URL: URL of the DevHub site\n - Site Location IDs: List of location IDs associated with the site\n\n Args:\n url: URL of the DevHub site, all lowercase and ends with a slash', 'parameters': {'type': 'object', 'properties': {'url': {'type': 'string', 'title': 'Url'}}, 'required': ['url'], 'additionalProperties': False}, 'strict': True}
devhub-cms
other
{'type': 'function', 'name': 'update_blog_post', 'description': 'Update a single blog post\n\n Args:\n post_id: Blog post ID\n title: Blog post title\n content: HTML content of blog post. Should not include a <h1> tag, only h2+', 'parameters': {'type': 'object', 'properties': {'content': {'type': 'string', 'title': 'Content', 'default': None}, 'post_id': {'type': 'integer', 'title': 'Post Id'}, 'title': {'type': 'string', 'title': 'Title', 'default': None}}, 'required': ['post_id'], 'additionalProperties': False}, 'strict': True}
devhub-cms
other
{'type': 'function', 'name': 'update_hours', 'description': 'Update the hours of operation for a DevHub location\n\n Send a list of items representing days of the week\n\n Except for the special case formatting, this object is a list of 7 items which represent each day.\n\n Each day can can have one-four time ranges. For example, two time ranges denotes a "lunch-break". No time ranges denotes closed.\n\n Examples:\n 9am-5pm [["09:00:00", "17:00:00"]]\n 9am-12pm and 1pm-5pm [["09:00:00", "12:00:00"], ["13:00:00", "17:00:00"]]\n Closed - an empty list []\n\n Args:\n location_id: DevHub Location ID\n new_hours: Structured format of the new hours\n hours_type: Defaults to \'primary\' unless the user specifies a different type', 'parameters': {'type': 'object', 'properties': {'hours_type': {'type': 'string', 'title': 'Hours Type', 'default': 'primary'}, 'location_id': {'type': 'integer', 'title': 'Location Id'}, 'new_hours': {'type': 'array', 'title': 'New Hours', 'items': True}}, 'required': ['location_id', 'new_hours'], 'additionalProperties': False}, 'strict': True}
devhub-cms
other
{'type': 'function', 'name': 'upload_image', 'description': 'Upload an image to the DevHub media gallery\n\n Supports webp, jpeg and png images\n\n Args:\n base64_image_content: Base 64 encoded content of the image file\n filename: Filename including the extension', 'parameters': {'type': 'object', 'properties': {'base64_image_content': {'type': 'string', 'title': 'Base64 Image Content'}, 'filename': {'type': 'string', 'title': 'Filename'}}, 'required': ['base64_image_content', 'filename'], 'additionalProperties': False}, 'strict': True}
docker
other
{'type': 'function', 'name': 'docker', 'description': 'use the docker cli', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
e2b
other
{'type': 'function', 'name': 'run_code', 'description': 'Run python code in a secure sandbox by E2B. Using the Jupyter Notebook syntax.', 'parameters': {'type': 'object', 'properties': {'code': {'type': 'string'}}, 'required': ['code'], 'additionalProperties': False}, 'strict': True}
effect-mcp
other
{'type': 'function', 'name': 'effect_doc_search', 'description': 'Searches the Effect documentation. Result content can be accessed with the `get_effect_doc` tool.', 'parameters': {'type': 'object', 'properties': {'query': {'type': 'string', 'description': 'The search query to look for in the documentation.'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
effect-mcp
other
{'type': 'function', 'name': 'get_effect_doc', 'description': 'Get the Effect documentation for a documentId. The content might be paginated. Use the `page` parameter to specify which page to retrieve.', 'parameters': {'type': 'object', 'properties': {'documentId': {'type': 'number', 'description': 'The unique identifier for the Effect documentation entry.'}, 'page': {'type': 'number', 'description': 'The page number to retrieve for the document content.'}}, 'required': ['documentId'], 'additionalProperties': False}, 'strict': True}
everart
other
{'type': 'function', 'name': 'generate_image', 'description': 'Generate images using EverArt Models and returns a clickable link to view the generated image. The tool will return a URL that can be clicked to view the image in a browser. Available models:\n- 5000:FLUX1.1: Standard quality\n- 9000:FLUX1.1-ultra: Ultra high quality\n- 6000:SD3.5: Stable Diffusion 3.5\n- 7000:Recraft-Real: Photorealistic style\n- 8000:Recraft-Vector: Vector art style\n\nThe response will contain a direct link to view the generated image.', 'parameters': {'type': 'object', 'properties': {'image_count': {'type': 'number', 'description': 'Number of images to generate', 'default': 1}, 'model': {'type': 'string', 'description': 'Model ID (5000:FLUX1.1, 9000:FLUX1.1-ultra, 6000:SD3.5, 7000:Recraft-Real, 8000:Recraft-Vector)', 'default': '5000'}, 'prompt': {'type': 'string', 'description': 'Text description of desired image'}}, 'required': ['prompt'], 'additionalProperties': False}, 'strict': True}
exa
other
{'type': 'function', 'name': 'web_search_exa', 'description': 'Search the web using Exa AI - performs real-time web searches and can scrape content from specific URLs. Supports configurable result counts and returns the content from the most relevant websites.', 'parameters': {'type': 'object', 'properties': {'numResults': {'type': 'number', 'description': 'Number of search results to return (default: 5)'}, 'query': {'type': 'string', 'description': 'Search query'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
ffmpeg
other
{'type': 'function', 'name': 'ffmpeg', 'description': 'run the ffmpeg command', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
ffmpeg
other
{'type': 'function', 'name': 'file-exists', 'description': 'check if a file exists', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
ffmpeg
other
{'type': 'function', 'name': 'imagemagick', 'description': 'Run a imagemagick command', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
find-a-domain
other
{'type': 'function', 'name': 'check_domain', 'description': 'Check if a domain is available for a specific TLD', 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'Domain name to check (without TLD)'}, 'tld': {'type': 'string', 'description': 'Top-level domain (e.g., com, org, net)'}, 'whois': {'type': 'boolean', 'description': 'Whether to perform WHOIS check'}}, 'required': ['name', 'tld'], 'additionalProperties': False}, 'strict': True}
find-a-domain
other
{'type': 'function', 'name': 'list_tlds', 'description': 'Get a list of all available top-level domains (TLDs)', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
firecrawl
other
{'type': 'function', 'name': 'firecrawl_check_crawl_status', 'description': 'Check the status of a crawl job.\n\n**Usage Example:**\n```json\n{\n "name": "firecrawl_check_crawl_status",\n "arguments": {\n "id": "550e8400-e29b-41d4-a716-446655440000"\n }\n}\n```\n**Returns:** Status and progress of the crawl job, including results if available.', 'parameters': {'type': 'object', 'properties': {'id': {'type': 'string'}}, 'required': ['id'], 'additionalProperties': False}, 'strict': True}
firecrawl
other
{'type': 'function', 'name': 'firecrawl_crawl', 'description': 'Starts a crawl job on a website and extracts content from all pages.\n \n **Best for:** Extracting content from multiple related pages, when you need comprehensive coverage.\n **Not recommended for:** Extracting content from a single page (use scrape); when token limits are a concern (use map + batch_scrape); when you need fast results (crawling can be slow).\n **Warning:** Crawl responses can be very large and may exceed token limits. Limit the crawl depth and number of pages, or use map + batch_scrape for better control.\n **Common mistakes:** Setting limit or maxDiscoveryDepth too high (causes token overflow) or too low (causes missing pages); using crawl for a single page (use scrape instead). Using a /* wildcard is not recommended.\n **Prompt Example:** "Get all blog posts from the first two levels of example.com/blog."\n **Usage Example:**\n ```json\n {\n "name": "firecrawl_crawl",\n "arguments": {\n "url": "https://example.com/blog/*",\n "maxDiscoveryDepth": 5,\n "limit": 20,\n "allowExternalLinks": false,\n "deduplicateSimilarURLs": true,\n "sitemap": "include"\n }\n }\n ```\n **Returns:** Operation ID for status checking; use firecrawl_check_crawl_status to check progress.', 'parameters': {'type': 'object', 'properties': {'allowExternalLinks': {'type': 'boolean'}, 'allowSubdomains': {'type': 'boolean'}, 'crawlEntireDomain': {'type': 'boolean'}, 'deduplicateSimilarURLs': {'type': 'boolean'}, 'delay': {'type': 'number'}, 'excludePaths': {'type': 'array', 'items': {'type': 'string'}}, 'ignoreQueryParameters': {'type': 'boolean'}, 'includePaths': {'type': 'array', 'items': {'type': 'string'}}, 'limit': {'type': 'number'}, 'maxConcurrency': {'type': 'number'}, 'maxDiscoveryDepth': {'type': 'number'}, 'prompt': {'type': 'string'}, 'scrapeOptions': {'type': 'object', 'properties': {'actions': {'type': 'array', 'items': {'type': 'object', 'required': ['type'], 'properties': {'direction': {'type': 'string', 'enum': ['up', 'down']}, 'fullPage': {'type': 'boolean'}, 'key': {'type': 'string'}, 'milliseconds': {'type': 'number'}, 'script': {'type': 'string'}, 'selector': {'type': 'string'}, 'text': {'type': 'string'}, 'type': {'type': 'string', 'enum': ['wait', 'click', 'screenshot', 'write', 'press', 'scroll', 'scrape', 'executeJavascript', 'generatePDF']}}, 'additionalProperties': False}}, 'excludeTags': {'type': 'array', 'items': {'type': 'string'}}, 'formats': {'type': 'array', 'items': {'anyOf': [{'type': 'string', 'enum': ['markdown', 'html', 'rawHtml', 'screenshot', 'links', 'summary', 'changeTracking']}, {'type': 'object', 'required': ['type'], 'properties': {'prompt': {'type': 'string'}, 'schema': {'type': 'object', 'additionalProperties': True, 'propertyNames': {'type': 'string'}}, 'type': {'type': 'string', 'const': 'json'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['type'], 'properties': {'fullPage': {'type': 'boolean'}, 'quality': {'type': 'number'}, 'type': {'type': 'string', 'const': 'screenshot'}, 'viewport': {'type': 'object', 'required': ['width', 'height'], 'properties': {'height': {'type': 'number'}, 'width': {'type': 'number'}}, 'additionalProperties': False}}, 'additionalProperties': False}]}}, 'includeTags': {'type': 'array', 'items': {'type': 'string'}}, 'location': {'type': 'object', 'properties': {'country': {'type': 'string'}, 'languages': {'type': 'array', 'items': {'type': 'string'}}}, 'additionalProperties': False}, 'maxAge': {'type': 'number'}, 'mobile': {'type': 'boolean'}, 'onlyMainContent': {'type': 'boolean'}, 'removeBase64Images': {'type': 'boolean'}, 'skipTlsVerification': {'type': 'boolean'}, 'storeInCache': {'type': 'boolean'}, 'waitFor': {'type': 'number'}}, 'additionalProperties': False}, 'sitemap': {'type': 'string', 'enum': ['skip', 'include', 'only']}, 'url': {'type': 'string'}, 'webhook': {'anyOf': [{'type': 'string'}, {'type': 'object', 'required': ['url'], 'properties': {'headers': {'type': 'object', 'additionalProperties': {'type': 'string'}, 'propertyNames': {'type': 'string'}}, 'url': {'type': 'string'}}, 'additionalProperties': False}]}}, 'required': ['url'], 'additionalProperties': False}, 'strict': True}
firecrawl
other
{'type': 'function', 'name': 'firecrawl_extract', 'description': 'Extract structured information from web pages using LLM capabilities. Supports both cloud AI and self-hosted LLM extraction.\n\n**Best for:** Extracting specific structured data like prices, names, details from web pages.\n**Not recommended for:** When you need the full content of a page (use scrape); when you\'re not looking for specific structured data.\n**Arguments:**\n- urls: Array of URLs to extract information from\n- prompt: Custom prompt for the LLM extraction\n- schema: JSON schema for structured data extraction\n- allowExternalLinks: Allow extraction from external links\n- enableWebSearch: Enable web search for additional context\n- includeSubdomains: Include subdomains in extraction\n**Prompt Example:** "Extract the product name, price, and description from these product pages."\n**Usage Example:**\n```json\n{\n "name": "firecrawl_extract",\n "arguments": {\n "urls": ["https://example.com/page1", "https://example.com/page2"],\n "prompt": "Extract product information including name, price, and description",\n "schema": {\n "type": "object",\n "properties": {\n "name": { "type": "string" },\n "price": { "type": "number" },\n "description": { "type": "string" }\n },\n "required": ["name", "price"]\n },\n "allowExternalLinks": false,\n "enableWebSearch": false,\n "includeSubdomains": false\n }\n}\n```\n**Returns:** Extracted structured data as defined by your schema.', 'parameters': {'type': 'object', 'properties': {'allowExternalLinks': {'type': 'boolean'}, 'enableWebSearch': {'type': 'boolean'}, 'includeSubdomains': {'type': 'boolean'}, 'prompt': {'type': 'string'}, 'schema': {'type': 'object', 'additionalProperties': True, 'propertyNames': {'type': 'string'}}, 'urls': {'type': 'array', 'items': {'type': 'string'}}}, 'required': ['urls'], 'additionalProperties': False}, 'strict': True}
firecrawl
other
{'type': 'function', 'name': 'firecrawl_map', 'description': 'Map a website to discover all indexed URLs on the site.\n\n**Best for:** Discovering URLs on a website before deciding what to scrape; finding specific sections of a website.\n**Not recommended for:** When you already know which specific URL you need (use scrape or batch_scrape); when you need the content of the pages (use scrape after mapping).\n**Common mistakes:** Using crawl to discover URLs instead of map.\n**Prompt Example:** "List all URLs on example.com."\n**Usage Example:**\n```json\n{\n "name": "firecrawl_map",\n "arguments": {\n "url": "https://example.com"\n }\n}\n```\n**Returns:** Array of URLs found on the site.', 'parameters': {'type': 'object', 'properties': {'ignoreQueryParameters': {'type': 'boolean'}, 'includeSubdomains': {'type': 'boolean'}, 'limit': {'type': 'number'}, 'search': {'type': 'string'}, 'sitemap': {'type': 'string', 'enum': ['include', 'skip', 'only']}, 'url': {'type': 'string', 'format': 'uri'}}, 'required': ['url'], 'additionalProperties': False}, 'strict': True}
firecrawl
other
{'type': 'function', 'name': 'firecrawl_scrape', 'description': 'Scrape content from a single URL with advanced options. \nThis is the most powerful, fastest and most reliable scraper tool, if available you should always default to using this tool for any web scraping needs.\n\n**Best for:** Single page content extraction, when you know exactly which page contains the information.\n**Not recommended for:** Multiple pages (use batch_scrape), unknown page (use search), structured data (use extract).\n**Common mistakes:** Using scrape for a list of URLs (use batch_scrape instead). If batch scrape doesnt work, just use scrape and call it multiple times.\n**Prompt Example:** "Get the content of the page at https://example.com."\n**Usage Example:**\n```json\n{\n "name": "firecrawl_scrape",\n "arguments": {\n "url": "https://example.com",\n "formats": ["markdown"],\n "maxAge": 172800000\n }\n}\n```\n**Performance:** Add maxAge parameter for 500% faster scrapes using cached data.\n**Returns:** Markdown, HTML, or other formats as specified.', 'parameters': {'type': 'object', 'properties': {'actions': {'type': 'array', 'items': {'type': 'object', 'required': ['type'], 'properties': {'direction': {'type': 'string', 'enum': ['up', 'down']}, 'fullPage': {'type': 'boolean'}, 'key': {'type': 'string'}, 'milliseconds': {'type': 'number'}, 'script': {'type': 'string'}, 'selector': {'type': 'string'}, 'text': {'type': 'string'}, 'type': {'type': 'string', 'enum': ['wait', 'click', 'screenshot', 'write', 'press', 'scroll', 'scrape', 'executeJavascript', 'generatePDF']}}, 'additionalProperties': False}}, 'excludeTags': {'type': 'array', 'items': {'type': 'string'}}, 'formats': {'type': 'array', 'items': {'anyOf': [{'type': 'string', 'enum': ['markdown', 'html', 'rawHtml', 'screenshot', 'links', 'summary', 'changeTracking']}, {'type': 'object', 'required': ['type'], 'properties': {'prompt': {'type': 'string'}, 'schema': {'type': 'object', 'additionalProperties': True, 'propertyNames': {'type': 'string'}}, 'type': {'type': 'string', 'const': 'json'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['type'], 'properties': {'fullPage': {'type': 'boolean'}, 'quality': {'type': 'number'}, 'type': {'type': 'string', 'const': 'screenshot'}, 'viewport': {'type': 'object', 'required': ['width', 'height'], 'properties': {'height': {'type': 'number'}, 'width': {'type': 'number'}}, 'additionalProperties': False}}, 'additionalProperties': False}]}}, 'includeTags': {'type': 'array', 'items': {'type': 'string'}}, 'location': {'type': 'object', 'properties': {'country': {'type': 'string'}, 'languages': {'type': 'array', 'items': {'type': 'string'}}}, 'additionalProperties': False}, 'maxAge': {'type': 'number'}, 'mobile': {'type': 'boolean'}, 'onlyMainContent': {'type': 'boolean'}, 'removeBase64Images': {'type': 'boolean'}, 'skipTlsVerification': {'type': 'boolean'}, 'storeInCache': {'type': 'boolean'}, 'url': {'type': 'string', 'format': 'uri'}, 'waitFor': {'type': 'number'}}, 'required': ['url'], 'additionalProperties': False}, 'strict': True}
firecrawl
other
{'type': 'function', 'name': 'firecrawl_search', 'description': 'Search the web and optionally extract content from search results. This is the most powerful web search tool available, and if available you should always default to using this tool for any web search needs.\n\n**Best for:** Finding specific information across multiple websites, when you don\'t know which website has the information; when you need the most relevant content for a query.\n**Not recommended for:** When you need to search the filesystem. When you already know which website to scrape (use scrape); when you need comprehensive coverage of a single website (use map or crawl.\n**Common mistakes:** Using crawl or map for open-ended questions (use search instead).\n**Prompt Example:** "Find the latest research papers on AI published in 2023."\n**Sources:** web, images, news, default to web unless needed images or news.\n**Scrape Options:** Only use scrapeOptions when you think it is absolutely necessary. When you do so default to a lower limit to avoid timeouts, 5 or lower.\n**Usage Example without formats:**\n```json\n{\n "name": "firecrawl_search",\n "arguments": {\n "query": "top AI companies",\n "limit": 5,\n "sources": [\n "web"\n ]\n }\n}\n```\n**Usage Example with formats:**\n```json\n{\n "name": "firecrawl_search",\n "arguments": {\n "query": "latest AI research papers 2023",\n "limit": 5,\n "lang": "en",\n "country": "us",\n "sources": [\n "web",\n "images",\n "news"\n ],\n "scrapeOptions": {\n "formats": ["markdown"],\n "onlyMainContent": true\n }\n }\n}\n```\n**Returns:** Array of search results (with optional scraped content).', 'parameters': {'type': 'object', 'properties': {'filter': {'type': 'string'}, 'limit': {'type': 'number'}, 'location': {'type': 'string'}, 'query': {'type': 'string', 'minLength': 1}, 'scrapeOptions': {'type': 'object', 'properties': {'actions': {'type': 'array', 'items': {'type': 'object', 'required': ['type'], 'properties': {'direction': {'type': 'string', 'enum': ['up', 'down']}, 'fullPage': {'type': 'boolean'}, 'key': {'type': 'string'}, 'milliseconds': {'type': 'number'}, 'script': {'type': 'string'}, 'selector': {'type': 'string'}, 'text': {'type': 'string'}, 'type': {'type': 'string', 'enum': ['wait', 'click', 'screenshot', 'write', 'press', 'scroll', 'scrape', 'executeJavascript', 'generatePDF']}}, 'additionalProperties': False}}, 'excludeTags': {'type': 'array', 'items': {'type': 'string'}}, 'formats': {'type': 'array', 'items': {'anyOf': [{'type': 'string', 'enum': ['markdown', 'html', 'rawHtml', 'screenshot', 'links', 'summary', 'changeTracking']}, {'type': 'object', 'required': ['type'], 'properties': {'prompt': {'type': 'string'}, 'schema': {'type': 'object', 'additionalProperties': True, 'propertyNames': {'type': 'string'}}, 'type': {'type': 'string', 'const': 'json'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['type'], 'properties': {'fullPage': {'type': 'boolean'}, 'quality': {'type': 'number'}, 'type': {'type': 'string', 'const': 'screenshot'}, 'viewport': {'type': 'object', 'required': ['width', 'height'], 'properties': {'height': {'type': 'number'}, 'width': {'type': 'number'}}, 'additionalProperties': False}}, 'additionalProperties': False}]}}, 'includeTags': {'type': 'array', 'items': {'type': 'string'}}, 'location': {'type': 'object', 'properties': {'country': {'type': 'string'}, 'languages': {'type': 'array', 'items': {'type': 'string'}}}, 'additionalProperties': False}, 'maxAge': {'type': 'number'}, 'mobile': {'type': 'boolean'}, 'onlyMainContent': {'type': 'boolean'}, 'removeBase64Images': {'type': 'boolean'}, 'skipTlsVerification': {'type': 'boolean'}, 'storeInCache': {'type': 'boolean'}, 'waitFor': {'type': 'number'}}, 'additionalProperties': False}, 'sources': {'type': 'array', 'items': {'type': 'object', 'required': ['type'], 'properties': {'type': {'type': 'string', 'enum': ['web', 'images', 'news']}}, 'additionalProperties': False}}, 'tbs': {'type': 'string'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getCustomerById', 'description': 'Get a customer by ID', 'parameters': {'type': 'object', 'properties': {'customerId': {'type': 'string'}}, 'required': ['customerId'], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getCustomerByLookupKey', 'description': 'Get a customer by lookup key (external ID)', 'parameters': {'type': 'object', 'properties': {'lookupKey': {'type': 'string'}}, 'required': ['lookupKey'], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getCustomerEntitlements', 'description': "Get a customer's entitlements", 'parameters': {'type': 'object', 'properties': {'customerId': {'type': 'string'}}, 'required': ['customerId'], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getCustomerSubscriptions', 'description': "Get a customer's subscriptions", 'parameters': {'type': 'object', 'properties': {'customerId': {'type': 'string'}}, 'required': ['customerId'], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getCustomerUsageSummary', 'description': "Get a customer's usage summary", 'parameters': {'type': 'object', 'properties': {'customerId': {'type': 'string'}}, 'required': ['customerId'], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getCustomers', 'description': 'Get all customers', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getEventsByCustomer', 'description': 'Get events for a customer', 'parameters': {'type': 'object', 'properties': {'endTime': {'type': 'string'}, 'externalCustomerId': {'type': 'string'}, 'iterFirstKey': {'type': 'string'}, 'iterLastKey': {'type': 'string'}, 'startTime': {'type': 'string'}}, 'required': ['externalCustomerId'], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getInvoiceById', 'description': 'Get an invoice by its ID', 'parameters': {'type': 'object', 'properties': {'invoiceId': {'type': 'string'}}, 'required': ['invoiceId'], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getInvoiceByNumber', 'description': 'Get an invoice by its number', 'parameters': {'type': 'object', 'properties': {'invoiceNumber': {'type': 'string'}}, 'required': ['invoiceNumber'], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getInvoices', 'description': 'Get invoices with optional filtering by date range and status', 'parameters': {'type': 'object', 'properties': {'endDate': {'type': 'string', 'description': 'ISO format date string for filtering invoices until this date'}, 'limit': {'type': 'number', 'description': 'Maximum number of invoices to return'}, 'offset': {'type': 'number', 'description': 'Number of invoices to skip for pagination'}, 'startDate': {'type': 'string', 'description': 'ISO format date string for filtering invoices from this date'}, 'status': {'type': 'string', 'description': 'Filter invoices by status'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getInvoicesByCustomerId', 'description': 'Get all invoices for a specific customer', 'parameters': {'type': 'object', 'properties': {'customerId': {'type': 'string'}}, 'required': ['customerId'], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getPaymentById', 'description': 'Get a payment by ID', 'parameters': {'type': 'object', 'properties': {'paymentId': {'type': 'string'}}, 'required': ['paymentId'], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getPayments', 'description': 'Get payments with optional filtering', 'parameters': {'type': 'object', 'properties': {'customerId': {'type': 'string', 'description': 'Filter payments by customer ID'}, 'limit': {'type': 'number', 'description': 'Maximum number of payments to return'}, 'offset': {'type': 'number', 'description': 'Number of payments to skip for pagination'}, 'status': {'type': 'string', 'description': 'Filter payments by status (pending, processed, failed)'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getPlanById', 'description': 'Get a plan by ID', 'parameters': {'type': 'object', 'properties': {'planId': {'type': 'string'}}, 'required': ['planId'], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getPlans', 'description': 'Get all plans', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getPriceById', 'description': 'Get a price by ID', 'parameters': {'type': 'object', 'properties': {'priceId': {'type': 'string'}}, 'required': ['priceId'], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getPrices', 'description': 'Get all prices', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getSubscriptionById', 'description': 'Get a subscription by ID', 'parameters': {'type': 'object', 'properties': {'subscriptionId': {'type': 'string'}}, 'required': ['subscriptionId'], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getSubscriptionPauses', 'description': 'Get all pauses for a subscription', 'parameters': {'type': 'object', 'properties': {'subscriptionId': {'type': 'string'}}, 'required': ['subscriptionId'], 'additionalProperties': False}, 'strict': True}
flexprice
other
{'type': 'function', 'name': 'getSubscriptionUsage', 'description': 'Get usage for a subscription', 'parameters': {'type': 'object', 'properties': {'subscriptionId': {'type': 'string'}}, 'required': ['subscriptionId'], 'additionalProperties': False}, 'strict': True}