| mysql_query |
Execute SELECT query on MySQL database |
query (string, required), params (array), limit (integer) |
database |
| mysql_execute |
Execute INSERT/UPDATE/DELETE on MySQL |
query (string, required), params (array) |
database |
| mysql_list_tables |
List all tables in MySQL database |
none |
database |
| postgres_query |
Execute SELECT query on PostgreSQL database |
query (string, required), params (array), limit (integer) |
database |
| postgres_execute |
Execute INSERT/UPDATE/DELETE on PostgreSQL |
query (string, required), params (array) |
database |
| postgres_list_tables |
List all tables in PostgreSQL database |
schema (string) |
database |
| redis_set |
Set a key-value pair in Redis |
key (string, required), value (string, required), ttl (integer) |
database |
| redis_get |
Get a value from Redis by key |
key (string, required) |
database |
| redis_del |
Delete a key from Redis |
key (string, required) |
database |
| redis_keys |
Find keys matching a pattern in Redis |
pattern (string) |
database |
| redis_hset |
Set a field in a Redis hash |
key (string, required), field (string, required), value (string, required) |
database |
| redis_hget |
Get a field from a Redis hash |
key (string, required), field (string, required) |
database |
| sqlite_query |
Execute SELECT query on SQLite database |
query (string, required), params (array), limit (integer) |
database |
| sqlite_execute |
Execute INSERT/UPDATE/DELETE on SQLite |
query (string, required), params (array) |
database |
| sqlite_list_tables |
List all tables in SQLite database |
none |
database |
| github_get_repo |
Get information about a GitHub repository |
owner (string, required), repo (string, required) |
github |
| github_create_issue |
Create an issue in a GitHub repository |
owner, repo, title (required), body, labels |
github |
| github_list_issues |
List issues from a GitHub repository |
owner, repo, state, limit |
github |
| github_star_repo |
Star a GitHub repository |
owner (required), repo (required) |
github |
| github_search_repos |
Search GitHub repositories by query |
query (required), limit |
github |
| github_get_user |
Get GitHub user information |
username (required) |
github |
| github_list_prs |
List pull requests from a GitHub repository |
owner, repo, state, limit |
github |
| csv_read |
Read and parse CSV file content |
path (required), has_header, delimiter, limit |
document |
| csv_write |
Write structured data to a CSV file |
path (required), headers (required), rows (required), delimiter |
document |
| excel_read |
Read data from Excel (.xlsx) files |
path (required), sheet, has_header, limit |
document |
| excel_write |
Write data to Excel (.xlsx) files |
path (required), headers (required), rows (required), sheet_name |
document |
| markdown_read |
Read and parse Markdown file content |
path (required), extract_frontmatter |
document |
| markdown_write |
Write or generate Markdown content to a file |
path (required), content (required), append |
document |
| xml_parse |
Parse XML content from a file or string |
source (required), is_path, xpath |
document |
| xml_to_json |
Convert XML content to JSON format |
source (required), is_path, pretty |
document |
| file_copy |
Copy or move a file |
source (required), destination (required), move |
file |
| file_delete |
Delete a file or empty directory |
path (required), recursive |
file |
| file_list |
List contents of a directory |
path (required), show_hidden, detail |
file |
| file_read |
Read content from a file |
path (required), max_size |
file |
| file_write |
Write content to a file |
path (required), content (required), append |
file |
| calculator |
Evaluate mathematical expressions |
expression (required), precision |
math |
| unit_converter |
Convert between different units of measurement |
value (required), from (required), to (required), precision |
math |
| math_power |
Calculate power, square root, or cube root |
base, exponent, sqrt, cbrt, precision |
math |
| math_statistics |
Calculate statistical values from a number set |
numbers (required), operation (required), precision |
math |
| send_dingding |
Send a message via DingDing robot |
text (required), at_mobiles, at_all, msg_type, title |
messaging |
| send_email |
Send an email via SMTP server |
to (required), subject (required), body (required), from, cc, bcc, is_html |
messaging |
| send_feishu |
Send a message via Feishu (Lark) bot |
text, msg_type, title, content, image_key, at_mobiles, at_all |
messaging |
| send_telegram |
Send a message via Telegram Bot |
chat_id (required), text (required), parse_mode, disable_notification |
messaging |
| send_wecom |
Send a message via WeCom (Enterprise WeChat) |
text (required), msg_type, mentioned_list, mentioned_mobile_list |
messaging |
| ftp_upload |
Upload a file to FTP server |
host, port, username, password, local_path (required), remote_path, mode |
net |
| ftp_download |
Download a file from FTP server |
host, port, username, password, remote_path (required), local_path (required), mode |
net |
| ftp_list |
List directory contents on FTP server |
host, port, username, password, directory |
net |
| ftp_delete |
Delete a file from FTP server |
host, port, username, password, remote_path (required) |
net |
| http_request |
Send HTTP requests to web APIs |
url (required), method, headers, body, timeout |
net |
| read_url |
Fetch and read content from a URL |
url (required), method, headers, timeout, max_size, raw |
net |
| tcp_send |
Send data over TCP connection |
host, port, data (required), encoding, timeout, delimiter, wait_response |
net |
| tcp_receive |
Receive data from TCP connection (server mode) |
port (required), bind_address, buffer_size, timeout, encoding, send_response |
net |
| udp_send |
Send data over UDP |
host, port, data (required), encoding, timeout |
net |
| udp_receive |
Receive UDP datagram |
port (required), bind_address, buffer_size, timeout, encoding, send_response |
net |
| udp_broadcast |
Send UDP broadcast message |
port (required), data (required), encoding, timeout |
net |
| exec_command |
Execute a system command |
command, args, timeout, working_dir, env |
system |
| system_info |
Get system information (OS, CPU, memory, disk) |
info_type |
system |
| datetime |
Get current date/time or convert timezone |
operation, timezone, format |
time |