npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@devds1989/t-rush-mcp

v1.0.9

Published

MCP server for t-rush. Exposes TODO/FIXME scanning and streak tracking to AI agents.

Readme

t-rush-mcp

Speedrun your technical debt, now powered by AI.

An MCP (Model Context Protocol) server that exposes the power of t-rush directly to AI coding assistants like Antigravity, Claude, and others. Let your AI agents find, prioritize, and fix TODO · FIXME · BUG comments across your codebase.

npm version license


Why t-rush-mcp?

AI coding agents are great at fixing bugs, but they often struggle to know what to work on when left unattended. t-rush-mcp bridges this gap by exposing your codebase's technical debt directly to the AI through standard MCP tools.

Agents can now query your project for open TODOs, filter them by keyword, prioritize the oldest debt, and even increment your personal t-rush completion streak when they successfully resolve them.


Features

  • find_todos: Feeds the agent all open TODO/FIXME comments so it can rank them by age and severity natively.
  • search_todos: Allows the agent to fuzzy-search existing comments to find specific tasks.
  • resolve_todo: Verifies the comment has been removed from the file and automatically increments the t-rush streak.
  • scan_todos_raw: Returns an unranked, raw list of all tech debt in a repository.
  • get_streak_status: Exposes the user's current streak and stats to the agent.
  • aggregate_debt: Summarizes the total debt across multiple local repositories.

Install & Configuration

1. Via npm (Global Install)

You can install the MCP server globally on your machine using npm:

npm install -g @devds1989/t-rush-mcp

2. Manual Configuration

To add this server manually to your client's configuration file (e.g. claude_desktop_config.json):

{
  "mcpServers": {
    "t-rush": {
      "command": "npx",
      "args": ["-y", "@devds1989/t-rush-mcp"]
    }
  }
}

Or test it directly via npx:

npx -y @devds1989/t-rush-mcp

3. Claude Code

To add this server directly to Anthropic's Claude Code CLI:

claude mcp add t-rush -- npx -y @devds1989/t-rush-mcp

Requirements: Node.js 18+


How it works

t-rush-mcp uses the shared @devds1989/trush-core logic to scan your codebase using the exact same parsers as the t-rush CLI. All streak updates and history modifications made by the AI agent are instantly synchronized with your local ~/.t-rush/data.json database.

When an AI agent resolves a TODO, it increments your streak—teamwork!


Supported languages

t-rush detects TODO and FIXME in all common comment styles:

| Style | Languages | |---|---| | // | JavaScript, TypeScript, Go, Rust, C, C++, Java, Kotlin, Swift, Dart | | # | Python, Ruby, Shell, YAML, R, Perl, Elixir, Crystal | | -- | SQL, Lua, Haskell, Ada | | % | Erlang, LaTeX | | ; | Lisp, Clojure, Assembly | | * | Inside /* */ block comments |


Contributing

Contributions are welcome. Please open an issue before submitting a large PR.

git clone https://github.com/DevDs1989/trush-mcp
cd trush-mcp
npm install
npm run build

License

MIT © Dev