TechDebtMCP v2.0.0: MCP server for technical debt analysis across 14 languages

TechDebtMCP v2.0.0 is an MCP server that connects Claude to your codebase to analyze technical debt. Once connected, you can ask Claude questions about technical debt, security issues, and code quality.
Key Features
- Analyzes code quality issues, security vulnerabilities, and maintainability problems across 14 programming languages: JS/TS, Python, Java, Swift, Kotlin, Go, Rust, C/C++, C#, Ruby, PHP, and more
- Provides SQALE metrics including A–E debt ratings, remediation time estimates, and debt ratios
- Includes 14 specialized SwiftUI checks for state management, retain cycles, deprecated patterns, etc.
- Performs dependency analysis across 10 package ecosystems
- Supports custom rules via
.techdebtrc.jsonfor defining regex-based checks
Example Queries
Once connected, you can ask Claude:
- "What's the worst technical debt in this project?"
- "Give me a SQALE rating for this repo"
- "What are my top 5 security issues?"
- "Scan this file and tell me what needs fixing first"
Setup
Add to Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"tech-debt-mcp": {
"command": "npx",
"args": ["-y", "tech-debt-mcp@latest"]
}
}
}Or use Claude Code:
claude mcp add tech-debt-mcp -- npx -y tech-debt-mcp@latestThe tool scans itself regularly and currently holds an A rating with a 2.9% debt ratio.
📖 Read the full source: r/ClaudeAI
👀 See Also

Multi-operator Claude Code: Hub-based architecture for multi-agent sessions
A hub-based setup for Claude Code enables multiple people to attach to the same session, route subtasks across repos, and run headless agents in Docker containers.

Feynman: Open Source Research Agent with Paper-Codebase Audit Tool
Feynman is an open source research agent CLI that dispatches four subagents in parallel to answer research questions and includes a unique audit tool that compares paper claims against actual codebases. It features one-command installation, MIT license, and runs on pi for agent runtime with alphaxiv for paper search.

MetaBot: Open-Source Bridge Connects Claude Code to Telegram, Feishu, and WeChat
MetaBot is an open-source TypeScript bridge that connects the Claude Code Agent SDK to messaging platforms like Telegram, Feishu, and WeChat. It provides persistent memory, scheduled tasks, multi-agent collaboration, and real-time streaming of tool calls.

Project Headroom: Netflix Engineer's Open Source Tool Slashes AI Token Costs by 90%
Netflix senior engineer Tejas Chopra created Project Headroom, an open source proxy that compresses AI context input by up to 90%, saving an estimated $700,000 across users since January 2026. It runs locally on port 8787 and wraps any LLM CLI.