mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-30 06:22:04 +00:00
Adds zero-configuration anonymous usage statistics to track: - Number of active users with deterministic user IDs - Which MCP tools AI agents use most - What workflows are built (sanitized to protect privacy) - Common errors and issues Key features: - Zero-configuration design with hardcoded write-only credentials - Privacy-first approach with comprehensive data sanitization - Opt-out support via config file and environment variables - Docker-friendly with environment variable support - Multi-process safe with immediate flush strategy - Row Level Security (RLS) policies for write-only access Technical implementation: - Supabase backend with anon key for INSERT-only operations - Workflow sanitization removes all sensitive data - Environment variables checked for opt-out (TELEMETRY_DISABLED, etc.) - Telemetry enabled by default but respects user preferences - Cleaned up all debug logging for production readiness 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
68 lines
1.7 KiB
TypeScript
68 lines
1.7 KiB
TypeScript
#!/usr/bin/env npx tsx
|
|
/**
|
|
* Test workflow sanitizer
|
|
*/
|
|
|
|
import { WorkflowSanitizer } from '../src/telemetry/workflow-sanitizer';
|
|
|
|
const testWorkflow = {
|
|
nodes: [
|
|
{
|
|
id: 'webhook1',
|
|
type: 'n8n-nodes-base.webhook',
|
|
name: 'Webhook',
|
|
position: [0, 0],
|
|
parameters: {
|
|
path: '/test-webhook',
|
|
httpMethod: 'POST'
|
|
}
|
|
},
|
|
{
|
|
id: 'http1',
|
|
type: 'n8n-nodes-base.httpRequest',
|
|
name: 'HTTP Request',
|
|
position: [250, 0],
|
|
parameters: {
|
|
url: 'https://api.example.com/endpoint',
|
|
method: 'GET',
|
|
authentication: 'genericCredentialType',
|
|
sendHeaders: true,
|
|
headerParameters: {
|
|
parameters: [
|
|
{
|
|
name: 'Authorization',
|
|
value: 'Bearer sk-1234567890abcdef'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
],
|
|
connections: {
|
|
'webhook1': {
|
|
main: [[{ node: 'http1', type: 'main', index: 0 }]]
|
|
}
|
|
}
|
|
};
|
|
|
|
console.log('🧪 Testing Workflow Sanitizer\n');
|
|
console.log('Original workflow has', testWorkflow.nodes.length, 'nodes');
|
|
|
|
try {
|
|
const sanitized = WorkflowSanitizer.sanitizeWorkflow(testWorkflow);
|
|
|
|
console.log('\n✅ Sanitization successful!');
|
|
console.log('\nSanitized output:');
|
|
console.log(JSON.stringify(sanitized, null, 2));
|
|
|
|
console.log('\n📊 Metrics:');
|
|
console.log('- Workflow Hash:', sanitized.workflowHash);
|
|
console.log('- Node Count:', sanitized.nodeCount);
|
|
console.log('- Node Types:', sanitized.nodeTypes);
|
|
console.log('- Has Trigger:', sanitized.hasTrigger);
|
|
console.log('- Has Webhook:', sanitized.hasWebhook);
|
|
console.log('- Complexity:', sanitized.complexity);
|
|
} catch (error) {
|
|
console.error('❌ Sanitization failed:', error);
|
|
}
|