Live
list_documentation_entries
docs.livecode.comLists all LiveCode Script documentation entries in a category from https://docs.livecode.com. Returns each entry name and documentation path.
Parameters1
Runs9
Updated10d ago
Operational9 runs · 100% 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 list_documentation_entries?
Lists all LiveCode Script documentation entries in a category from https://docs.livecode.com. Returns each entry name and documentation path. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category and get the result back without maintaining a scraper.
Response
{
"count": 0,
"entries": [
{
"name": "<string>",
"documentation_path": "<string>"
}
],
"category": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/29093793-61d3-41e1-9551-7ddb1a9e5d0d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "29093793-61d3-41e1-9551-7ddb1a9e5d0d",
"variables": {
"category": "Commands"
}
}'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="29093793-61d3-41e1-9551-7ddb1a9e5d0d") — the "list_documentation_entries" function, which lists all LiveCode Script documentation entries in a category from https://docs.livecode.com. Returns each entry name and documentation path.. It takes category (str). Return the result as structured JSON.