Web Search
Search the web for current information
Tools extend Claude’s capabilities within Clawdbot, allowing the AI to:
Web Search
Search the web for current information
Calculator
Perform mathematical calculations
File Reader
Read and analyze files you share
Code Executor
Run code snippets safely
from clawdbot import tool
@tool("get_stock_price")async def stock_price(symbol: str) -> dict: """Get current stock price.
Args: symbol: Stock ticker symbol (e.g., AAPL)
Returns: Current price and change """ # Implementation here return {"symbol": symbol, "price": 150.00}# Enable specific toolsTOOLS_ENABLED=web_search,calculator
# Or enable allTOOLS_ENABLED=all
# Disable specific toolsTOOLS_DISABLED=code_executor