UniversalBench works with any MCP compatible AI. But the AI has to actually choose to use it. These are prompts that reliably trigger UB capabilities, no matter which client you connect from.Documentation Index
Fetch the complete documentation index at: https://docs.universalbench.dev/llms.txt
Use this file to discover all available pages before exploring further.
The pattern
AIs decide whether to use a tool based on two things: the tool’s description in their context, and the user’s request. UniversalBench’s tool descriptions are written to be self evident, but you can boost the trigger rate by being explicit in your prompts.Vague (sometimes works)
“What are the prime numbers under 1000?”
Explicit (always works)
“Use UniversalBench to find all prime numbers under 1000.”
Reliable prompts by use case
Database query
Use UniversalBench’sdb_selectto fetch the 10 most recent orders from theorderstable where status ispending.
Code execution
Run this Python in UniversalBench: import statistics; print(statistics.mean([23, 45, 67, 89]))
Safe deploy with auto rollback
Updateapp/billing.pyto use the new tax calculation. Use UniversalBench’ssafe_deployso it rolls back automatically if the smoke test at/healthfails.
Web research with live data
Use UniversalBench’s web_search to find current Federal Reserve rates, then summarize the implications for mortgage holders.
Parallel work
Use UniversalBench’s parallel_blocks to run these three queries simultaneously: (1) total users, (2) total orders today, (3) total revenue this month.
Stored secrets
Use my Stripe key from secrets_vault to create a Checkout Session for $50.