Cheddar, 37 bytes
Looks like a full program is required which unfortunately means a lot of boilerplate:
print Math.prime(Number::IO.prompt()) This might not work on TIO so you'd have to put it into a file and call it that way
Function, 10 bytes
Math.prime This returns a function which checks if input is prime using Math.prime. Example:
$ cheddar primechecker.cheddar -x "[1, 3, 4, 10, 13] => (print) + f"