mcp_ScancodeMCP_get_license_clause_summary
Generates a clause-by-clause legal summary of software licenses to identify obligations, risks, and compatibility for compliance analysis.
Instructions
Clause-by-clause legal summary of a license (obligations, risks, compatibility, etc).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
licenseName | Yes | The license name to summarize (e.g., MIT, GPL-3.0, unknown) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"licenseName": {
"description": "The license name to summarize (e.g., MIT, GPL-3.0, unknown)",
"type": "string"
}
},
"required": [
"licenseName"
],
"type": "object"
}