What is the io.github.rog0x/lint MCP server?
Style check, naming, complexity analysis for AI agents
How to install io.github.rog0x/lint
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"lint": {
"command": "npx",
"args": [
"-y",
"@rog0x/mcp-lint-tools"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"lint": {
"command": "npx",
"args": [
"-y",
"@rog0x/mcp-lint-tools"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"lint": {
"command": "npx",
"args": [
"-y",
"@rog0x/mcp-lint-tools"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"lint": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@rog0x/mcp-lint-tools"
]
}
}
}Claude Code
claude mcp add lint -- npx -y @rog0x/mcp-lint-tools