π¦
io.github.bighippoman/license-compliance
Scan npm dependencies for license compliance issues. Catch GPL contamination.
0 installs
Trust: 37 β Low
Devtools
Ask AI about io.github.bighippoman/license-compliance
Powered by Claude Β· Grounded in docs
I know everything about io.github.bighippoman/license-compliance. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
license-compliance-mcp
MCP server that scans npm project dependencies for license compliance issues. Catch GPL contamination before code ships.
Tools
check-licenses
Scan a project's npm dependencies against a license policy and get a detailed compliance report.
Parameters:
path(required) β Absolute path to the project rootpolicy(optional, default:"permissive") β Policy preset or custom SPDX expression"permissive"β Only MIT, ISC, BSD, Apache-2.0, etc."weak-copyleft"β Adds LGPL, MPL-2.0, EPL-2.0"copyleft"β Adds GPL, AGPL- Custom:
"(MIT OR Apache-2.0)"β Any valid SPDX expression
explain-license
Get a plain-language explanation of any SPDX license β permissions, conditions, limitations, compatibility, and gotchas.
Parameters:
license(required) β SPDX identifier (e.g.,"MIT","GPL-3.0-only","Apache-2.0")
Install
Claude Code
claude mcp add license-compliance -- npx -y license-compliance-mcp
Claude Desktop / Cursor
Add to your config (claude_desktop_config.json or .cursor/mcp.json):
{
"mcpServers": {
"license-compliance": {
"command": "npx",
"args": ["-y", "license-compliance-mcp"]
}
}
}
How It Works
- Scans
node_modulesusinglicense-checker-rseidelsohn - Normalizes license strings to valid SPDX using
spdx-correct - Evaluates each package against the policy using
spdx-satisfies - Traces dependency chains to show how problematic packages entered the project
- Generates a markdown report grouped by severity (critical > warning > info)
Requirements
- Node.js >= 18
- Project must have
node_modulesinstalled (npm install)
