Minecraft Plugin Documentation MCP Server
This MCP server helps Minecraft Java plugin developers look up documentation, scan projects for dependencies, check for updates, and perform comprehensive project analysis.
Get Dependency Documentation: Retrieve wiki URLs, Javadocs, GitHub links, Maven coordinates, quick-start snippets, and latest version info for popular dependencies like Paper API, LuckPerms, Vault, HikariCP, and more.
Scan Project Dependencies: Extract all dependencies from
build.gradle,build.gradle.kts, andpom.xmlfiles in a project directory.Check Latest Versions: Compare current dependency versions against Maven Central, JitPack, and other repositories — for specific dependencies or an entire project.
Analyze Plugin Project: Perform a comprehensive analysis of a plugin project or workspace, including subproject scanning, version checks, and actionable recommendations.
Sub-API Documentation: Access detailed API documentation for complex plugins like EdTools and SkinsRestorer.
Custom Dependency Support: Add new dependencies to the registry for documentation and version tracking.
Retrieves repository metadata, documentation links, and wiki URLs for Minecraft plugin dependencies hosted on GitHub.
Scans Gradle build configurations to extract and analyze project dependencies for Minecraft plugins.
Checks for the latest versions and dependency metadata from the JitPack repository.
Provides documentation lookups, version information, and API references for Spigot and Bukkit development projects.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Minecraft Plugin Documentation MCP ServerScan my project and check for the latest versions of my dependencies"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Minecraft Plugin Documentation MCP Server
An MCP (Model Context Protocol) server that helps Minecraft Java plugin developers check the latest documentation and versions of common dependencies.
Features
Dependency Documentation Lookup - Get wiki, javadocs, and GitHub links for popular Minecraft plugin dependencies
Project Scanning - Scan Gradle and Maven projects to extract all dependencies
Version Checking - Check for latest versions from Maven Central, JitPack, Paper repo, and more
Full Project Analysis - Comprehensive analysis of plugin workspaces with recommendations
API Reference - Detailed sub-API documentation for complex plugins (EdTools, SkinsRestorer, etc.)
Related MCP server: MCP Discord
Supported Dependencies
Dependency | Repository | Description |
SnLib | Local (.m2) | Sn all-in-one lib: yml, menus, items, db, papi, lang, holograms, econ and more (standalone hard-depend) |
Paper API | Paper | Paper Minecraft server API |
Spigot API | Spigot | Spigot Minecraft server API |
Bukkit | Spigot | Bukkit API |
LuckPerms | Maven Central | Permissions plugin API |
Vault | JitPack | Economy/Permissions/Chat API (SnLib covers this via |
HikariCP | Maven Central | JDBC connection pool (SnLib covers this via |
Item-NBT-API | CodeMC | NBT manipulation without NMS (SnLib covers this via |
PacketEvents | Maven Central | Packet manipulation library |
DecentHolograms | JitPack | Hologram plugin API (SnLib covers this via |
CoreProtect | Maven Central | Block logging API |
PlaceholderAPI | Custom | Placeholder system (SnLib covers the dev hook via |
WorldEdit | Custom | World editing API |
WorldGuard | Custom | Region protection API |
SkinsRestorer | CodeMC | Skin management API |
EdTools API | Manual (JAR) | Custom enchantments, zones, currencies, and more |
Quick Start - Using in Your Projects
Option 1: Global Installation (Recommended)
Install the MCP globally once, then use it in any project:
# Clone and setup (one time only)
git clone https://github.com/ValentinTarnovsky/MCP-MCP.git
cd MCP-MCP
npm install
npm run build
npm linkThen in any project, add this to your MCP config:
Claude Code (.claude/mcp.json):
{
"mcpServers": {
"minecraft-plugin-docs": {
"command": "npx",
"args": ["minecraft-plugin-docs-mcp"]
}
}
}Claude Desktop (%APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"minecraft-plugin-docs": {
"command": "npx",
"args": ["minecraft-plugin-docs-mcp"]
}
}
}Option 2: Direct Path
If you prefer not to use npm link:
{
"mcpServers": {
"minecraft-plugin-docs": {
"command": "node",
"args": ["C:\\path\\to\\MCP-MCP\\dist\\index.js"]
}
}
}Usage Examples
Once configured, you can ask Claude things like:
Get Dependency Documentation
"Get documentation for paper-api"
"Look up luckperms docs"
"What's the Maven coordinate for hikaricp?"
"Show me EdTools API reference"
"How do I use SkinsRestorer API?"Scan Your Project
"Scan dependencies in my project"
"What dependencies does this plugin use?"Check for Updates
"Check for updates in this project"
"What's the latest version of paper-api?"
"Are my dependencies up to date?"Full Analysis
"Analyze my plugin workspace"
"Full dependency report"Tools Reference
get_dependency_docs
Get documentation for a specific dependency.
Parameter | Required | Description |
| Yes | Name of the dependency (e.g., "paper-api", "edtools") |
| No | Whether to fetch latest version (default: true) |
Returns: Wiki URL, Javadocs, GitHub, Maven coordinates, quick-start snippets, and API reference if available.
scan_project_dependencies
Scan a project directory for all dependencies.
Parameter | Required | Description |
| Yes | Path to the project directory |
check_latest_versions
Check for latest versions of dependencies.
Parameter | Required | Description |
| No | Path to scan for current versions |
| No | List of specific dependencies to check |
| No | Check all known dependencies |
analyze_plugin_project
Comprehensive project analysis with recommendations.
Parameter | Required | Description |
| No | Path to analyze |
| No | Whether to check for updates (default: true) |
Adding Custom Dependencies
Edit src/registry/dependencies.ts:
Standard Maven Dependency
'my-plugin-api': {
name: 'My Plugin API',
description: 'Description here',
documentation: {
wiki: 'https://...',
javadocs: 'https://...',
github: 'https://github.com/...',
},
maven: {
groupId: 'com.example',
artifactId: 'my-plugin-api',
repository: 'maven-central', // or 'jitpack', 'paper', 'codemc', 'custom'
repositoryUrl: 'https://...', // required for 'custom' repos
},
aliases: ['myplugin', 'my-plugin'],
},Manual JAR Dependency (no Maven repo)
'local-plugin-api': {
name: 'Local Plugin API',
description: 'A plugin that distributes JAR manually',
documentation: {
wiki: 'https://...',
github: 'https://...',
downloadUrl: 'https://download-link...', // Where to get the JAR
},
maven: {
groupId: 'com.example',
artifactId: 'LocalPlugin-API',
repository: 'manual', // Special type for local JARs
},
aliases: ['localplugin'],
// Optional: Document sub-APIs
apiReference: {
mainClass: 'LocalPluginAPI',
importPackage: 'com.example.api',
subApis: [
{
name: 'FeatureAPI',
getter: 'getFeatureAPI()',
description: 'Manage features',
methods: ['doSomething()', 'getSomething() -> String'],
},
],
},
},After adding, rebuild: npm run build
Development
Project Structure
MCP-MCP/
├── src/
│ ├── index.ts # Main server entry point
│ ├── registry/
│ │ └── dependencies.ts # Dependency information registry
│ ├── parsers/
│ │ ├── gradle.ts # Gradle build file parser
│ │ └── maven.ts # Maven POM parser
│ ├── tools/
│ │ ├── getDependencyDocs.ts
│ │ ├── scanProjectDependencies.ts
│ │ ├── checkLatestVersions.ts
│ │ └── analyzePluginProject.ts
│ └── utils/
│ ├── cache.ts # Caching utilities
│ └── versionFetcher.ts # Version fetching from repos
├── dist/ # Compiled output
├── package.json
├── tsconfig.json
└── README.mdCommands
npm install # Install dependencies
npm run build # Compile TypeScript
npm run dev # Watch mode for development
npm run clean # Remove dist/
npm link # Make available globally via npxTesting
# Run the server manually
node dist/index.js
# Test with MCP Inspector
npx @modelcontextprotocol/inspector node dist/index.jsTroubleshooting
Server Not Starting
Ensure Node.js 18+ is installed:
node --versionCheck the build completed:
npm run buildVerify
dist/index.jsexists
Dependencies Not Found
Check spelling of dependency name
Try using aliases (e.g., "paper" instead of "paper-api")
Use Maven coordinates (e.g., "io.papermc.paper:paper-api")
npx Command Not Found
Run
npm linkin the MCP-MCP directoryVerify with
npm list -g minecraft-plugin-docs-mcp
License
MIT
Contributing
Fork the repository
Create a feature branch
Add your changes
Submit a pull request
Acknowledgments
Model Context Protocol - The MCP specification
PaperMC - Paper Minecraft server
SpigotMC - Spigot Minecraft server
Available Tools
4 toolsanalyze_plugin_projectB
Perform a comprehensive analysis of a Minecraft plugin project or workspace. Scans all subprojects, extracts dependencies, checks for updates, and provides recommendations.
| Name | Required | Description | Default |
|---|---|---|---|
| project_path | No | Path to the project or workspace directory. Defaults to "C:\Users\tarno\Desktop\OkiMC-Plugins" if not provided. | |
| check_versions | No | Whether to check for latest versions of dependencies (default: true) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions scanning, extracting, checking, and recommending, but lacks details on permissions required, whether it modifies files, rate limits, output format, or error handling. For a tool with potential file system access and analysis operations, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the main purpose and lists key actions without redundancy. It could be slightly more structured by separating core functions, but it avoids waste and is appropriately sized for the tool's scope.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description provides a basic overview but lacks completeness for a tool with file system interaction and analysis outputs. It covers the 'what' but not the 'how' or 'what next', such as result format or error cases, leaving gaps in contextual understanding despite the clear schema coverage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters thoroughly. The description adds no additional parameter semantics beyond implying 'project_path' is for analysis and 'check_versions' relates to dependency updates, which the schema already covers. Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool performs a 'comprehensive analysis' of a Minecraft plugin project, specifying actions like scanning subprojects, extracting dependencies, checking for updates, and providing recommendations. It distinguishes from siblings by covering multiple analysis aspects rather than focusing on specific tasks like version checking or documentation retrieval, though it doesn't explicitly contrast with each sibling.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for analyzing plugin projects with dependency and update concerns, but provides no explicit guidance on when to use this tool versus alternatives like 'check_latest_versions' or 'scan_project_dependencies'. It suggests a broad analysis context without detailing prerequisites, exclusions, or comparative scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_latest_versionsA
Check for the latest versions of Minecraft plugin dependencies. Can check all known dependencies or compare against project's current versions.
| Name | Required | Description | Default |
|---|---|---|---|
| project_path | No | Optional path to a project directory. If provided, will scan the project and check versions against current dependencies. | |
| dependencies | No | Optional list of specific dependencies to check with their current versions. | |
| check_all | No | If true, checks latest versions for all known Minecraft plugin dependencies (default: false) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It describes what the tool does but lacks details on behavioral traits such as whether it requires network access, how it handles errors, if there are rate limits, or what the output format looks like. This is a significant gap for a tool that likely interacts with external resources.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded and concise, consisting of two sentences that efficiently convey the tool's purpose and usage modes without any wasted words. Every sentence earns its place by providing essential information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of checking dependencies (which may involve external APIs or repositories) and the lack of annotations and output schema, the description is incomplete. It does not cover behavioral aspects like network requirements, error handling, or output structure, leaving gaps that could hinder an AI agent's ability to use the tool effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description mentions the two modes (checking all or comparing against a project) which aligns with the parameters 'check_all' and 'project_path', but it does not add meaning beyond what the input schema provides. Since schema description coverage is 100%, the baseline score is 3, as the schema already documents all parameters adequately.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('check for the latest versions') and resource ('Minecraft plugin dependencies'), and distinguishes between two modes: checking all known dependencies or comparing against a project's current versions. This specificity helps differentiate it from sibling tools like 'analyze_plugin_project' or 'scan_project_dependencies'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool: either to check all known dependencies or to compare against a project's current versions. However, it does not explicitly state when not to use it or name alternatives among sibling tools, which would be needed for a perfect score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_dependency_docsA
Get documentation URLs, Maven coordinates, and latest version for a Minecraft plugin dependency. Returns wiki, javadocs, GitHub links, and quick-start code snippets.
| Name | Required | Description | Default |
|---|---|---|---|
| dependency | Yes | Name of the dependency (e.g., "paper-api", "luckperms", "vault", "hikaricp") | |
| fetch_version | No | Whether to fetch the latest version (default: true) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It describes the return content (URLs, coordinates, version, links, snippets), which is helpful, but doesn't mention potential limitations like rate limits, authentication needs, error handling, or whether it's a read-only operation. It adds some context but lacks comprehensive behavioral details for a tool with no annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that efficiently conveys the tool's purpose and return values without unnecessary words. It's front-loaded with the core action and resource, making it easy to parse quickly. Every part of the sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (2 parameters, no output schema, no annotations), the description is reasonably complete. It explains what the tool does and what it returns, which is sufficient for a read operation. However, without annotations or output schema, it could benefit from more behavioral details like response format or error cases, but it's largely adequate for its purpose.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents both parameters ('dependency' and 'fetch_version'). The description doesn't add any parameter-specific details beyond what's in the schema, such as examples of dependency formats or implications of the fetch_version setting. Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get') and the specific resources ('documentation URLs, Maven coordinates, and latest version for a Minecraft plugin dependency'), including what information is returned ('wiki, javadocs, GitHub links, and quick-start code snippets'). It distinguishes itself from sibling tools like 'analyze_plugin_project' or 'scan_project_dependencies' by focusing on dependency documentation rather than project analysis or version checking.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when documentation for a Minecraft plugin dependency is needed, but it doesn't explicitly state when to use this tool versus alternatives like 'check_latest_versions' (which might focus only on versions) or 'scan_project_dependencies' (which might list dependencies without documentation). There's no guidance on prerequisites or exclusions, leaving usage context somewhat vague.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
scan_project_dependenciesA
Scan a Minecraft plugin project directory and extract all dependencies from build.gradle, build.gradle.kts, and pom.xml files. Returns a structured list of dependencies with version info.
| Name | Required | Description | Default |
|---|---|---|---|
| project_path | Yes | Path to the project directory to scan |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden. It describes the core operation but lacks important behavioral details: whether the scan is recursive, what happens if files are missing or malformed, whether it modifies files, error handling, or performance characteristics. The description doesn't contradict annotations (none exist), but provides minimal behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences that efficiently convey purpose and outcome with zero wasted words. The first sentence states what the tool does, the second describes the return value. Perfectly front-loaded and appropriately sized for the complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter tool with no annotations and no output schema, the description adequately covers the basic operation but lacks completeness. It doesn't explain the structure of the returned dependency list, error conditions, or important behavioral constraints. The description compensates somewhat but leaves significant gaps for a tool that performs file system operations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% (the single parameter 'project_path' is fully documented in the schema). The description doesn't add any parameter-specific information beyond what the schema provides, such as path format expectations or validation rules. With high schema coverage, baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('scan', 'extract'), the target resource ('Minecraft plugin project directory'), and the specific files processed ('build.gradle, build.gradle.kts, and pom.xml files'). It distinguishes from siblings by focusing on dependency extraction rather than analysis, version checking, or documentation retrieval.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context (when you need to extract dependencies from specific build files), but doesn't explicitly state when to use this tool versus alternatives like 'analyze_plugin_project' or 'check_latest_versions'. No exclusions or prerequisites are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
v1.0.1- First observed
analyze_plugin_project - First observed
check_latest_versions - First observed
get_dependency_docs - First observed
scan_project_dependencies
TDQS
The tools have mostly distinct purposes with clear boundaries: analyze_plugin_project focuses on comprehensive project analysis, check_latest_versions handles version checking, get_dependency_docs retrieves documentation, and scan_project_dependencies extracts dependency lists. However, analyze_plugin_project and scan_project_dependencies have some overlap in scanning dependencies, which could cause minor confusion.
All tool names follow a consistent verb_noun pattern with snake_case throughout: analyze_plugin_project, check_latest_versions, get_dependency_docs, and scan_project_dependencies. The naming is predictable and readable without any deviations or mixed conventions.
With 4 tools, the count is reasonable for a server focused on Minecraft plugin documentation and dependency management. It covers key areas like analysis, version checking, documentation retrieval, and dependency scanning, though it might feel slightly thin for broader plugin development workflows.
The tool set covers core aspects of dependency management and documentation for Minecraft plugins, but there are notable gaps. It lacks tools for creating or updating dependencies, managing plugin configurations, or integrating with development environments, which could limit agent workflows in more complex scenarios.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for developer documentation, generated by doc2mcp.
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for dev documentation, generated by doc2mcp.
- LovableOAuthdev.lovable
Official MCP server for Lovable, the AI-powered full-stack app builder.
Related MCP Servers
- AlicenseAqualityCmaintenanceAn MCP server designed for developers to build and manage Minestom-based Minecraft servers by inspecting project environments, build configurations, and API documentation. It enables users to plan features, review design patterns, and discover libraries within the Minestom ecosystem.9176Apache 2.0
- AlicenseNot gradedqualityCmaintenanceThe most complete open-source MCP server for Discord — 80+ tools, dual-mode: integrated (plugin) or standalone4310MIT
- AlicenseNot gradedqualityAmaintenanceDependency Updater AI - MCP server providing AI-powered tools and automation by MEOK AI Labs16MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server for EndstoneMC development, enabling module information queries, code search, plugin template generation, event handling guidance, and development tutorials through natural language.2MIT
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ValentinTarnovsky/MCP-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server