
ModsJava
Player Uploader
A simple mod that allows you to send the host player's coordinates to a specified HTTP server, with configurable reporting interval and server address in…
⬇ Download on ModrinthA lightweight mod
that uploads the player's current position to an HTTP server (default: 127.0.0.1:5000). The reporting interval and server address are fully configurable.
Here is a Python code example (the Flask library is required).
from flask import Flask, request, jsonify
app = Flask(__name__)
@app.route('/api/player_position', methods=['POST'])
def receive_position():
data = request.get_json()
for name, pos in data.items():
print(f"📍 {name}: X={pos['x']:.1f}, Y={pos['y']:.1f}, Z={pos['z']:.1f}")
return jsonify({"status": "ok"}), 200
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000)
This will output the player's coordinates to the console.
Quick facts
- Edition: Minecraft Java
- File type: .jar
- Minecraft version listed: 1.20.1
- How to install: Install the matching mod loader (Forge, Fabric or NeoForge) for your Minecraft version. → Download the .jar. → Put it in the .minecraft/mods folder and launch that loader profile.
- Where to get it: Opens on Modrinth — not every file is mirrored on our own servers.
Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.
Verified by MCModsHub
- Ships as playeruploader-1.0.0.jar — drop this file into the mods folder
- Download size: 23 KB
- Download link checked 14 Sept 2026 — working
These come from our own check of the pack file, not from the source page.