Project Dependency Tools
Tools for querying Gradle dependencies and checking for updates.
inspect_dependencies
Inspects the project's resolved dependency graph, checks for updates, and audits plugins; use instead of manually parsing build files which misses transitive deps and dynamic versions.
- Update Check:
checkUpdates=true(default) detects newer versions — individual lines show[UPDATE AVAILABLE: X.Y.Z]; useupdatesOnly=truefor a flat summary:group:artifact: current → latestwith the project paths where each dep is used (forcescheckUpdates=true). UsestableOnly=trueto exclude pre-release versions. - [UPDATE CHECK SKIPPED]: Appears only for dependencies that were in scope for update checking but whose resolution genuinely failed — not for dependencies intentionally excluded from the update-check scope (e.g., transitive deps when
onlyDirect=true). - Plugin Auditing: Use
sourceSet="buildscript"to audit plugins. - Targeted: Use
dependencyas a full-string Kotlin regex to narrow report output and update-check candidates. Resolved modules matchgroup:name:version[:variant]; unresolved deps matchgroup:name; project deps matchproject::path; blank strings are ignored. - Consumers:
includeConsumers=trueadds direct reverse consumer edges (who directly depends on each dependency) and implies full-graph processing as ifonlyDirect=false;onlyDirect=trueis overridden (with a note) when both are passed. - Use
lookup_maven_versionsto find released versions;gradlefordependencyInsight.
Input schema
{
"properties": {
"projectRoot": {
"type": "string",
"description": "Absolute path to Gradle project root (parent of gradlew and settings.gradle). Defaults to GRADLE_MCP_PROJECT_ROOT when omitted."
},
"projectPath": {
"type": "string",
"description": "Specifying the Gradle project path (e.g., ':app'). Defaults to root project (':').",
"examples": [
":",
":my-project",
":my-project:subproject"
]
},
"configuration": {
"type": [
"string",
"null"
],
"description": "Filtering the report by a specific configuration (e.g., 'runtimeClasspath')."
},
"sourceSet": {
"type": [
"string",
"null"
],
"description": "Filtering the report by a specific source set (e.g., 'test')."
},
"dependency": {
"type": [
"string",
"null"
],
"description": "Full-string regex over group:name:version[:variant]; blank ignored."
},
"checkUpdates": {
"type": "boolean",
"description": "Checking project repositories for newer versions of all dependencies authoritatively. Always `true` when `updatesOnly=true`."
},
"onlyDirect": {
"type": "boolean",
"description": "Showing only direct dependencies in the summary. Set to false for the full tree. Also controls update-check scope: only direct deps are checked when `true`."
},
"includeConsumers": {
"type": "boolean",
"description": "Whether to include direct reverse consumer edges (who directly depends on each dependency). Implies full-graph processing as if `onlyDirect=false`; when `onlyDirect=true` is also passed, `includeConsumers` wins and a note is included in the response. Defaults to false."
},
"updatesOnly": {
"type": "boolean",
"description": "Returning a flat list of upgradeable dependencies: `group:artifact: current → latest` with project paths. Forces `checkUpdates=true`. Note: format changed from earlier versions — the dep key no longer includes the version and the separator changed from ASCII `->` to Unicode `→`."
},
"stableOnly": {
"type": "boolean",
"description": "Ignoring pre-release versions (alpha, beta, rc, etc.) when checking for updates."
},
"versionFilter": {
"type": [
"string",
"null"
],
"description": "Regex filter for considered update versions (e.g., '^1\\.' to match versions starting with 1)."
},
"pagination": {
"type": "object",
"required": [],
"properties": {
"offset": {
"type": "integer",
"minimum": -2147483648,
"maximum": 2147483647
},
"limit": {
"type": "integer",
"minimum": -2147483648,
"maximum": 2147483647
}
},
"description": "Pagination. offset = zero-based start index (default 0); limit = max items/lines to return."
},
"excludeBuildscript": {
"type": "boolean",
"description": "Whether to exclude buildscript dependencies from the report. Defaults to false."
}
},
"required": [],
"type": "object"
}