Hub Datasets
Collection
256 items
•
Updated
•
3
type
stringclasses 1
value | function
dict |
---|---|
function | {
"description": "Send a message to user without requiring a response. Use for acknowledging receipt of messages, providing progress updates, reporting task completion, or explaining changes in approach.",
"name": "message_notify_user",
"parameters": {
"properties": {
"append": null,
"attachments": {
"anyOf": [
{
"items": null,
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
],
"description": "(Optional) List of attachments to show to user, can be file paths or URLs"
},
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": {
"description": "Message text to display to user",
"type": "string"
},
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"text"
],
"type": "object"
}
} |
function | {
"description": "Ask user a question and wait for response. Use for requesting clarification, asking for confirmation, or gathering additional information.",
"name": "message_ask_user",
"parameters": {
"properties": {
"append": null,
"attachments": {
"anyOf": [
{
"items": null,
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
],
"description": "(Optional) List of question-related files or reference materials"
},
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": {
"description": "(Optional) Suggested operation for user takeover",
"enum": [
"none",
"browser"
],
"type": "string"
},
"text": {
"description": "Question text to present to user",
"type": "string"
},
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"text"
],
"type": "object"
}
} |
function | {
"description": "Read file content. Use for checking file contents, analyzing logs, or reading configuration files.",
"name": "file_read",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": {
"description": "(Optional) Ending line number (exclusive)",
"type": "integer"
},
"exec_dir": null,
"file": {
"description": "Absolute path of the file to read",
"type": "string"
},
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": {
"description": "(Optional) Starting line to read from, 0-based",
"type": "integer"
},
"sudo": {
"description": "(Optional) Whether to use sudo privileges",
"type": "boolean"
},
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"file"
],
"type": "object"
}
} |
function | {
"description": "Overwrite or append content to a file. Use for creating new files, appending content, or modifying existing files.",
"name": "file_write",
"parameters": {
"properties": {
"append": {
"description": "(Optional) Whether to use append mode",
"type": "boolean"
},
"attachments": null,
"command": null,
"content": {
"description": "Text content to write",
"type": "string"
},
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": {
"description": "Absolute path of the file to write to",
"type": "string"
},
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": {
"description": "(Optional) Whether to add a leading newline",
"type": "boolean"
},
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": {
"description": "(Optional) Whether to use sudo privileges",
"type": "boolean"
},
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": {
"description": "(Optional) Whether to add a trailing newline",
"type": "boolean"
},
"type": null,
"url": null
},
"required": [
"file",
"content"
],
"type": "object"
}
} |
function | {
"description": "Replace specified string in a file. Use for updating specific content in files or fixing errors in code.",
"name": "file_str_replace",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": {
"description": "Absolute path of the file to perform replacement on",
"type": "string"
},
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": {
"description": "New string to replace with",
"type": "string"
},
"old_str": {
"description": "Original string to be replaced",
"type": "string"
},
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": {
"description": "(Optional) Whether to use sudo privileges",
"type": "boolean"
},
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"file",
"old_str",
"new_str"
],
"type": "object"
}
} |
function | {
"description": "Search for matching text within file content. Use for finding specific content or patterns in files.",
"name": "file_find_in_content",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": {
"description": "Absolute path of the file to search within",
"type": "string"
},
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": {
"description": "Regular expression pattern to match",
"type": "string"
},
"seconds": null,
"start_line": null,
"sudo": {
"description": "(Optional) Whether to use sudo privileges",
"type": "boolean"
},
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"file",
"regex"
],
"type": "object"
}
} |
function | {
"description": "Find files by name pattern in specified directory. Use for locating files with specific naming patterns.",
"name": "file_find_by_name",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": {
"description": "Filename pattern using glob syntax wildcards",
"type": "string"
},
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": {
"description": "Absolute path of directory to search",
"type": "string"
},
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"path",
"glob"
],
"type": "object"
}
} |
function | {
"description": "Execute commands in a specified shell session. Use for running code, installing packages, or managing files.",
"name": "shell_exec",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": {
"description": "Shell command to execute",
"type": "string"
},
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": {
"description": "Working directory for command execution (must use absolute path)",
"type": "string"
},
"file": null,
"glob": null,
"id": {
"description": "Unique identifier of the target shell session",
"type": "string"
},
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"id",
"exec_dir",
"command"
],
"type": "object"
}
} |
function | {
"description": "View the content of a specified shell session. Use for checking command execution results or monitoring output.",
"name": "shell_view",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": {
"description": "Unique identifier of the target shell session",
"type": "string"
},
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"id"
],
"type": "object"
}
} |
function | {
"description": "Wait for the running process in a specified shell session to return. Use after running commands that require longer runtime.",
"name": "shell_wait",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": {
"description": "Unique identifier of the target shell session",
"type": "string"
},
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": {
"description": "Wait duration in seconds",
"type": "integer"
},
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"id"
],
"type": "object"
}
} |
function | {
"description": "Write input to a running process in a specified shell session. Use for responding to interactive command prompts.",
"name": "shell_write_to_process",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": {
"description": "Unique identifier of the target shell session",
"type": "string"
},
"index": null,
"input": {
"description": "Input content to write to the process",
"type": "string"
},
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": {
"description": "Whether to press Enter key after input",
"type": "boolean"
},
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"id",
"input",
"press_enter"
],
"type": "object"
}
} |
function | {
"description": "Terminate a running process in a specified shell session. Use for stopping long-running processes or handling frozen commands.",
"name": "shell_kill_process",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": {
"description": "Unique identifier of the target shell session",
"type": "string"
},
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"id"
],
"type": "object"
}
} |
function | {
"description": "View content of the current browser page. Use for checking the latest state of previously opened pages.",
"name": "browser_view",
"parameters": {
"properties": null,
"required": null,
"type": "object"
}
} |
function | {
"description": "Navigate browser to specified URL. Use when accessing new pages is needed.",
"name": "browser_navigate",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": {
"description": "Complete URL to visit. Must include protocol prefix.",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}
} |
function | {
"description": "Restart browser and navigate to specified URL. Use when browser state needs to be reset.",
"name": "browser_restart",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": {
"description": "Complete URL to visit after restart. Must include protocol prefix.",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}
} |
function | {
"description": "Click on elements in the current browser page. Use when clicking page elements is needed.",
"name": "browser_click",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": {
"description": "(Optional) X coordinate of click position",
"type": "number"
},
"coordinate_y": {
"description": "(Optional) Y coordinate of click position",
"type": "number"
},
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": {
"description": "(Optional) Index number of the element to click",
"type": "integer"
},
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": null,
"type": "object"
}
} |
function | {
"description": "Overwrite text in editable elements on the current browser page. Use when filling content in input fields.",
"name": "browser_input",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": {
"description": "(Optional) X coordinate of the element to overwrite text",
"type": "number"
},
"coordinate_y": {
"description": "(Optional) Y coordinate of the element to overwrite text",
"type": "number"
},
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": {
"description": "(Optional) Index number of the element to overwrite text",
"type": "integer"
},
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": {
"description": "Whether to press Enter key after input",
"type": "boolean"
},
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": {
"description": "Complete text content to overwrite",
"type": "string"
},
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"text",
"press_enter"
],
"type": "object"
}
} |
function | {
"description": "Move cursor to specified position on the current browser page. Use when simulating user mouse movement.",
"name": "browser_move_mouse",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": {
"description": "X coordinate of target cursor position",
"type": "number"
},
"coordinate_y": {
"description": "Y coordinate of target cursor position",
"type": "number"
},
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"coordinate_x",
"coordinate_y"
],
"type": "object"
}
} |
function | {
"description": "Simulate key press in the current browser page. Use when specific keyboard operations are needed.",
"name": "browser_press_key",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": {
"description": "Key name to simulate (e.g., Enter, Tab, ArrowUp), supports key combinations (e.g., Control+Enter).",
"type": "string"
},
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"key"
],
"type": "object"
}
} |
function | {
"description": "Select specified option from dropdown list element in the current browser page. Use when selecting dropdown menu options.",
"name": "browser_select_option",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": {
"description": "Index number of the dropdown list element",
"type": "integer"
},
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": {
"description": "Option number to select, starting from 0.",
"type": "integer"
},
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"index",
"option"
],
"type": "object"
}
} |
function | {
"description": "Scroll up the current browser page. Use when viewing content above or returning to page top.",
"name": "browser_scroll_up",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": {
"description": "(Optional) Whether to scroll directly to page top instead of one viewport up.",
"type": "boolean"
},
"trailing_newline": null,
"type": null,
"url": null
},
"required": null,
"type": "object"
}
} |
function | {
"description": "Scroll down the current browser page. Use when viewing content below or jumping to page bottom.",
"name": "browser_scroll_down",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": {
"description": "(Optional) Whether to scroll directly to page bottom instead of one viewport down.",
"type": "boolean"
},
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": null,
"type": "object"
}
} |
function | {
"description": "Execute JavaScript code in browser console. Use when custom scripts need to be executed.",
"name": "browser_console_exec",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": {
"description": "JavaScript code to execute. Note that the runtime environment is browser console.",
"type": "string"
},
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"javascript"
],
"type": "object"
}
} |
function | {
"description": "View browser console output. Use when checking JavaScript logs or debugging page errors.",
"name": "browser_console_view",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": {
"description": "(Optional) Maximum number of log lines to return.",
"type": "integer"
},
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": null,
"type": "object"
}
} |
function | {
"description": "Search web pages using search engine. Use for obtaining latest information or finding references.",
"name": "info_search_web",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": {
"description": "(Optional) Time range filter for search results.",
"enum": [
"all",
"past_hour",
"past_day",
"past_week",
"past_month",
"past_year"
],
"type": "string"
},
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": {
"description": "Search query in Google search style, using 3-5 keywords.",
"type": "string"
},
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"query"
],
"type": "object"
}
} |
function | {
"description": "Expose specified local port for temporary public access. Use when providing temporary public access for services.",
"name": "deploy_expose_port",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": {
"description": "Local port number to expose",
"type": "integer"
},
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"port"
],
"type": "object"
}
} |
function | {
"description": "Deploy website or application to public production environment. Use when deploying or updating static websites or applications.",
"name": "deploy_apply_deployment",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": {
"description": "Absolute path of local directory to deploy.",
"type": "string"
},
"max_lines": null,
"mdx_file_path": null,
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": {
"description": "Type of website or application to deploy.",
"enum": [
"static",
"nextjs"
],
"type": "string"
},
"url": null
},
"required": [
"type",
"local_dir"
],
"type": "object"
}
} |
function | {
"description": "Make a Manus Page from a local MDX file.",
"name": "make_manus_page",
"parameters": {
"properties": {
"append": null,
"attachments": null,
"command": null,
"content": null,
"coordinate_x": null,
"coordinate_y": null,
"date_range": null,
"end_line": null,
"exec_dir": null,
"file": null,
"glob": null,
"id": null,
"index": null,
"input": null,
"javascript": null,
"key": null,
"leading_newline": null,
"local_dir": null,
"max_lines": null,
"mdx_file_path": {
"description": "Absolute path of the source MDX file",
"type": "string"
},
"new_str": null,
"old_str": null,
"option": null,
"path": null,
"port": null,
"press_enter": null,
"query": null,
"regex": null,
"seconds": null,
"start_line": null,
"sudo": null,
"suggest_user_takeover": null,
"text": null,
"to_bottom": null,
"to_top": null,
"trailing_newline": null,
"type": null,
"url": null
},
"required": [
"mdx_file_path"
],
"type": "object"
}
} |
function | {
"description": "A special tool to indicate you have completed all tasks and are about to enter idle state.",
"name": "idle",
"parameters": {
"properties": null,
"required": null,
"type": "object"
}
} |