Minecraft how to check tps
Olivia House
Updated on March 25, 2026

Minecraft server software all operate in a similar matter with one key problem: there is no multi-threading or timing limits for the main game loop. When the server goes to tic, it runs through every TileEntity update, entity update, block update, events and other processes until it’s done. … (TPS). This can go as low as 55.55ms for 18 TPS …
There are other answers below:
Minecraft; How to check tps minecraft? Asked By: Kairav Shenoy. Write Answer. Follow. Edit. Message. Report. Available Answers: 3. Answer #1# K.S.Prakash Rath. Follow. Kollam, India. You can check server’s TPS by using the same command we used to check the RAM usage: “/memory”. Alternatively, if you are running Spigot, you can use the …
In bukkit, you could use /gc to check server ticks and whatnot. Is there any vanilla command or some way to check ticks? In my MC server window, it says average tick is (somewhere around) .400 ms. I’m assuming/hoping this is the server ping because I know MC is supposed to run at 20 tps. Server = 1.7.4, completely unmodded. Thanks for the help-JDoe
Create a dummy objective called TPS, and set it to sidebar. Then type these commands: /debug start. (Use whatever method you want to wait for a little while, 5-10 seconds should work) /execute as @s store result score @s TPS run debug stop. The score should change to the current TPS, rounded to the nearest number!
Minecraft-Bot-TPS-Checker. A bot that responds to @tps and sends a message with the server tps in chat. The wiki section says how to use this, if you need any help, just make a issue on the reposotory with your discord, and I can help. About. A quickly chopped up version of pingbot to show server tps Resources. Readme Stars.
Related Questions
Is there a way to check TPS with commands?
Edit: u/tryashtar has already found this out, and it cannot be used with functions or command blocks. You can check MSPT (“inverse” TPS) in the F3 menu. It’s also possible to use the worldborder to calculate TPS with commands.
Is it possible for a server to crash from TPS?
I don’t think it is possible. The server can crash because of many reasons, and it almost always unpredictable (an exception, an error…) I also don’t get the thing about de-OPing people if the TPS falls.. What is the relation between OPped people and TPS? I don’t think it is possible.
Where can I find TPS for a plugin?
And I found it pretty fast by searching for “TPS” only in titles in the Plugin development section.
How to get TPS from last second ticks?
– have an aysynchronous task executing every second (only a delayed task running an infinite while-loop checking the system time); when that task runs, the number will contain the amount of ticks done in the last second –> your TPS. Then the number is reset.