Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Recon
PluginLicenseRef-Enabify-Custom-MIT-License

Recon

The Next-Generation Remote Control tool for Minecraft.

7
Downloads
1
Followers
3 months ago
Updated
📦
3
Versions
managementtechnologyutilitybukkitfoliapaperpurpurspigot
Download Latestv1.2View on Modrinth

📖About Recon

Recon: The Next-Generation Remote Control tool for Minecraft

Recon is a modern, secure, and reliable REST API-based alternative to the traditional Minecraft RCON protocol. Designed for stability and ease of integration, Recon solves the common issues associated with RCON, such as connection drops, permission management difficulties, and inconsistent response handling.

recon-logo

Why Recon?

The name Recon stands for three core principles:

  • Reliable-con: Built for stability. No more random connection drops.
  • Response-con: Guaranteed command execution feedback.
  • Rest-con: Uses a standard REST API (HTTP/JSON) for effortless integration with any modern platform.

Key Features

  • 🚀 REST API Protocol: Ditch the clunky RCON packets for clean, standard HTTP requests.
  • 🔒 Security: Every request and response is encrypted using AES. Includes Nonce and Timestamp validation to prevent replay attacks.
  • 👥 Per-User Permissions: Manage API access for multiple users with individual settings for:
    • Whitelisted IP addresses.
    • OP privilege toggling.
    • Execution as a specific player.
  • 📥 Command Queue: If a player is offline when a command is sent, Recon can queue it to execute immediately upon their next login.
  • 🌍 Multi-Language Support: Built-in support for Arabic, German, English, Spanish, French, Hindi, Indonesian, Japanese, Portuguese, Russian, and Chinese.
  • 🏗️ Multi-Platform Clients: Ready-to-use client libraries for PHP, Java, Python, JavaScript, TypeScript, Go, and Dart.
  • ⚡ High Performance: Supports Paper, Folia (asynchronous) environments.

Installation

  1. Download the latest Recon.jar and place it in your server's plugins folder.
  2. Restart the server to generate configurations.
  3. Configure the HTTP port (default: 4161) and other settings in config.yml.
  4. Use the /recon command in-game to create your first API user.

API Specification

Recon listens for POST requests at the root path (/).

Request Body

{
  "user": "username",
  "nonce": "random_string",
  "timestamp": 1234567890,
  "queue": true,
  "command": "AES_ENCRYPTED_COMMAND"
}

Response Body

{
  "user": "username",
  "nonce": "server_random_string",
  "timestamp": 1234567890,
  "success": true,
  "response": "AES_ENCRYPTED_RESPONSE",
  "error": "Error message (only if success is false)"
}

Commands

Command Short Form Description Permission
/recon create user:<name> password:<pw> [ip:<ip>] [op:<bool>] [player:<name>] [permission:<perm>] /recon create u: pw: [i:] [o:] [pl:] [pe:] Create a new profile for a specific user or player. recon.create.other.*
/recon create password:<pw> [ip:<ip>] [op:<bool>] [permission:<perm>] /recon create pw: [i:] [o:] [pe:] Create your own profile (target is yourself). recon.create.own.*
/recon edit user:<name> [password:<pw>] [ip:<+/-ip>] [op:<bool>] [player:<name>] [permission:<+/-perm>] /recon edit u: [pw:] [i:] [o:] [pl:] [pe:] Edit a specific user's profile. Use + or - for IPs/Perms. recon.edit.other.*
/recon edit [password:<pw>] [ip:<+/-ip>] [op:<bool>] [permission:<+/-perm>] /recon edit [pw:] [i:] [o:] [pe:] Edit your own connection profile. recon.edit.own.*
/recon info [user:<name>] /recon info [u:] View profile details for yourself or another user. recon.info.own / recon.info.other
/recon test - Test connection stability and credentials. (None)
/recon reload - Reload configuration and language files. recon.reload
/recon remove user:<name> /recon remove u: Remove a user connection profile. recon.remove
  • Permissions can be set to group.default, worldedit.*, etc.

Client Libraries

  • Dart
  • Go
  • Java
  • JavaScript
  • PHP
  • Python
  • TypeScript

Mobile Application

Recon is the Next-Generation Remote Control tool for Minecraft—an RCON alternative designed for both players and admins. 🚀
This plugin includes a function to automatically generate individual connection profiles for every player. These profiles allow players to enjoy a more streamlined gameplay experience by leveraging the application's shortcut capabilities. ✅
Shortcuts can be uploaded to the cloud and shared by entering an ID. ☁

Mobile Application Preview

Important:
This application is a smartphone client for Recon. To use it, you must first install the Recon plugin on your server.

Get it on Google Play or App Store.

License

Copyright (c) 2026 Enabify. Licensed under the MIT License with additional restrictions regarding mobile application distribution. See LICENSE for details.

Note: Redistribution of this software as a mobile application on any digital app store is exclusively reserved for Enabify.

👥 Team & Contributors

Enabify
EnabifyOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
bukkitfoliapaperpurpurspigot
Minecraft Versions
1.131.13.11.13.21.141.14.11.14.21.14.31.14.4+38 more

🔗 Links

Modrinth Page