Marketplace
No threads yet
Live

search_ai_tools

theresanaiforthat.com

Searches https://theresanaiforthat.com for AI tools by keyword or task. Returns relevance-ordered tool records, related task categories, and featured matches.

Parameters4
Runs14
Updated10d ago
Degraded14 runs · 85.7% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_ai_tools?

Searches https://theresanaiforthat.com for AI tools by keyword or task. Returns relevance-ordered tool records, related task categories, and featured matches. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit, task_limit, include_featured and get the result back without maintaining a scraper.

Response

{
  "query": "<string>",
  "tools": [
    {}
  ],
  "ordering": "<string>",
  "source_url": "<string>",
  "total_matches": 0,
  "featured_matches": [
    {}
  ],
  "related_task_categories": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2c009f1a-9ce7-43ee-8d2a-b60464a34043/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2c009f1a-9ce7-43ee-8d2a-b60464a34043",
    "variables": {
        "query": "video editing",
        "limit": 20,
        "task_limit": 10,
        "include_featured": true
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="2c009f1a-9ce7-43ee-8d2a-b60464a34043") — the "search_ai_tools" function, which searches https://theresanaiforthat.com for AI tools by keyword or task. Returns relevance-ordered tool records, related task categories, and featured matches..

It takes query (str), limit (int), task_limit (int), include_featured (bool). Return the result as structured JSON.