Back to Documentation

Built-in Tools

Powerful AI tools that work automatically with your API key. No additional configuration or MCP setup required.

Zero Configuration Required

All tools work automatically with any valid API key. No client-side installation, MCP configuration, or additional setup needed. Just include your API key and start using them.

Web Search

POST /tools/web_search

Real-time web search powered by AI. Get up-to-date information from the internet without leaving your workflow.

Features

Search the web in real-timeNo additional installation requiredWorks with any Claude modelReturns formatted search results

When to Use

Use web search when you need current information, prices, news, or any data that changes frequently.

Example Request

curl -X POST https://clients-involveai.0psc8x.easypanel.host/tools/web_search \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "query": "latest AI developments 2026",
    "max_results": 5
  }'

Example Response

{
  "results": [
    {
      "title": "Latest AI Developments...",
      "url": "https://example.com/article",
      "snippet": "Summary of the content..."
    }
  ]
}

Image Analysis

POST /tools/understand_image

Analyze images with AI vision. Upload any image and get detailed understanding, descriptions, or answers about the image.

Features

Supports JPEG, PNG, WebP formatsMaximum file size: 18MBDescribe, analyze, or extract informationWorks with all Claude models

When to Use

Upload an image and ask questions about it. Perfect for analyzing screenshots, diagrams, documents, or photos.

Example Request

curl -X POST https://clients-involveai.0psc8x.easypanel.host/tools/understand_image \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: multipart/form-data" \
  -F "image=@screenshot.png" \
  -F "prompt=What does this screenshot show?"

Example Response

{
  "description": "A screenshot showing...",
  "analysis": "The image depicts...",
  "extracted_text": "Any text found in the image..."
}

Using Tools with Claude Code

Tools work automatically in Claude Code — just ask naturally

# Search the web

"Search for the latest news about WebInvolve"

# Analyze an image

"Look at this screenshot and tell me what you see"

# Or attach an image file directly

"Analyze the attached diagram"