
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
The definitive Universal Commerce Protocol (UCP) validation tool. CLI + Library + API + MCP Server.
The definitive Universal Commerce Protocol (UCP) validation tool.
Validate any UCP implementation with 58 checks across 7 categories. CLI + Library.
npx ucplint https://forever21.com
--auth-token for MCP endpoints# Run directly with npx (no install needed)
npx ucplint https://example.com
# Or install globally
npm install -g ucplint
# Or add to your project
npm install ucplint
# Basic validation
ucplint https://merchant.example.com
# JSON output (for CI/CD)
ucplint https://merchant.example.com --format json
# Save report to file
ucplint https://merchant.example.com --output report.json
# Skip specific categories
ucplint https://merchant.example.com --skip oauth,webhook
# Strict mode (warnings become errors)
ucplint https://merchant.example.com --strict
# Custom timeout (seconds)
ucplint https://merchant.example.com --timeout 60
# Authenticated MCP testing (with OAuth token)
ucplint https://merchant.example.com --auth-token "your-bearer-token"
import { validate, quickCheck } from 'ucplint';
// Full validation
const result = await validate('https://merchant.example.com');
console.log(result.score); // 0-100
console.log(result.grade); // A, B, C, D, or F
console.log(result.valid); // true/false
// Quick check (just pass/fail)
const quick = await quickCheck('https://merchant.example.com');
console.log(quick.valid); // true/false
console.log(quick.score); // 0-100
Validates the /.well-known/ucp discovery document:
Validates transport layer security:
Validates data formats:
Validates OAuth 2.0 configuration:
Validates webhook signing configuration:
Tests actual endpoint functionality:
Read-only protocol conformance validation:
Note: Many conformance checks require authentication. Use
--auth-tokento enable full testing.
UCP Validation Report
──────────────────────────────────────────────────
Target: https://forever21.com
UCP Version: 2026-01-11
──────────────────────────────────────────────────
Score: 87/100 Grade: B Valid: No
──────────────────────────────────────────────────
Category Scores
Category Score Passed Total
discovery 96% 9 10
transport 80% 7 8
schema 75% 6 8
oauth 100% 8 8
webhook 90% 7 8
operations 77% 6 8
conformance 75% 1 2
──────────────────────────────────────────────────
| Option | Description | Default |
|---|---|---|
-f, --format <format> | Output format: text, json, sarif | text |
-o, --output <file> | Write output to file | stdout |
--no-color | Disable colored output | - |
-s, --strict | Treat warnings as errors | false |
--skip <categories> | Skip categories (comma-separated) | - |
-t, --timeout <seconds> | Request timeout | 30 |
--verbose | Include verbose details | false |
--auth-token <token> | Bearer token for authenticated MCP testing | - |
-v, --version | Show version | - |
validate(url, options?)Performs full validation and returns detailed results.
import { validate } from 'ucplint';
const result = await validate('https://example.com', {
timeout: 30000, // Request timeout in ms
strict: false, // Treat warnings as errors
skipCategories: [], // Categories to skip
authToken: '', // Bearer token for MCP endpoints
});
// Result structure
interface ValidationResult {
version: string; // Tool version
timestamp: string; // ISO 8601 timestamp
duration: number; // Total time in ms
target: {
url: string;
ucpVersion?: string;
};
valid: boolean; // Passes all critical checks
score: number; // 0-100
grade: 'A' | 'B' | 'C' | 'D' | 'F';
categories: Record<string, CategoryResult>;
errors: ValidationIssue[];
warnings: ValidationIssue[];
recommendations: string[];
checks: CheckResult[];
}
quickCheck(url, options?)Returns just pass/fail and score.
import { quickCheck } from 'ucplint';
const result = await quickCheck('https://example.com');
// { valid: boolean, score: number, grade: string }
listChecks()Returns all available checks.
import { listChecks } from 'ucplint';
const checks = listChecks();
// Array of check definitions
| Grade | Score | Meaning |
|---|---|---|
| A | 90-100 | Excellent - fully compliant |
| B | 80-89 | Good - minor issues |
| C | 70-79 | Fair - some issues to address |
| D | 60-69 | Poor - significant issues |
| F | 0-59 | Failing - critical issues |
Critical checks (auto-fail if missing):
discovery.wellknown-accessiblediscovery.version-presenttransport.https-onlyoperations.endpoints-use-https| Code | Meaning |
|---|---|
| 0 | Valid (all critical checks pass) |
| 1 | Invalid (critical checks failed) |
| 2 | Error (crash/exception) |
name: UCP Validation
on: [push, pull_request]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npx ucplint https://your-site.com --format json --output ucp-report.json
- uses: actions/upload-artifact@v4
with:
name: ucp-report
path: ucp-report.json
The Universal Commerce Protocol (UCP) enables AI agents to make purchases on behalf of users safely and securely. It defines standards for:
Contributions are welcome! Please read our Contributing Guide first.
# Clone the repo
git clone https://github.com/saitejar/ucplint.git
cd ucplint
# Install dependencies
npm install
# Run in development
npm run dev -- check https://example.com
# Run tests
npm test
# Build
npm run build
FAQs
The definitive Universal Commerce Protocol (UCP) validation tool. CLI + Library + API + MCP Server.
We found that ucplint demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.