---
title: Java Library
summary: The Java library for Minecraft Utilities is a simple way to interact with the API using Java!
---
# Java Library
This is the Java library for Minecraft Utilities.
## Installation
To use the Java library, you can add the following to your `pom.xml` file:
```xml
fascinated-repo-public
Fascinated's Repository
https://repo.fascinated.cc/public
xyz.mcutils
mcutils-java-library
1.1.1
```
## Usage
This is a simple example of how to use the Java library to get a player's information.
```java
public class Main {
public static void main(String[] args) {
System.out.println(McUtilsAPI.getPlayer("Notch"));
}
}
```