{"id":13407897,"url":"https://github.com/GeyserMC/MCProtocolLib","last_synced_at":"2025-03-14T12:31:50.437Z","repository":{"id":4266437,"uuid":"5393808","full_name":"GeyserMC/MCProtocolLib","owner":"GeyserMC","description":"A library for communication with a Minecraft client/server.","archived":false,"fork":false,"pushed_at":"2024-08-05T15:36:47.000Z","size":4325,"stargazers_count":718,"open_issues_count":20,"forks_count":201,"subscribers_count":43,"default_branch":"master","last_synced_at":"2024-08-06T10:12:38.586Z","etag":null,"topics":["java","library","minecraft","minecraft-protocol","protocol"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GeyserMC.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"geysermc","open_collective":"geysermc"}},"created_at":"2012-08-13T01:57:38.000Z","updated_at":"2024-08-06T10:12:44.608Z","dependencies_parsed_at":"2023-10-11T06:48:24.943Z","dependency_job_id":"c2f06185-0660-4fef-9849-13bb78b2bc35","html_url":"https://github.com/GeyserMC/MCProtocolLib","commit_stats":{"total_commits":1258,"total_committers":70,"mean_commits":17.97142857142857,"dds":0.6486486486486487,"last_synced_commit":"bb38c8ad9ab2654d2a918fbb1956073e00675e16"},"previous_names":["steveice10/mcprotocollib"],"tags_count":26,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeyserMC%2FMCProtocolLib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeyserMC%2FMCProtocolLib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeyserMC%2FMCProtocolLib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeyserMC%2FMCProtocolLib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GeyserMC","download_url":"https://codeload.github.com/GeyserMC/MCProtocolLib/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243004070,"owners_count":20220237,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","library","minecraft","minecraft-protocol","protocol"],"created_at":"2024-07-30T20:00:49.335Z","updated_at":"2025-03-14T12:31:50.427Z","avatar_url":"https://github.com/GeyserMC.png","language":"Java","readme":"# MCProtocolLib\n\nMCProtocolLib is a simple library for communicating with Minecraft clients and servers. It allows developers to build custom bots, clients, or servers for Minecraft with ease.\n\n## Example Code\n\nSee the [example](https://github.com/GeyserMC/MCProtocolLib/tree/master/example/src/main/java/org/geysermc/mcprotocollib) folder for sample usage.\n\n## Adding as a Dependency\n\nMCProtocolLib builds are published to the [Open Collaboration repository](https://repo.opencollab.dev/#/maven-snapshots/org/geysermc/mcprotocollib/protocol).\nFollow the below steps to add MCProtocolLib as a dependency to your project.\n\n### Maven\n\n#### Add the Repository\n\n```xml\n\u003crepositories\u003e\n    \u003crepository\u003e\n        \u003cid\u003eopencollab\u003c/id\u003e\n        \u003curl\u003ehttps://repo.opencollab.dev/main/\u003c/url\u003e\n    \u003c/repository\u003e\n\u003c/repositories\u003e\n```\n\n#### Add the Dependency\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eorg.geysermc.mcprotocollib\u003c/groupId\u003e\n    \u003cartifactId\u003eprotocol\u003c/artifactId\u003e\n    \u003cversion\u003e(version here)\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### Gradle (Groovy DSL)\n\n#### Add the Repository\n\n```groovy\nrepositories {\n    maven { \n        name 'opencollab'\n        url 'https://repo.opencollab.dev/main/'\n    }\n}\n```\n\n#### Add the Dependency\n\n```groovy\ndependencies {\n    implementation 'org.geysermc.mcprotocollib:protocol:(version here)'\n}\n```\n\n### Gradle (Kotlin DSL)\n\n#### Add the Repository\n\n```kotlin\nrepositories {\n    maven(\"https://repo.opencollab.dev/main/\") {\n        name = \"opencollab\"\n    }\n}\n```\n\n#### Add the Dependency\n\n```kotlin\ndependencies {\n    implementation(\"org.geysermc.mcprotocollib:protocol:(version here)\")\n}\n```\n\n### Snapshots\n\nTo use snapshot builds, switch the URL to `https://repo.opencollab.dev/maven-snapshots/`.\n\n### Javadocs\n\nYou can find the Javadocs for MCProtocolLib [on opencollab](https://repo.opencollab.dev/javadoc/maven-snapshots/org/geysermc/mcprotocollib/protocol/latest).\n\n## Building the Source\n\nMCProtocolLib uses Gradle to manage dependencies. To build the source code, run `./gradlew clean build` in the project root directory.\n\n## Support and Development\n\nPlease join [the GeyserMC Discord server](https://discord.gg/geysermc) and visit the **#mcprotocollib** channel for discussion and support for this project.\n\n## License\n\nMCProtocolLib is licensed under the **[MIT license](https://opensource.org/license/mit)**.\n","funding_links":["https://github.com/sponsors/geysermc","https://opencollective.com/geysermc"],"categories":["Protocol","Java","📚 Projects (1974 total)"],"sub_categories":["MCP Servers"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGeyserMC%2FMCProtocolLib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FGeyserMC%2FMCProtocolLib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGeyserMC%2FMCProtocolLib/lists"}