knip-mcp-server
Version:
MCP server for knip.dev integration to help AI agents identify and clean up unused code
69 lines (68 loc) • 1.67 kB
JSON
{
"name": "knip-mcp-server",
"version": "0.1.4",
"type": "module",
"description": "MCP server for knip.dev integration to help AI agents identify and clean up unused code",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"knip-mcp-server": "build/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsx src/index.ts",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "echo 'Linting disabled - TypeScript compiler and tests provide sufficient quality checks'",
"type-check": "tsc --noEmit"
},
"keywords": [
"mcp",
"knip",
"code-cleanup",
"unused-code",
"typescript",
"javascript",
"ai-agent",
"model-context-protocol",
"cursor",
"ai-assistant"
],
"author": {
"name": "Genar Trias",
"url": "https://github.com/gtrias"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.1",
"knip": "^5.61.2",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"build/**/*",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gtrias/knip-mcp-server.git"
},
"bugs": {
"url": "https://github.com/gtrias/knip-mcp-server/issues"
},
"homepage": "https://github.com/gtrias/knip-mcp-server#readme"
}