Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
DROPBOX_ACCESS_TOKEN | Yes | Your Dropbox access token for authentication |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
search_files | Search for files in Dropbox by name or content. Args: query: Search query (searches file names and content) file_types: File types to search ("all", "pdf", "docx", "txt", or comma-separated list) max_results: Maximum number of results to return |
list_files | List files and folders in a Dropbox directory. Args: folder_path: Path to the folder (empty string for root) max_files: Maximum number of items to return |
read_file | Read and return the full content of a file. Args: file_path: Full path to the file in Dropbox max_length: Maximum characters to return (0 for no limit) |
get_file_info | Get detailed information about a specific file. Args: file_path: Full path to the file in Dropbox |
search_file_content | Search for text within specific files. Args: file_paths: List of file paths to search in query: Text to search for context_chars: Number of characters of context around matches |