StacksFinder
create_audit
Create a technical debt audit for a list of technologies. Analyzes for deprecated packages, security vulnerabilities, EOL versions.
Remote hoklims/stacksfinder-mcp
Other tools also called create_audit?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name for the audit report"
},
"technologies": {
"type": "array",
"items": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "string"
},
"category": {
"type": "string"
}
}
},
"description": "Technologies to audit"
}
}
}