-
Notifications
You must be signed in to change notification settings - Fork 0
Tool Library Docs
The Admin Tool provides functionality for managing agent schedules and retrieving system information.
- Retrieve statistics about running jobs and active triggers
- Cancel running jobs and triggers
- Get system information
- Fetch current running agent jobs
Job and Trigger Management
- get_running_job_stats: Retrieve statistics about running jobs
- get_active_triggers: Get information about active triggers
- cancel_job: Cancel a specific running job
- cancel_trigger: Cancel a trigger for a given agent
System Information
- wakeup: Return system context information including date, time, OS, Python version, and more
Current Jobs
- get_current_jobs: Retrieve a list of currently running Agent jobs
- This tool interacts with various services, including a trigger service for job and trigger management
- The tool uses the tenant ID from the run context for API calls
- This tool may require authentication credentials for certain API calls, though they are not explicitly set in the provided code.
The S3Tool provides functionality to interact with Amazon S3 (Simple Storage Service) for managing files and buckets.
- List S3 buckets and files
- Upload, download, copy, and delete files
- Retrieve file metadata and generate presigned URLs
- Read and process various file types from S3
Bucket and File Management
- list_s3_buckets: List available S3 buckets
- list_files_in_bucket: List files in a specified bucket
- upload_file_to_s3: Upload a file to S3
- download_file_from_s3: Download a file from S3
- copy_file_within_s3: Copy a file within S3
- delete_file_from_s3: Delete a file from S3
File Operations
- read_file_from_s3: Read and process various file types from S3
- get_file_metadata: Retrieve metadata for a file in S3
- create_presigned_url: Generate a presigned URL for an S3 object
- Supports various file types including Excel, PDF, EML, and text files
- Handles special characters and spaces in object names
- This tool requires AWS credentials (AWS Access Key ID and AWS Secret Access Key) for authentication.
Auto Dynamic Tools The Auto Dynamic Tools provides functionality for enabling and managing tools autonomously within an AI agent system.
- List available tools and system connections
- Search for tools based on purpose
- Enable tools for the AI agent
- Universal file reading capability
- get_tools_and_connections: Returns a list of available tools and system connections
- search_for_tool: Searches for tools related to a specified purpose
- enable_agent_tool: Enables a specified tool for the AI agent File Handling
- universal_read_file: Reads and extracts content from various file types
- The tool uses OpenAI's API for tool searching functionality
- File reading supports various formats including CSV, PDF, Excel, and plain text
- This tool requires specifying an OpenAI API key for the tool search feature.
The Basic Data Tool provides functionality to manipulate and query dataframes using SQL-like operations.
- Load full content of previewed data
- Query dataframes using SQL syntax
- load_full_preview_content: Retrieve the entire content of a previously previewed data object
- The tool can handle various data types, including pandas DataFrames and strings
- When working with DataFrames, only the first 1000 rows are returned to prevent overwhelming the system
- SQL queries on dataframes are executed using DuckDB, allowing for powerful data manipulation
- This tool does not require any specific configuration or API keys
The CSV Tool provides functionality to read, write, and manipulate CSV files.
- Read CSV files and return their contents as a dataframe
- Write data to CSV files from dataframes or lists of rows
- Append data to existing CSV files
- Write data to daily accumulation files with date-stamped filenames
- read_csv_file: Read a CSV file and return its contents as a dataframe
- write_csv_file: Write data to a CSV file from a dataframe or list of rows
- append_to_csv_file: Append data to an existing CSV file
- write_to_daily_accumulation_file: Append data to a daily accumulation CSV file with a date-stamped filename
- Supports various encodings, with 'utf-8-sig' as the default
- Handles both dataframes and lists of rows as input
- Automatically manages headers when appending to existing files
- Provides options for timezone-aware date stamping in filenames
The CalDAV Tool provides functionality to interact with CalDAV-compatible calendar servers, including special support for iCloud Calendar integration.
- List available calendars
- Manage calendar events (create, update, delete)
- Search for events
- iCloud-specific features (create calendars, share calendars, set calendar colors)
Calendar Management
- list_calendars: Retrieve a list of available calendars
- create_icloud_calendar: Create a new calendar in iCloud (iCloud only)
Event Management
- list_events: Fetch events from a specific calendar within a given date range
- create_event: Add a new event to a calendar
- update_event: Modify an existing calendar event
- delete_event: Remove an event from a calendar
- search_events: Find events in a calendar matching a query
iCloud Specific Functions
- share_icloud_calendar: Share an iCloud calendar with another user
- get_icloud_calendar_sharing: Retrieve sharing information for an iCloud calendar
- set_icloud_calendar_color: Change the color of an iCloud calendar
- get_icloud_free_busy: Obtain free/busy information for an iCloud calendar
- The tool supports both generic CalDAV servers and iCloud calendars
- iCloud-specific functions are only available when connected to an iCloud calendar
- This tool requires authentication credentials for the CalDAV server or iCloud account.
The Agent Tool provides functionality to invoke another agent from the current agent.
- Call another agent and retrieve its results
Agent Invocation
- invoke_{agent_name}_agent: Call the specified agent and return its results
- The tool dynamically creates a function named after the target agent
- The created function takes a prompt as input and returns the target agent's response
- This tool requires specifying a target agent ID and name when initializing The tool uses asynchronous execution to run the target agent and supports callback management for event tracking and association with the correct invocation in the caller.
The Matplotlib Chart Tool provides functionality to create various types of charts using Matplotlib.
- Create scatter plots, bar charts, line charts, pie charts, and histograms
- Generate charts from pandas DataFrames
Scatter Plot
- create_scatter_plot: Create a customizable scatter plot
Bar Chart
- create_bar_chart: Generate a configurable bar chart with vertical or horizontal orientation
Line Chart
- create_line_chart: Produce a flexible line chart with multiple lines support
Pie Chart
- create_pie_chart: Create a customizable pie chart
Histogram
- create_histogram: Generate a configurable histogram
DataFrame Chart
- create_dataframe_chart: Create various chart types from a pandas DataFrame
- All functions return a dictionary containing a markdown-formatted image link
- Charts are automatically saved and uploaded to S3 for easy embedding
- This tool requires access to an S3 bucket for storing generated charts
The Code Interpreter Tool provides functionality to execute code in a sandboxed environment using the E2B Code Interpreter API.
- Execute arbitrary code in a secure sandbox
- Set environment variables for the sandbox environment
Code Execution
- execute_code: Run provided code in a sandboxed interpreter and return the execution results
Environment Configuration
- set_env_var: Set an environment variable in the sandbox
- The sandbox environment persists between calls, allowing for stateful operations
- A new sandbox is created if environment variables are changed
- This tool requires an E2B API key for authentication. Configure it with the API key obtained from https://e2b.dev/docs/getting-started/api-key.
The Code Introspection Tool provides functionality to access and manipulate internal code within the supercog system.
- Read source code directories
- Write to source code files
Source Code Access
- read_source_directory: Returns the contents of a source directory in supercog in a format optimized for LLM consumption
Source Code Modification
- write_source_file: Allows writing to source code files within the supercog system
- This tool is designed for internal code introspection and modification within the supercog environment
- Exercise caution when modifying source files to avoid unintended system changes
The Database Tool provides functionality to interact with various types of databases, including PostgreSQL, MySQL, and MSSQL.
- Execute SQL queries against connected databases
- Retrieve database type and SQL dialect
- Establish and test database connections
Database Queries
- run_database_query: Execute a SQL query against the connected database and return the results
Database Information
- get_database_type: Retrieve the type and SQL dialect of the connected database
Database Connection
- connect_to_database: Establish a connection to a database using a provided connection string
- Supports multiple database types including PostgreSQL, MySQL, and MSSQL
- Handles various connection string formats and CLI-style commands
- Provides error handling for connection issues and query execution
- This tool requires specifying a database configuration. Configure it with a connection string in the format:
postgresql://user:pass@host/database.
The Discord Tool provides functionality to send messages and rich embeds to a Discord channel using webhooks.
- Send simple messages to a Discord channel
- Send messages with customized embeds to a Discord channel
Message Sending
- send_message: Send a simple message to a Discord channel with customizable color
- send_message_with_embed: Send a message with a customized embed to a Discord channel
- Messages are sent with a "from Supercog" signature
- Embed colors can be customized using hexadecimal color codes
- This tool requires specifying a Discord webhook URL for authentication.
The Google Drive Doc Source tool provides functionality to load documents from Google Drive into your AI assistant's knowledge base.
- Initialize OAuth flow for Google Drive access
- Select files or folders to index in the Knowledge Base
- You select which documents or folders in your Google Drive to share with the knowledge base. You can remove documents or unshare folders at any time.
- Documents are only indexed in a knowledge base that you choose.
LocalFolderDocSource Tool The LocalFolderDocSource tool provides functionality to retrieve documents from a specified local folder.
- Fetch documents from a local directory
Document Retrieval
- get_documents: Yields documents from the specified local folder
- The tool requires a path to a local folder containing the documents to be processed
- This tool requires specifying a local folder path in the authentication configuration
The Notion Doc Source Tool provides functionality to load documents from Notion using OAuth authentication through the Ragie API.
- Initialize OAuth flow for connecting to Notion
- Load documents from authenticated Notion accounts
OAuth Initialization
- get_authorize_url: Generate the OAuth authorization URL for Notion integration
- This tool requires a connection to be established through Ragie before use
- The OAuth flow is handled via Ragie's API
- This tool requires a Ragie API key to be set in the global configuration
The DuckDB Tool provides functionality to work with tabular data using DuckDB, a high-performance analytical database system.
- Read and write data from various file formats
- Query and manipulate dataframes using SQL
- Interact with DuckDB tables
File Operations
- read_file_as_dataframe: Read data from CSV, Parquet, JSON, or Excel files into a dataframe
- write_dataframe_to_file: Write a dataframe to a file in CSV, Parquet, or Excel format
Dataframe Manipulation
- add_column_to_dataframe: Add a new column to an existing dataframe
- convert_text_to_dataframe: Convert text data to a dataframe
- query_dataframe: Execute SQL queries on dataframes
DuckDB Table Operations
- save_duckdb_table: Save a dataframe as a DuckDB table
- load_duckdb_table: Load a DuckDB table into a dataframe
- alter_duckdb_table: Modify a DuckDB table using SQL ALTER statements
- query_duckdb_tables: Execute SQL queries on DuckDB tables
- list_duckdb_tables: List all tables in the DuckDB database
- delete_duckdb_table: Delete a table from the DuckDB database
- Column names in SQL queries should be enclosed in double quotes
- File formats are inferred from file extensions when not specified
- This tool requires specifying a database file path in the configuration.
The Dynamic Agent Tool provides functionality for an AI agent to manage its own capabilities dynamically, including memory management and tool discovery.
- Save important facts to long-term memory
- Search for and enable new tools dynamically
Memory Management
- save_memory: Adds a new fact to the agent's long-term memory
Tool Management
- get_available_system_tools: Retrieves a list of tools that can be enabled for the agent
- search_for_tool: Searches for tools related to a specified purpose
- enable_agent_tool: Enables a specific tool for the agent to use
- The save_memory function should only be called for facts that are deemed important to remember
- Tool search and enabling allows the agent to expand its capabilities as needed
- This tool requires an OpenAI API key for the tool search functionality
The Dynamic Tool Builder provides functionality to dynamically create and manage tool classes for an AI agent system.
- Create new tool classes dynamically
- View details of created tools
Tool Creation
- create_dynamic_tool: Dynamically creates and registers a new tool class with specified attributes and methods
Tool Inspection
- view_created_tool: Retrieves and displays the source code and documentation for a previously created tool
- The Dynamic Tool Builder uses Python's metaprogramming capabilities to create new classes at runtime
- Created tools are registered in the global TOOL_REGISTRY
- This tool requires an OpenAI API key for certain operations.
The Emotion Logic Tool provides functionality to analyze sentiment in speech files using the Emotion Logic API.
- Analyze sentiment in speech audio files
Speech Sentiment Analysis
- analyze_file: Analyze sentiment in a speech file using the Emotion Logic API
- The tool uses the Emotion Logic cloud service for analysis
- Ensure the provided audio file exists before analysis
- This tool requires API key authentication. Configure it with an API key and API key password for the Emotion Logic service.
The Excel Tool provides functionality to read, write, and manipulate Excel files.
- Read data from Excel files
- Create Excel files from CSV data
- Insert rows and columns into existing Excel files
- Manage worksheets within Excel files
File Reading
- read_excel_file: Read data from a specified Excel file and sheet
File Creation
- create_excel_from_csv: Create a new Excel file from CSV data
Data Manipulation
- insert_rows: Insert new rows into an Excel sheet at a specified index
- insert_cols: Insert new columns into an Excel sheet at a specified index
- delete_rows: Delete rows from an Excel sheet
Worksheet Management
- sheetnames: Retrieve a list of worksheets in an Excel file
- create_sheet: Create a new worksheet in an Excel file
- File operations are performed using the openpyxl and pandas libraries
- Sheet names can be specified by name or index (1-based)
- This tool does not require any specific configuration or API keys.
The FTP Tool provides functionality for interacting with FTP servers, allowing file and directory management operations.
- Connect to and disconnect from FTP servers
- Upload and download files
- Manage directories and files on the server
Connection Management
- connect: Establish a connection to an FTP server
- disconnect: Close the connection to the FTP server
File Operations
- get_ftp_file: Download a file from the FTP server
- put_ftp_file: Upload a file to the FTP server
- delete_file: Remove a file from the FTP server
- rename_file: Rename a file on the FTP server
- change_permissions: Modify file permissions on the server
Directory Operations
- ls: List files and directories in a specified directory
- mkdir: Create a new directory on the FTP server
- rmdir: Remove a directory from the FTP server
- Most operations require an active connection to the FTP server
- File paths should be specified relative to the current working directory on the server
- This tool requires FTP server credentials for authentication.
The Read File Tool provides functionality to read, save, list, and extract content from various file types.
- Read and extract content from different file formats
- Save text content and PDF files
- List files in the filesystem
- Create directories
File Operations
- list_filesystem_files: Returns a list of available files on the local agent filesystem with their sizes
- mkdir: Creates a directory at the specified path
- read_file: Reads and returns the contents of a given file, handling various file types
- save_file: Saves the given text content using the provided filename
- save_pdf_file: Saves the given text as a PDF file using the provided filename
- create_agent_directory: Creates and returns the path to an agent-specific directory
- The tool can handle various file types including Excel, CSV, COBOL, PDF, EML, and more
- It can download files from HTTP URLs
- For specific file types like EML, it provides structured representation of the content
The File Download Tool provides functionality to download files and content from the web.
- Download files from URLs and save them locally
- Retrieve file content directly from web links
File Download
- download_url_as_file: Downloads a file from a given URL and saves it locally
Content Retrieval
- download_file_content: Fetches content from a URL and returns it as text
- HTML content is automatically converted to plain text
- Content retrieval is limited to 4000 characters by default
The GitHub Tool provides functionality to interact with GitHub repositories and perform various GitHub-related operations.
- Search GitHub repositories
- Create and manage issues
- Create and manage pull requests
- Access repository contents
- Manage repositories
- Retrieve user information
Repository Operations
- search_repositories: Search for GitHub repositories based on keywords and filters
- get_repository_contents: Retrieve contents of a repository
- create_repository: Create a new GitHub repository
- delete_repository: Delete a GitHub repository
Issue Management
- create_github_issue: Create a new issue in a GitHub repository
- get_github_issues: Retrieve a list of issues for a repository
- add_comment_to_issue: Add a comment to an existing issue
Pull Request Operations
- create_pull_request: Create a new pull request
- get_pull_requests: Retrieve a list of pull requests for a repository
- list_repository_pull_requests: List pull requests for a specific repository
User Information
- get_user_info: Retrieve information about a GitHub user
- list_user_repositories: List repositories for a specific user
Code Search and File Operations
- search_in_repo: Search for code within a specific repository
- download_repo_file: Download a file from a repository
- Most functions support specifying a repository owner and name. If not provided, they use the default repository configured in the credentials.
- The tool uses asynchronous HTTP requests for improved performance.
- This tool requires specifying GitHub API credentials. Configure it with a GitHub API key and optionally a default repository in the format "owner/repo".
The IMAPTool provides functionality to interact with Gmail accounts using IMAP and SMTP protocols. It allows sending and retrieving emails, listing folders, and managing email processing.
- Send emails via SMTP
- Retrieve emails from specified folders
- List available email folders
- List email headers
- Process and parse email content, including attachments
Email Operations
- send_email: Send an email message
- retrieve_emails: Retrieve emails from a specified folder without tracking read status
- retrieve_emails_once: Retrieve emails from a specified folder while tracking which emails have been read
- list_emails: List email headers in a specified folder
- list_folders: List all available folders in the email account
- The tool uses IMAP for email retrieval and SMTP for sending emails
- Email retrieval supports various search criteria and filtering options
- Attachment handling is included, with files saved to a designated agent directory
- This tool requires Gmail credentials (email address and app password) for authentication
- Users need to create an App Password for their Gmail account to use this tool securely
The Gmail API Tool provides functionality to interact with Gmail using the Google Gmail API.
- Search for emails in a Gmail account
- Retrieve detailed content of specific emails
- Send emails, including support for plain text, HTML, and image attachments
Email Search
- search_for_emails: Search for email messages using Gmail's advanced search syntax
Email Retrieval
- get_email_details: Fetch the full content of a specific email, converting HTML to plain text
Email Sending
- send_email: Compose and send an email, with options for plain text or markdown body and image attachment
- Supports Gmail's advanced search syntax for email queries
- HTML email bodies are automatically converted to plain text for easier processing
- Markdown formatting is supported for email composition
- This tool requires OAuth 2.0 authentication with Gmail API.
- Users need to complete the OAuth flow to grant access to their Gmail account.
- The tool uses GSUITE_CLIENT_ID and GSUITE_CLIENT_SECRET from global configuration.
The Google Calendar Tool provides functionality to interact with Google Calendar, allowing users to manage events, retrieve information, and perform various calendar-related operations.
- List upcoming events
- Get events within a specific date range
- Create, update, and delete events
- Retrieve event details and attendee status
- Manage participants and meetings
Event Management
- list_upcoming_events: Retrieve a list of upcoming events
- get_events_by_date_range: Fetch events within a specified date range
- create_event: Create a new calendar event
- update_event: Modify an existing calendar event
- delete_event: Remove a calendar event
- get_event_details: Retrieve detailed information about a specific event
- get_attendee_status: Get attendance status for all attendees of an event
Participant and Meeting Management
- get_unique_participants_in_range: Retrieve unique participants from meetings in a specified period
- get_meetings_by_participant: Find all meetings with a specific participant within a given period
- get_todays_meetings_by_participant: Get today's meetings organized by participant
- get_last_meeting_with_participant: Find the most recent past meeting with a specific participant
- get_next_meeting_with_participant: Find the next upcoming meeting with a specific participant
Event Analytics
- count_events_in_range: Count events within a specific date range, with optional grouping
- All date and time inputs should be in ISO format (YYYY-MM-DD or YYYY-MM-DDTHH:MM:SSZ)
- The 'primary' calendar is used by default, but other calendar IDs can be specified
- This tool requires OAuth authentication with Google Calendar API.
The Google News Tool provides functionality to retrieve and analyze news articles from Google News using various search and filtering options.
- Fetch top headlines and articles on specific topics
- Perform advanced searches with multiple parameters
- Retrieve news by category and location
- Analyze local and trending topics
Headlines and Topic Search
- get_top_headlines: Fetch top headlines for a specified language and country
- query_topic: Get news articles related to a specific topic
- query_news: Perform an advanced search with multiple parameters
Categorized and Local News
- get_category_news: Retrieve news from specific categories (e.g., WORLD, BUSINESS, TECHNOLOGY)
- get_location_news: Get news articles related to a specific location
Topic Analysis
- get_local_topics: Analyze news to extract trending topics for a specific location
- get_trending_topics: Retrieve a list of currently trending topics on Google News
Search Assistance
- explain_search_syntax: Provide an explanation of the advanced search syntax
- The tool uses the Google News RSS feed and does not require an API key
- Advanced search options allow for precise querying of news articles
- Topic analysis functions provide insights into local and global trending topics
The HubSpot CRM Tool provides functionality to interact with HubSpot CRM, view email engagement statistics, perform operations on companies, contacts, deals, and tickets.
- Retrieve email engagement statistics
- Search and manage companies, contacts, deals, and tickets
- Upsert (create or update) CRM objects
Email Engagements
- get_recent_email_engagements: Retrieve recent email-related engagements
- get_email_engagement_stats: Get email engagement statistics for a specified period
Companies
- get_all_companies: Retrieve all companies from the HubSpot account
- search_companies: Search for companies using flexible criteria
Contacts
- get_all_contacts: Retrieve all contacts from HubSpot
- search_contacts: Search for contacts using flexible criteria
Deals
- search_deals: Search for deals based on provided criteria
Tickets
- search_tickets: Search for tickets based on provided criteria
Upsert Operations
- upsert_company: Create a new company or update an existing one
- upsert_contact: Create a new contact or update an existing one
- upsert_ticket: Create a new ticket or update an existing one
- upsert_deal: Create a new deal or update an existing one
- All functions return JSON strings containing the requested data or operation results
- Search functions allow for flexible criteria and property retrieval
- Upsert functions use a specified unique property to determine whether to create or update an object
- This tool requires specifying a HubSpot Private App Access Token for authentication.
The Image Analysis Tool provides functionality to analyze images using either Claude or GPT-4V models.
- Analyze images using advanced AI models
- Automatic model selection based on image content and query
- Support for both Claude and GPT-4V models
- Image preprocessing and optimization
Image Analysis
- analyze_image: Analyze an image using AI vision models
- Supports various image formats and sources (URL or local file path)
- Automatically handles image resizing and chunking when necessary
- Provides detailed statistics on image processing and cost estimation
- This tool requires API keys for OpenAI and Anthropic services.
The Image Generator Tool provides functionality to generate images from textual descriptions using OpenAI's DALL-E model.
- Generate images based on text descriptions
Image Generation
- generate_image: Creates an image from a given description and returns the image URL in Markdown syntax
- The generated image is resized to 512x512 pixels
- The image is uploaded to an S3 bucket and a public URL is returned
- This tool requires an OpenAI API key to be set in the global configuration
The JIRA Tool provides functionality to interact with JIRA projects and issues using the JIRA API.
- List JIRA projects
- Create JIRA tickets
- Create multiple JIRA tickets from a dataframe
- Search JIRA issues using JQL
Project Management
- list_projects: Retrieve a list of all projects in JIRA
Issue Management
- create_jira_ticket: Create a single JIRA ticket with specified details
- create_multiple_jira_tickets: Create multiple JIRA tickets from a dataframe
- search_jira_issues: Search for JIRA issues using JQL and return results as a dataframe
- The tool uses JIRA's REST API for all operations
- JQL (JIRA Query Language) knowledge is required for advanced searching
- This tool requires specifying JIRA credentials including username, personal access token, and JIRA domain.
The Ragie Tool provides functionality to search and manage knowledge indexes using the Ragie API.
- List documents in a specified index
- Search for relevant content across knowledge indexes
- Save text to a knowledge index
Document Listing
- list_documents: Retrieve a list of documents from a specified index with pagination support
Knowledge Search
- search_knowledge_index: Search for documents relevant to a given query across specified indexes
Content Saving
- save_text_to_knowledge_index: Save text content to a specified knowledge index
- The tool uses personal indexes by default when no specific index is provided
- Search results are sorted by relevance and can be filtered using a threshold value
- This tool requires specifying a Ragie API key.
The LinkedIn Data Tool provides functionality to retrieve and search for LinkedIn profile and company information using the LinkedIn Data API via RapidAPI.
- Fetch LinkedIn profile information
- Retrieve company details from LinkedIn
- Search for LinkedIn profiles based on various criteria
Profile Information
- get_linkedin_profile_info: Fetch profile data for a given LinkedIn profile URL
Company Information
- get_company_linkedin_info: Retrieve company details using a company username or domain
People Search
- linkedin_people_search: Search for LinkedIn profiles based on name, location, job title, and company
- All functions return data in a DataFrame format for consistent output
- This tool requires an API key from RapidAPI for the LinkedIn Data API. Set the RAPIDAPI_KEY environment variable or configure it in the application settings.
The Mapping Tool provides functionality to move and transform data between multiple systems using CSV files and mapping definitions.
- Integrate data between different systems using source and target CSV files
- Apply custom field mappings to transform data
Data Integration
- integrate: Move and transform data between systems using source CSV, target CSV, and mapping definitions
- The tool expects a source CSV file, a target CSV file name, and a dictionary of mappings
- Mappings should define how source column names correspond to target column names
- The source CSV file must exist in the specified path
- The resulting transformed data is saved to the specified target CSV file
The Meeting Tool provides functionality to manage Google Meet sessions and retrieve transcripts using the Transkriptor API.
- Join and record Google Meet sessions
- Retrieve transcripts from recorded meetings
- List recent meetings
- Get meeting information
Meeting Management
- join_and_record_meeting: Joins and records a Google Meet meeting using a meeting code or full link
Transcript Retrieval
- retrieve_meeting: Retrieves the transcription result of a recorded Google Meet session
Meeting Information
- get_meeting_info: Retrieves information about a specific meeting
- list_recent_meetings: Lists recent meetings or retrieves a specific meeting by order ID
- Meeting codes or full Google Meet links are required for joining sessions
- Transcripts may not be immediately available after a meeting ends
- This tool requires specifying a Transkriptor API key.
The Memory Compression Tool provides functionality to retrieve and manage compressed memory data.
- Retrieve full data for compressed messages
Data Retrieval
- retreive_full_data_for_compressed_message: Fetch the original content of a compressed message using its unique identifier
- This tool interacts with a database to store and retrieve compressed message data
- The compressed_id parameter must be a non-empty string
- This tool requires specifying a database configuration.
The Native Interpreter Tool provides functionality to execute Python code and system commands in a sandboxed environment.
- Execute Python code in a sandboxed interpreter
- Run system commands within the container
- Set environment variables in the sandbox
Python Code Execution
- execute_python_code: Execute given Python code in a sandboxed interpreter
System Command Execution
- execute_system_commands: Run system commands on the underlying Linux system inside the container
Environment Variable Management
- set_env_var: Set an environment variable in the sandbox
- The tool provides a sandboxed environment for code execution
- System commands are executed within the container's context
- Environment variables set using this tool are local to the sandbox
The PDF Tool provides functionality to interact with PDF files, including reading content, saving new PDFs, and converting PDFs to images.
- Read content from PDF files
- Save text content as PDF files
- Convert PDF pages to images
PDF Reading
- read_pdf: Extract text content from a PDF file stored in S3
PDF Creation
- save_pdf_file: Convert text or markdown content to a PDF file and save it to S3
PDF to Image Conversion
- convert_pdf_to_images: Convert each page of a PDF to an image and upload to S3
- PDF files are stored and retrieved from S3
- Generated PDFs and images are accessible via download links
- This tool requires specifying a database configuration.
- OpenAI API key is required for certain operations.
The Pandas Tool provides functionality to manipulate dataframes and convert various file formats into dataframes using the pandas library.
- Read files as dataframes
- Add columns to existing dataframes
- Convert dataframes to text
- Write dataframes to files
File Operations
- read_file_as_dataframe: Read a file (CSV, Parquet, or Excel) and return its contents as a DataFrame preview
- read_file_as_text: Read a file and return its contents as text
- write_dataframe_to_file: Write a DataFrame to a file (CSV, Parquet, or Excel)
DataFrame Manipulations
- add_column_to_dataframe: Add a new column to an existing DataFrame
- get_dataframe_as_text: Convert a DataFrame to a text representation
- File formats supported: CSV, Parquet, and Excel
- When file format is not specified, the tool attempts to infer it from the file name
- DataFrame operations use variable names to reference existing dataframes in memory
The Playwright Tool provides functionality to manipulate and test websites using Playwright, a powerful browser automation library.
- Execute custom Playwright scripts for web automation
- Read and write Playwright scripts from/to files
Script Execution
- run_script: Executes a Playwright script, either provided as text or from a file
Script Management
- write_script: Saves a Playwright script to a file in the designated directory
- read_script: Retrieves the content of a saved Playwright script file
- Scripts are executed asynchronously, capturing both stdout and stderr
- Scripts can be provided directly as text or referenced by filename
- The tool manages a dedicated directory for storing Playwright scripts
- No specific API keys or authentication required for basic usage
The RAG Tool provides functionality for Retrieval-Augmented Generation tasks using pgvector for storage and retrieval of embedded documents.
- Add content to the index from various sources (local files, URLs, websites)
- Perform semantic and hybrid searches on the indexed content
- List sources stored in the index
Adding Content
- add_to_index: Add content to the index from local files, file URLs, or dataframe-like content
- add_single_webpage_to_index: Add content from a single webpage to the index
- add_website_to_index: Add content from a website and its subpages to the index
Searching
- search_index: Perform semantic search on the indexed content
- hybrid_search: Perform a hybrid search combining semantic and keyword search with re-ranking
Utility
- list_sources: List all unique sources stored in the index with their chunk counts
- The tool supports various file formats including CSV, Excel, JSON, Parquet, text, and PDF
- Content is automatically split into chunks for efficient indexing and retrieval
- Hybrid search combines semantic and keyword search for improved results
- This tool requires specifying a database configuration using the PGVECTOR_DB_URL environment variable
- An OpenAI API key is required for embedding generation and re-ranking in hybrid search
- A Firecrawl API key is needed for web scraping functionality
The REST API Tool provides functionality to interact with various REST API endpoints, supporting GET and POST methods with different data formats.
- Make GET and POST requests to any REST API endpoint
- Support for JSON data, form data, and file uploads
- Handle various authentication methods including Basic Auth and API key parameters
- Process different response types including JSON, images, HTML, plain text, CSV, and XML
REST API Call
- call_rest_endpoint: Make a REST API call with customizable parameters, headers, authentication, and data formats
- Supports environment variable resolution in parameters and headers using ${KEY} syntax
- Allows specifying a delay before making the API call
- Can return responses as pandas DataFrames for JSON data
- Handles image responses by uploading to S3 and returning a markdown-formatted image link
- This tool uses environment variables for sensitive information.
The AuthorizedRESTAPITool provides functionality to interact with REST API endpoints that require authorization.
- Make authorized REST API calls using various authentication methods
- Support for Bearer token, Basic auth, custom headers, and request arguments
API Interactions
- get_resource: Perform GET requests to API endpoints
- post_resource: Send POST requests with JSON or form data
- put_resource: Execute PUT requests with JSON data
- patch_resource: Perform PATCH requests with JSON data
- delete_resource: Send DELETE requests to API endpoints
Utility Functions
- add_request_header: Add custom headers to requests
- debug_request: Debug API requests (implementation not shown)
- Authentication is configured via a Connection object
- Supports multiple authentication strategies: Bearer token, Basic auth, custom headers, and request arguments
- This tool requires specifying authentication credentials in the Connection configuration.
The Reflection Tool provides functionality for an AI agent to reflect on its actions and learn from them.
- Reflect on previous runs and outputs
- Learn from reflections and errors
Reflection
- reflect: Instructs the LLM to reflect on the last run and fix any errors
Learning
- learn: Processes the result of a reflection or an error for learning purposes
- The tool adds reflections to the context for future reference
- Future implementations may include saving reflections in a RAG database
- No specific configuration required for this tool The ReflectionTriggerable class handles the execution of reflection tasks:
- Supports setting a maximum number of retry attempts
- Creates and manages agent runs for reflection
- Parses trigger arguments to extract max tries and reflection instructions
The SMS Tool provides functionality to send SMS messages via email to recipients on various mobile carriers.
- Send SMS messages using email gateways provided by mobile carriers
SMS Sending
- send_sms_via_email: Send an SMS message to a specified phone number through email
- Supports multiple carriers including T-Mobile, AT&T, Verizon, Claro, Sprint, and SprintPCS
- Carrier must be specified when sending a message
- Message content is appended with "(sent by supercog.ai)"
- This tool requires specifying email credentials for the sender. Configure it with a sender's email address and password.
The Salesforce Tool provides functionality to interact with Salesforce, allowing users to read and write records, access metadata, and execute Salesforce Object Query Language (SOQL) queries.
- List and describe Salesforce objects (SObjects)
- Execute SOQL queries
- Retrieve and update Salesforce records
- Create and update custom objects
- Execute anonymous Apex code
Object Information
- list_sobjects: List SObjects matching a given string
- list_custom_objects: List all custom SObjects
- describe_sobject: Describe the metadata of a specific SObject
Data Retrieval and Manipulation
- salesforce_search_by_SOQL: Execute a SOQL query
- salesforce_SOSQL_search: Perform a Salesforce Object Search Language (SOSL) search
- get_object_by_id: Retrieve a Salesforce record by ID
- create_salesforce_record: Create a new Salesforce record
- update_salesforce_record: Update an existing Salesforce record
- insert_list_of_objects: Insert multiple records from a dataframe
- upsert_list_of_objects: Upsert records from a dataframe
Custom Object Management
- metadata_api_create_custom_object: Create a new custom object
- delete_custom_object: Delete a custom object
Apex Code Execution
- salesforce_execute_anonymous: Execute anonymous Apex code
- get_latest_apex_logs: Retrieve Apex execution logs
- list_apex_classes: List Apex classes
- get_apex_class: Retrieve the source code of an Apex class
- The tool uses OAuth for authentication and automatically refreshes tokens when needed
- Some functions support asynchronous operations for improved performance
- This tool requires Salesforce OAuth credentials for authentication.
The Salesforce Developer Tool provides advanced functionality for Salesforce development and administration tasks.
- Execute anonymous Apex code
- Create and delete custom objects
- Retrieve and analyze Apex logs
- Query and manage Apex classes
- Interact with Salesforce REST API
Apex Code Execution
- salesforce_execute_anonymous: Execute arbitrary Apex code in Salesforce
Custom Object Management
- metadata_api_create_custom_object: Define and create a new custom object using the Metadata API
- delete_custom_object: Remove a custom object from Salesforce (requires confirmation)
Apex Logs
- query_log_id_list_from_apex: Retrieve the most recent set of Apex execution runs
- get_latest_apex_logs: Fetch Apex logs for the most recent or specified run
Apex Class Management
- list_apex_classes: Get a list of all Apex classes, with optional name filtering
- get_apex_class: Retrieve the source code of a specific Apex class
REST API Interaction
- call_sf_rest_api: Make GET requests to any Salesforce REST API endpoint
- Some functions require careful use and may have significant impacts on your Salesforce org
- Always review and test code before execution in production environments
- This tool requires Salesforce authentication. Login to Salesforce to connect your account.
The Sample Data Tool provides functionality to create and generate sample CSV data for testing purposes.
- Create CSV files with specified column names and data rows
- Generate sample CSV data based on a given data type description
CSV Creation
- create_sample_csv: Creates a CSV file with specified column names and data rows
Sample Data Generation
- generate_sample_csv: Generates a CSV file with random contents based on a specified data type
- The tool uses OpenAI's API to intelligently generate realistic sample data
- Generated CSV files are stored locally
- This tool requires specifying an OpenAI API key.
The Basic Emailer Tool provides functionality to send emails using a built-in email system.
- Send emails to specified recipients
- Send emails to the current user
- Support for Markdown and plain text email bodies
Email Sending
- send_email: Send an email to a specified recipient with subject and body
- send_mail_to_current_user: Send an email to the current user with subject and body
- Email recipients must be whitelisted in the EMAIL_WHITELIST environment variable
- Supports Markdown formatting for email bodies, which is converted to HTML
- Plain text versions of emails are also sent for compatibility
- This tool requires setting the EMAIL_WHITELIST environment variable to a comma-separated list of allowed recipient email addresses.
The ServiceNow Custom Tool provides functionality to interact with ServiceNow instances using custom REST API calls.
- Initialize and manage ServiceNow sessions
- Perform CRUD operations on ServiceNow records
- Query records with custom filters
- Manage attachments
- Handle incidents
- Retrieve user information
- Execute server-side scripts
Session Management
- initialize_servicenow: Establish a new ServiceNow session
Record Operations
- get_record: Retrieve a single record from a specified table
- create_record: Create a new record in a specified table
- update_record: Update an existing record in a specified table
- delete_record: Remove a record from a specified table
- query_records: Fetch multiple records based on a custom query
Attachment Handling
- get_attachment: Retrieve attachment details
- add_attachment: Attach a file to a record
- delete_attachment: Remove an attachment
Table Information
- get_table_schema: Obtain the schema of a specified table
Incident Management
- create_incident: Create a new incident
- update_incident: Modify an existing incident
- resolve_incident: Mark an incident as resolved
User Information
- get_user_info: Fetch details about a specific user
- get_current_user: Retrieve information about the currently logged-in user
Script Execution
- execute_script: Run a server-side script in ServiceNow
- Most functions require an initialized ServiceNow session
- Proper error handling is implemented for API requests
- This tool requires specifying ServiceNow credentials including instance URL, username, and password.
The Single Page Document Source Tool provides functionality to load and index content from a single webpage using Firecrawl for parsing.
- Parse and extract content from a single webpage
- Convert extracted content to markdown format
Document Retrieval
- get_documents: Yields parsed content from a single webpage as Document objects
- The tool uses Firecrawl to parse the webpage content
- The parsed content is converted to markdown format
- The tool generates a filename based on the page's og:title or URL
- This tool requires a Firecrawl API key and a Ragie API key to be set in the global configuration.
- A URL for the webpage to be parsed must be provided in the tool's credentials or as a parameter.
The Slack Tool provides functionality to interact with Slack, allowing sending messages, listing channels, fetching messages, and listing users.
- Send messages to Slack channels
- List Slack channels
- Fetch messages from Slack channels
- List Slack users
Messaging
- send_slack_message: Send a message to a specified Slack channel
Channel Management
- list_slack_channels: Retrieve a list of Slack channels, optionally filtered by name
Message Retrieval
- fetch_slack_messages: Fetch recent messages from a specified Slack channel
User Management
- list_slack_users: Retrieve a list of Slack users, optionally filtered by name
- The tool handles channel name resolution, supporting both channel names and IDs
- User mentions in messages are automatically resolved to user names
- This tool requires Slack Bot Token and Signing Secret for authentication.
The Snowflake Tool provides functionality to interact with Snowflake databases, execute SQL queries, and manage data operations.
- Execute SQL queries on Snowflake databases
- List available databases in the Snowflake warehouse
- Upload dataframes to Snowflake tables
SQL Execution
- run_snowflake_sql: Execute SQL commands on a specified Snowflake database and schema
Database Management
- list_databases: Retrieve a list of all databases in the Snowflake warehouse
Data Upload
- upload_dataframe_to_snowflake: Upload a pandas dataframe to a Snowflake table, with options to create or overwrite existing tables
- Ensure proper database, schema, and table names are provided when executing operations
- When uploading dataframes, you can optionally create new tables or use existing ones
- This tool requires Snowflake account credentials including account name, username, password, and warehouse name for authentication.
The Speech to Text Tool provides functionality to convert speech to text using OpenAI's Whisper API.
- Convert speech from audio files to text
- Generate text from microphone input
- Extract and playback audio segments from files
Speech to Text Conversion
- generate_text_from_file: Transcribe audio from a file to text
- generate_text_from_microphone: Record audio from microphone and transcribe to text
Audio Processing
- local_playback_from_file: Play a segment of an audio file locally
- playback_from_file_to_file: Extract a segment of an audio file and save it to S3
- extract_from_file_to_file: Extract a segment of an audio file and save it to S3, returning the audio URL
- The tool supports various audio file formats
- Transcription can be performed on specific segments of audio files
- Audio playback and extraction functions are available for processing audio data
- This tool requires an OpenAI API key for accessing the Whisper API.
The Google Docs Document Source Tool provides functionality to index and retrieve documents from Google Drive folders and individual files.
- Index documents from selected Google Drive folders
- Process individual files from Google Drive
- Support for various file types including Google Docs, PDFs, Spreadsheets, and Word documents
Document Retrieval
- get_documents: Fetch and process documents from specified Google Drive folders or individual files
- Requires OAuth authentication with Google
- Supports indexing of folders and individual file selection
- Extracts content from various file types including Google Docs, PDFs, Spreadsheets, and plain text files
- This tool requires OAuth credentials for Google API access. Configure it with a Google client ID and client secret.
The Swagger Tool provides functionality to retrieve and process Swagger API documentation for constructing network requests.
- Load and process Swagger API documentation from a URL
- Find relevant API endpoints based on search queries
- List available API endpoints
- Retrieve detailed request data for specific API endpoints
Documentation Loading
- load_swagger_documentation: Loads and processes Swagger API documentation from a given URL
Endpoint Search
- find_swagger_documentation_for_request: Finds the most relevant API endpoint for a given search query
API Information
- list_api_endpoints: Lists all available API endpoints from the loaded Swagger documentation
- get_api_request_data: Retrieves detailed request data for a specific API endpoint
- Ensure Swagger documentation is loaded before using other functions
- The tool uses GPT-4 to find relevant endpoints based on search queries
- This tool requires specifying an OpenAI API key.
The Text to Speech Tool provides functionality to convert text to speech using OpenAI's API and other services.
- Generate speech audio from text
- Save generated speech to a file
- Pause execution for a specified duration
Text to Speech Conversion
- generate_speech_file_from_text: Convert text to speech and save it as an audio file
- bark_generate_speech_from_text: Generate speech using the Replicate API (Bark model)
Utility
- sleep_for: Pause execution for a specified number of seconds
- The tool supports various voices for text-to-speech conversion
- Generated audio files are saved and can be accessed via URL
- This tool requires an OpenAI API key for text-to-speech conversion
- A Replicate API token is needed for the Bark text-to-speech model
The Weather Tool provides functionality to retrieve current weather data, weather forecasts, and historical weather information using the Open-Meteo API.
- Get current weather conditions for a specified location
- Obtain hourly or daily weather forecasts
- Retrieve historical weather data
- Calculate historical weather averages
Current Weather
- get_current_weather: Fetch current weather data for a given location
Weather Forecast
- get_forecast_weather: Obtain hourly or daily weather forecast for a specified location
Historical Weather
- get_historical_weather: Retrieve historical weather data for a specific date range
- get_historical_averages: Calculate 5-year historical weather averages for a specific date range
- No API key is required for basic usage
- Optional API key parameter available for professional/production use
- Latitude and longitude coordinates are used to specify locations
- Date formats vary by function (YYYY-MM-DD for full dates, MM-DD for recurring dates)
The Scale SERP Browser Tool provides functionality to search the web and download web content using the Scale SERP API and other fallback methods.
- Web search using Scale SERP API
- Download and extract content from web pages
- Fallback to ScrapingBee API if Scale SERP fails
Web Browsing
- browse_web_tool: Searches the web using Scale SERP API and returns full page contents related to the search term
Web Page Download
- download_web_pages: Downloads and extracts content from one or more specified web pages
- The tool handles HTML content extraction and formatting
- Implements concurrency for efficient multiple page downloads
- Includes error handling and fallback mechanisms
- This tool requires specifying a Scale SERP API key
- Optionally, a ScrapingBee API key can be configured for fallback functionality
The Slack Web Browser Tool provides functionality to perform web searches and retrieve information about people from various online sources, including LinkedIn.
- Conduct general web searches
- Search for information about specific individuals
Web Search
- web_search_tool: Perform a general web search using the Tavily search engine
People Search
- people_web_search_tool: Search for information about a person using available details such as name, email, company, or location
- linkedin_people_search: Search for LinkedIn profiles matching the provided criteria
- The tool combines results from web searches and LinkedIn profile data
- For people searches, it returns a summary including LinkedIn profile information and general web search results
- This tool requires API keys for Tavily and LinkedIn data access.
The TavilySearchTool provides functionality to perform web searches and retrieve search results using the Tavily search engine.
- Perform web searches with customizable parameters
- Retrieve search results including web pages and optionally images
Web Search
- web_search_tool: Execute a web search query and retrieve results
- The tool uses the Tavily API to perform searches
- Search results are returned as a DataFrame preview
- Images can be optionally included in the search results
- This tool requires a Tavily API key. Set it as an environment variable 'TAVILY_API_KEY' or configure it in the application settings.
The Website Document Source tool provides functionality to crawl, parse, and index content from specified websites using Firecrawl and Ragie services.
- Crawl and parse website content
- Index parsed content for later retrieval and search
Document Retrieval
- get_documents: Crawls a specified website, parses its content, and yields Document objects containing the parsed information
- The tool uses Firecrawl for web crawling and parsing
- Parsed content is indexed using Ragie for efficient retrieval
- Rate limiting is implemented to prevent overloading external services
- This tool requires a Firecrawl API key and a Ragie API key to be set in the global configuration.
The YouTube Search Tool provides functionality to search for YouTube videos, playlists, and channels using the YouTube Data API v3.
- Search for YouTube videos, playlists, or channels
- Retrieve detailed information about search results
YouTube Search
- youtube_search_tool: Perform a search query on YouTube and return results
- Results include title, description, publication date, channel title, thumbnail URL, and video/playlist/channel URL
- Maximum number of results is limited to 50 due to YouTube API constraints
- This tool requires a YouTube Data API key. Set the API key in the environment variable
YOUTUBE_API_KEYor in the global configuration.
The YouTube Transcription Tool provides functionality to transcribe YouTube videos and search through transcriptions using vector embeddings.
- Transcribe YouTube videos and store the transcriptions in a database
- Search through stored transcriptions using semantic similarity
Transcription
- transcribe_youtube_video: Download, transcribe, and store the content of a YouTube video
Search
- search_transcriptions: Search through stored transcriptions using semantic similarity
- Requires a PostgreSQL database with pgvector extension
- Uses OpenAI's Whisper model for transcription and embeddings for search
- This tool requires specifying a database configuration and an OpenAI API key.
The Zapier Tool provides functionality to interact with Zapier and connected systems using the Zapier API.
- List available Zaps
- Execute Zaps
- Retrieve data from connected systems
- Write data to connected systems
Zap Management
- list_zaps: Retrieve a list of available Zaps for the authenticated user
Zap Execution
- execute_zap: Execute a specific Zap with given input data
Data Operations
- retrieve_data: Fetch data from a connected system using a specific Zap action
- write_data: Send data to a connected system using a specific Zap action
- All functions return JSON strings containing the results or error details
- Error handling is built into each function to manage API connection issues
- This tool requires specifying a Zapier API key. Configure it with your Zapier API key to access Zapier services.
The Zyte Web Scraping Tool provides functionality to scrape web pages using the Zyte.com API.
- Scrape web pages and retrieve their content
- Option to return content as HTML or plain text
Web Scraping
- scrape_web_page: Fetch the browser-rendered content of a web page
- The tool uses Zyte's API to render web pages, which can handle JavaScript-rendered content
- This tool requires a Zyte API key. Set the ZYTE_API_KEY environment variable with your API key.
The Zyte Screenshot Tool provides functionality to capture screenshots of web pages using the Zyte.com service.
- Capture high-quality screenshots of web pages
Web Page Screenshot
- get_page_screenshot: Returns an image of the browser rendering content of a specified web page
- The tool uses Zyte's API to capture screenshots
- Returned screenshots are processed and converted to a suitable format for further use
- This tool requires environment variables to be set for authentication with the Zyte API
The AppConnect Analysis Tool provides functionality to analyze IBM App Connect (formerly WebSphere Cast Iron) project structures, orchestrations, and mappings.
- Analyze AppConnect project structures
- Examine orchestration flows and activities
- Extract detailed mapping information
Project Structure
- list_project_structure: List the project structure with focus on orchestrations
Orchestration Analysis
- list_project_orchestrations: List all orchestrations in an AppConnect project
- analyze_orchestration: Analyze a specific AppConnect orchestration with focus on mappings and flow
- The tool recursively searches for project directories and files
- Detailed analysis includes activity trees, mapping statistics, and data transformations
- This tool does not require any specific configuration or API keys.
The Coda Tool provides functionality to interact with Coda documents, tables, and manage permissions using the Coda API.
- List and retrieve Coda documents
- Manage tables and rows within documents
- Export document contents
- Retrieve analytics data for documents and pages
Document Management
- list_docs: List available Coda documents
- get_doc_details: Get details about a specific document
- get_doc_contents: Retrieve full contents of a document including page content and tables
Table and Row Operations
- list_tables: List tables in a document
- get_table: Get details about a specific table
- list_rows: List rows in a table with optional filtering
- get_row: Get details about a specific row
- insert_rows: Insert or upsert rows into a table
- update_row: Update a specific row in a table
- delete_row: Delete a specific row from a table
Analytics
- get_doc_analytics: Retrieve analytics data for documents
- get_page_analytics: Get analytics data for pages within a document
- get_doc_analytics_summary: Get summarized analytics data for documents
- All functions require a document ID and some require additional identifiers for tables or rows
- Analytics functions offer various filtering options
- This tool requires specifying a Coda API key. Configure it in the app under tools->options->API key.
The List Manager Tool provides functionality to create, manage, and manipulate lists with multiple columns using DuckDB as a backend.
- Create and manage lists with custom columns and types
- Add, update, remove, and search items in lists
- Merge lists and manage columns
- Import and export list data
- Retrieve list summaries and schemas
List Creation and Management
- create_list: Create a new list with specified columns and an optional primary key
- add_items: Add multiple items to an existing list
- update_items: Update items in a list matching specified criteria
- remove_items: Remove items from a list based on a condition
- add_column: Add a new column to an existing list
List Operations
- search_list: Search for items in a list using SQL-like queries
- merge_lists: Merge items from one list into another
- export_list: Export a list to a file in CSV, JSON, or Excel format
- import_list: Import items from a file into a new or existing list
List Information
- get_list_summary: Retrieve summary statistics about a list
- get_list_schema: Get schema information for a list
- list_all_lists: Get information about all lists in the database
List Deletion
- delete_list: Delete a list and its metadata completely from the database
- The tool uses DuckDB as a backend, providing SQL-like functionality for list operations
- System columns (e.g., system_id, created_at, modified_at) are automatically managed
- Lists can have a natural primary key for item identification
- This tool requires specifying a database file path for DuckDB storage.
The Nmap Tool provides functionality to perform advanced network scans using the Nmap security scanner.
- Conduct customizable port scans on specified targets
- Detect operating systems and service versions
- Run Nmap scripts for vulnerability assessment
Network Scanning
- nmap_scan: Perform an advanced network scan on a specified target
- Some scan types and features (like SYN scans and OS detection) require root privileges
- Non-root users are automatically switched to TCP connect scans
- Scan results can be returned in normal, XML, or JSON formats
- This tool does not require API keys or additional authentication
The ZAP Tool provides functionality to perform security scans on web applications using OWASP ZAP (Zed Attack Proxy).
- Perform comprehensive security scans on target URLs
- Retrieve high and medium risk security alerts
Security Scanning
- zap_scan: Initiates a full security scan on a specified target URL, including spidering, passive scanning, and active scanning
Alert Retrieval
- get_high_risk_alerts: Fetches high risk security alerts from the latest scan
- get_medium_risk_alerts: Retrieves medium risk security alerts from the latest scan
- The tool generates a JSON report file with detailed alert information after each scan
- Scan progress and results are logged for monitoring
- This tool requires specifying an API key and ZAP port.
- Configure the API key in the OWASP ZAP application under Tools -> Options -> API
- Set the ZAP port to match the local proxy configuration in Options -> Network -> Local Proxy