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
LittleLink
PluginMIT

LittleLink

Tiny Spigot plugin that enables Discord based whitelisting on the server

288
Downloads
1
Followers
2 years ago
Updated
📦
2
Versions
managementsocialutilitypaperpurpurspigot
Download Latestv1.9View on Modrinth

📖About LittleLink

LittleLink

Tiny Spigot plugin that enables Discord based whitelisting on the server

Even if it seams like this plugin isn't updated its actually working fine (edited in Feb 2025). I am always monitoring compatibility with latestest versions and will do an update as soon as its required. If you managed to find a bug please join the support discord here

Setup

Before you start using this plugin you will need to invite SuperLink discord bot to your server
using this link

Now download the latest file from releases and put it into your
plugins folder

Start the server once in order to generate required config files

Now go to plugins/LittleLink and edit the config.yml based by your server needs

guild: 264801645370671114
role:
  use: false
  id: 426156903555399680
  • guild represents the discord server id
  • role.use enable role based authentication, default is false (plugin will check for guild only)
  • role.id represents the role id user is required to have in order to join

If you don't know how to find a role and guild id you first need to enable discord developer mode. You can find a tutorial here

Restart the server and enjoy your new plugin

Lookup command

Command allows you to quickly find a Discord user based of the Minecraft username. Works only for people who have linked
accounts. The lookup is global meaning users don't need to be online or be part of your Discord server

In order for players to use this command they will need the permission littlelink.command.lookup

How it works?

This plugin requires a discord bot in your server in order to retrieve all data. Discord bot is hosted by me enabling
the tiny footprint of the plugin. If you want to find out more about the bot and its API please go
to Pequla/SuperLink

Plugin does a simple HTTP GET request towards the API running inside the bot application. After processing the
information it decides if it should let the player join or kick it with an info message.

Looking for webhook integration as well? This plugin is just a core whitelisting system. It contains an api inside so other plugins can access the discord data. Webhook plugin available here

Other plugins

  • LittleWeb - Provides a REST API for a more complete server status
  • LittleHooks - Discord Webhook integration

Not sure what you need? Most likely you just need LittleHooks. It adds an awesome look and feel to the discord server with a bonus of boosting server activity.

For developers

Plugin contains a simple API. In order to consume it I suggest importing the plugin jar as a library. After receiving
the instance of the plugin just access the HashMap with all the player data by LittleLink#getPlayerData().

Data class is com.pequla.link.model.DataModel

Example setup code:

@Override
public void onEnable(){
    PluginManager manager = getServer().getPluginManager();
    LittleLink plugin = (LittleLink) manager.getPlugin("LittleLink");

    if (plugin == null) {
        getLogger().warning("Plugin LittleLink not found");
        manager.disablePlugin(this);
        return;
    }
    // The rest of onEnable logic...
}

You can import the maven package from my maven repository

<repository>
    <id>pequla-repo</id>
    <url>https://maven.pequla.com/releases</url>
</repository>

<dependency>
    <groupId>com.pequla</groupId>
    <artifactId>little-link</artifactId>
    <version>1.9</version>
    <scope>provided</scope>
</dependency>

Before accessing the plugin instance don't forget to put LittleLink as your plugin dependency in resources/plugin.yml

👥 Team & Contributors

Pequla
PequlaOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
paperpurpurspigot
Minecraft Versions
1.191.19.11.19.21.19.31.19.41.201.20.11.20.2

🔗 Links

Modrinth Page