@felixgeelhaar/cclint
Version:
Catch CLAUDE.md drift before Claude misbehaves. Lints CLAUDE.md, skills, subagents, and hooks for Claude Code projects.
8 lines • 330 B
JavaScript
import { Command } from 'commander';
import { startServer } from '../../mcp/server.js';
export const mcpCommand = new Command('mcp')
.description('Run cclint as a Model Context Protocol (MCP) stdio server for Claude Desktop / Claude Code')
.action(async () => {
await startServer();
});
//# sourceMappingURL=mcp.js.map