Marketplace
No threads yet
Live

search_mcp_servers

brofindai.com

Searches open-source Model Context Protocol servers from the https://brofindai.com directory and returns matching names, descriptions, URLs, categories, and tags.

Parameters3
Runs12
Updated10d ago
Operational12 runs · 100% 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_mcp_servers?

Searches open-source Model Context Protocol servers from the https://brofindai.com directory and returns matching names, descriptions, URLs, categories, and tags. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, category, limit and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "total": 0,
  "servers": [
    {
      "url": "<string>",
      "name": "<string>",
      "tags": [
        "<string>"
      ],
      "category": "<string>",
      "description": "<string>"
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2925caa2-7b2d-4b79-b6f6-b05b9ae83e12/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2925caa2-7b2d-4b79-b6f6-b05b9ae83e12",
    "variables": {
        "query": "github",
        "category": "",
        "limit": 5
    }
}'

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="2925caa2-7b2d-4b79-b6f6-b05b9ae83e12") — the "search_mcp_servers" function, which searches open-source Model Context Protocol servers from the https://brofindai.com directory and returns matching names, descriptions, URLs, categories, and tags..

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