Live
get_set_details_with_inserts
tcdb.comGets comprehensive set details from https://tcdb.com, including set metadata, the full base checklist, and up to limit_inserts insert or parallel checklists.
Parameters4
Runs16
Updated8d ago
Degraded16 runs · 75% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_set_details_with_inserts?
Gets comprehensive set details from https://tcdb.com, including set metadata, the full base checklist, and up to limit_inserts insert or parallel checklists. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass set_id, limit_inserts, include_parallel_sets, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"set_id": 0,
"metadata": {},
"base_checklist": {},
"insert_sections": {},
"fetched_insert_checklists": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/8f21268e-fc3d-4823-b14e-961d46b3b1a6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8f21268e-fc3d-4823-b14e-961d46b3b1a6",
"variables": {
"set_id": 415379,
"limit_inserts": 3,
"include_parallel_sets": true,
"timeout_seconds": 30
}
}'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="8f21268e-fc3d-4823-b14e-961d46b3b1a6") — the "get_set_details_with_inserts" function, which gets comprehensive set details from https://tcdb.com, including set metadata, the full base checklist, and up to limit_inserts insert or parallel checklists.. It takes set_id (int), limit_inserts (int), include_parallel_sets (bool), timeout_seconds (int). Return the result as structured JSON.