Pyomo is not distributed with any solvers, but rather provides a variety of interfaces to solvers that are called upon demand. Because of this, there is no master list of solvers.
You can get something that approximates the desired behavior with the terminal command pyomo help -s
. You can also check SolverFactory('glpk').available() == True
for various solvers.
Both AMPL and GAMS provide listings of solvers on their websites. Since Pyomo is able to interface to either problem formats, you can also use that as a reference. Keep in mind that the relevant solver does still need to be installed on your system.