loading…
Search for a command to run...
loading…
Indexes local Maven and Gradle caches to enable AI agents to search for Java classes, method signatures, and source code, including from internal or obscure lib
Indexes local Maven and Gradle caches to enable AI agents to search for Java classes, method signatures, and source code, including from internal or obscure libraries.
A Model Context Protocol (MCP) server that indexes your local Maven repository (~/.m2/repository) and Gradle cache (
~/.gradle/caches/modules-2/files-2.1) to provide AI agents with tools to search for Java classes, method signatures,
and source code.
Key Use Case: While AI models are well-versed in popular public libraries (like Spring, Apache Commons, Guava), they often struggle with:
This server bridges that gap by allowing the AI to "read" your local dependencies, effectively giving it knowledge of your private and obscure libraries.
This package provides an MCP interface into the Maven/Gradle index. If you are using a coding agent in the terminal, you might benefit from using the CLI + SKILL instead.
CLI: Modern coding agents increasingly favor CLI-based workflows exposed as SKILLs over MCP because CLI invocations are more token-efficient: they avoid loading large tool schemas into the model context, allowing agents to act through concise, purpose-built commands. This makes CLI + SKILLs better suited for high-throughput coding agents that must balance dependency lookups with large codebases and reasoning within limited context windows.
Learn more about Maven Indexer CLI with SKILLS.
MCP: MCP remains the better choice for IDE-integrated agents (Cursor, Kiro, Windsurf, etc.) that benefit from persistent background indexing, automatic repository watching, and seamless tool invocation without any CLI setup. The MCP server indexes your repository in the background and keeps the index up to date automatically.
Add the following config to your MCP client:
{
"mcpServers": {
"maven-indexer": {
"command": "npx",
"args": [
"-y",
"maven-indexer-mcp@latest"
]
}
}
}
This will automatically download and run the latest version of the server. It will auto-detect your Maven repository
location (usually ~/.m2/repository) and Gradle cache.
Follow Cline's MCP guide and use the config provided above.
Follow the configure MCP guide using the standard config from above.
Click the button to install:
Or install manually:
Go to Cursor Settings -> MCP -> New MCP Server. Use the config provided above.
Go to Settings | Tools | AI Assistant | Model Context Protocol (MCP) -> Add. Use the config provided above.
The same way maven-indexer can be configured for JetBrains Junie in Settings | Tools | Junie | MCP Settings ->Add.
Use the config provided above.
In Kiro Settings, go to Configure MCP > Open Workspace or User MCP Config > Use the configuration snippet
provided above.
Or, from the IDE Activity Bar > Kiro > MCP Servers > Click Open MCP Config. Use the configuration snippet
provided above.
In Qoder Settings, go to MCP Server > + Add > Use the configuration snippet provided above.
Alternatively, follow the MCP guide and use the standard config from above.
Go to Settings -> MCP -> + Add -> Add Manually to add an MCP Server. Use the config provided above.
Follow the configure MCP guide using the standard config from above.
Enter the following prompt in your MCP Client to check if everything is working:
Find the class `StringUtils` in my local maven repository and show me its methods.
Your MCP client should read the class StringUtils from your local Maven repository and show its methods.
If the auto-detection fails, or if you want to filter which packages are indexed, you can add environment variables to the configuration:
MAVEN_REPO: Absolute path to your local Maven repository (e.g., /Users/yourname/.m2/repository). Use this if
your repository is in a non-standard location.GRADLE_REPO_PATH: Absolute path to your Gradle cache (e.g.,
/Users/yourname/.gradle/caches/modules-2/files-2.1).INCLUDED_PACKAGES: Comma-separated list of package patterns to index (e.g., com.mycompany.*,org.example.*).
Default is * (index everything).MAVEN_INDEXER_CFR_PATH: (Optional) Absolute path to a specific CFR decompiler JAR. If not provided, the server
will attempt to use its bundled CFR version.VERSION_RESOLUTION_STRATEGY: (Optional) Strategy to choose the version when multiple versions of an artifact are found and no specific coordinate is provided.semver: (Default) Prefer the highest semantic version (e.g. 1.2.0 > 1.1.9).latest-published: Prefer the version with the latest publish time (checks *.pom.lastUpdated first, then file modification time).latest-used: Prefer the version most recently imported/used by the user (based on file creation time).Example with optional configuration:
{
"mcpServers": {
"maven-indexer": {
"command": "npx",
"args": [
"-y",
"maven-indexer-mcp@latest"
],
"env": {
"MAVEN_REPO": "/Users/yourname/.m2/repository",
"GRADLE_REPO_PATH": "/Users/yourname/.gradle/caches/modules-2/files-2.1",
"INCLUDED_PACKAGES": "com.mycompany.*",
"MAVEN_INDEXER_CFR_PATH": "/path/to/cfr-0.152.jar",
"VERSION_RESOLUTION_STRATEGY": "semver"
}
}
}
}
If you prefer to run from source:
Clone the repository:
git clone https://github.com/tangcent/maven-indexer-mcp.git
cd maven-indexer-mcp
Install dependencies and build:
npm install
npm run build
Use the absolute path in your config:
{
"mcpServers": {
"maven-indexer": {
"command": "node",
"args": ["/absolute/path/to/maven-indexer-mcp/build/index.js"]
}
}
}
search_classes: Search for Java classes in the local Maven repository and Gradle caches.WHEN TO USE: 1. Internal/Private Code: You need to find a class from a company-internal library. 2. Obscure Libraries: You are using a less common public library that the AI doesn't know well. 3. Version Verification: You need to check exactly which version of a class is present locally.
Examples: "Show me the source of StringUtils", "What methods are available on DateTimeUtils?", "Where is this class imported from?".
Input: className (e.g., "StringUtils", "Json parser")
Output: List of matching classes with their artifacts.
get_class_details: Decompile and read the source code of external libraries/dependencies. Use this instead
of 'SearchCodebase' for classes that are imported but defined in JAR files.className (required), artifactId (optional), type ("signatures", "docs", "source")artifactId is omitted, the tool automatically selects the best available artifact (preferring those
with source code attached).search_artifacts: Search for artifacts in Maven/Gradle caches by coordinate (groupId, artifactId).search_implementations: Search for classes that implement a specific interface or extend a specific class.
Useful for finding SPI implementations in external libraries.className (e.g. "java.util.List")refresh_index: Trigger a re-scan of the Maven repository.npm testnpm run watchRun in your terminal:
claude mcp add maven-indexer-mcp -- npx Security
Low riskAutomated heuristic from public metadata — not a security guarantee.