uninstall-mcp
Remove specific packages from the MCP server environment with optional forced uninstallation to handle configuration conflicts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
force | No | Force uninstallation even if referenced by configs | |
packageName | Yes | Package name to uninstall |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"force": {
"description": "Force uninstallation even if referenced by configs",
"type": "boolean"
},
"packageName": {
"description": "Package name to uninstall",
"type": "string"
}
},
"required": [
"packageName"
],
"type": "object"
}