Tools extend your agents’ capabilities beyond conversation. With tools, agents can search the web, read files, call APIs, execute code, and integrate with external services. This guide covers configuring tools in your workspace.
servers: database: tools: allow: - "read_*" # All read operations - "list_*" # All list operations deny: - "*_delete" # No delete operations - "*_drop" # No drop operations
# List available toolsatlas tools list# Test specific toolatlas tools test filesystem read_file --params '{"path": "test.txt"}'# Debug tool callsatlas tools debug --server github
servers: custom-api: description: | Custom API integration for order processing. Available operations: - create_order: Create new order - check_status: Check order status - cancel_order: Cancel existing order