search_fighters
tapology.comSearch Tapology at https://www.tapology.com for fighters by name. Returns each matching fighter's name, profile URL and slug, weight class, record, and country from a single search query.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_fighters?
Search Tapology at https://www.tapology.com for fighters by name. Returns each matching fighter's name, profile URL and slug, weight class, record, and country from a single search query. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"fighters": [
{
"name": "<string>",
"slug": "<string>",
"record": "<string>",
"country": "<string>",
"profile_url": "<string>",
"weight_class": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/1be30025-c0c4-41f8-917e-88ccc097c19f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "1be30025-c0c4-41f8-917e-88ccc097c19f",
"variables": {
"query": "Islam Makhachev"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="1be30025-c0c4-41f8-917e-88ccc097c19f") — the "search_fighters" function, which search Tapology at https://www.tapology.com for fighters by name. Returns each matching fighter's name, profile URL and slug, weight class, record, and country from a single search query.. It takes query (str). Return the result as structured JSON.