Skip to content

Some toolkits are returning 0 tools #445

Discussion options

You must be logged in to vote

Ah, I see what you mean, unfortunately we don't have a docs page that consolidates that (yet!). I'm opening a ticket. For now, unfortunately the fastest way to get a list is to list ALL the tools and parse the toolkit from the list

from arcadepy import Arcade
from dotenv import load_dotenv

load_dotenv()

client = Arcade()

tools = client.tools.list()


toolkits = set()
for tool in tools:
    toolkits.add(tool.toolkit.name)

for toolkit in sorted(toolkits):
    print(toolkit)

something like that, but if you have workers with a lot of tools you'd need pagination
The output for that for my dashboard (with some custom workers) is this:

Arithmetic
Asana
CodeSandbox
Confluence
Demo
Dropbox
Git…

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@torresmateo
Comment options

torresmateo Jun 16, 2025
Maintainer Author

@torresmateo
Comment options

torresmateo Jun 16, 2025
Maintainer Author

@torresmateo
Comment options

torresmateo Jun 16, 2025
Maintainer Author

@torresmateo
Comment options

torresmateo Jun 16, 2025
Maintainer Author

Answer selected by torresmateo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
1 participant