Skip to main content
Glama
thegridwork

gridwork-license

Official
by thegridwork

gridwork-license

MCP server that scans project dependencies for license compliance issues.

What it does

  • Scans node_modules and Python requirements for license information

  • Classifies 60+ licenses by risk level (copyleft, weak-copyleft, permissive, public-domain, proprietary)

  • Detects conflicts between dependency licenses and your project license

  • Flags AGPL dependencies in non-AGPL projects (SaaS risk)

  • Identifies unknown/undeclared licenses

Related MCP server: License Scanner MCP Server

Install

npx gridwork-license

MCP tools

Tool

Description

scan_licenses

Full license scan with conflict detection

quick_check

Risk breakdown and conflict count

classify_license

Classify any license string

find_copyleft

Find all copyleft dependencies

Claude Desktop config

{
  "mcpServers": {
    "gridwork-license": {
      "command": "npx",
      "args": ["-y", "gridwork-license"]
    }
  }
}

License

MIT — Gridwork

Available Tools

4 tools
classify_licenseB

Classify a license string — returns risk level (copyleft, weak-copyleft, permissive, public-domain, proprietary, unknown) and SPDX identifier.

ParametersJSON Schema
NameRequiredDescriptionDefault
licenseYesLicense name or SPDX identifier to classify (e.g., 'MIT', 'GPL-3.0', 'Apache 2.0')

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations are absent, so the description carries full responsibility for transparency. It discloses the outputs (risk level and SPDX identifier) but does not explain underlying behavior, such as how the classification is determined, whether it requires network access, or how errors are handled. The description is too sparse to inform the agent about side effects or limitations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, direct sentence that immediately communicates the tool's purpose and output. No redundant or unnecessary information. It is optimally concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (one parameter, no output schema), the description provides the core function but lacks details on return value structure or possible risk level values. While the output is summarized, an agent might need more specifics to interpret results correctly. The description is adequate but not fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage for the single parameter, including examples. The tool description does not add additional meaning beyond what the schema already provides. Baseline of 3 is appropriate since the schema is sufficient.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: classifying a license string and returning risk level and SPDX identifier. It uses a specific verb (Classify) and resource (license string). However, it does not differentiate from sibling tools like find_copyleft, quick_check, or scan_licenses, leaving ambiguity about when to use this tool over alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus its siblings. There is no mention of prerequisites, context, or exclusions. The agent must infer usage solely from the purpose statement.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

find_copyleftA

Find all copyleft-licensed dependencies in a project. Useful for quickly identifying viral license obligations.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesAbsolute path to the project directory

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It describes the tool as finding copyleft-licensed dependencies, indicating a read-only scan. However, it lacks details about recursion, error handling, or output format, but does not contradict any annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise, consisting of two sentences and 14 words with no fluff. Every word adds value, and the purpose is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple with one well-documented parameter and no output schema. The description covers purpose and a use case, but omits what the tool returns (e.g., list of files or licenses) and does not specify if scans are recursive. This is adequate but incomplete for a fully self-contained description.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for the single parameter 'path', which is well-described as 'Absolute path to the project directory'. The tool description adds no additional parameter semantics beyond the schema, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool finds copyleft-licensed dependencies in a project, with a specific verb and resource. It is distinct from siblings like 'classify_license' and 'scan_licenses' by focusing only on copyleft licenses, but does not explicitly differentiate them.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for quickly identifying viral license obligations, but does not provide explicit guidance on when not to use it or mention alternative sibling tools. Usage is implied but not fully specified.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

quick_checkB

Quick license overview — counts and risk breakdown without full details.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesAbsolute path to the project directory

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, and description doesn't disclose behavioral traits such as whether it performs network calls, data scope, or limitations. 'Without full details' is vague.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence conveying the tool's core purpose efficiently with no extraneous words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema; description mentions counts and risk breakdown but lacks details on return structure. Adequate for a simple overview tool but could be more complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers the 'path' parameter with a description; tool description does not add any new semantics beyond that. Baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states it provides a quick license overview with counts and risk breakdown, distinguishing from sibling tools like scan_licenses which likely provide full details.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit when-to-use vs alternatives, but the phrase 'without full details' implies it's for quick insights rather than comprehensive analysis. Sibling tools exist but no differentiation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

scan_licensesB

Scan a project's dependencies for license compliance issues. Detects copyleft conflicts, unknown licenses, and proprietary risks. Works with npm (node_modules), Python (requirements.txt), and more.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesAbsolute path to the project directory
formatNoOutput formatmarkdown

TDQS

B3.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided. Description discloses detection capabilities and supported ecosystems, but lacks details on permissions needed, runtime behavior, or whether the tool makes modifications. Provides moderate transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no redundancy. Front-loaded with purpose. Could be improved by structuring guidelines separately.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and limited parameters, the description adequately covers the tool's purpose, detection types, and supported ecosystems. Lacks examples or explicit output details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers 100% of parameters with descriptions. The tool description adds context about supported project types (npm, requirements.txt) that relates to the path parameter, but does not provide additional semantic detail beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states it scans dependencies for license compliance issues and lists specific detections (copyleft conflicts, unknown licenses, proprietary risks). Mentions supported ecosystems (npm, Python), but does not explicitly differentiate from sibling tools like classify_license or find_copyleft.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives. Does not mention prerequisites or limitations. Only implicit usage from the description.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 4 tool updatesv1.0.0
    • First observedclassify_license
    • First observedfind_copyleft
    • First observedquick_check
    • First observedscan_licenses

TDQS

A3.6/5.0
Disambiguation5/5

Each tool targets a distinct operation: license string classification, copyleft discovery, quick overview, and full compliance scan. No functional overlap exists.

Naming Consistency4/5

Three of four tools follow verb_noun pattern (classify_license, find_copyleft, scan_licenses). quick_check deviates slightly with adjective_noun, but remains clear and predictable.

Tool Count5/5

Four tools cover the core license management tasks without redundancy. The count is well-scoped for the server's purpose.

Completeness4/5

Covers classification, copyleft identification, overview, and full scan. Minor gaps like license policy configuration or update capabilities could exist, but core workflows are complete.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    A
    quality
    D
    maintenance
    Analyzes software licenses using Scancode data to help users identify problematic licenses, affected files, and compliance issues through the Model Context Protocol.
    5
    -
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables scanning of project dependencies across multiple package managers (npm, pip, cargo, etc.) and generates comprehensive markdown license reports. Supports automatic license detection from package registries with caching for improved performance.
    -
  • -
    license
    Not graded
    quality
    B
    maintenance
    Audits npm dependencies for license compatibility, catching copyleft and source-available traps before shipping.
    -
  • A
    license
    A
    quality
    F
    maintenance
    Scans npm project dependencies for license compliance issues, detecting GPL contamination and generating detailed reports.
    2
    59
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/thegridwork/license'

If you have feedback or need assistance with the MCP directory API, please join our Discord server