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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@przeprogramowani/10x-mvp-tracker

v1.0.1

Published

MCP tool for tracking MVP project completion status. Analyzes Astro projects against 10 criteria and generates progress reports.

Readme

10x MVP Tracker

10xMVP Tracker is a MCP (Model Context Protocol) server for helping 10xDevs.pl students monitor their MVP web application project progress. It integrates with AI tools and is distributed as an NPM package.

Features

  • ✅ Analyzes projects against 7 predefined criteria
  • 📊 Generates progress reports with completion percentage
  • 💡 Provides prioritized improvement recommendations
  • 📝 Creates ready-to-copy submission summaries

Quick Start

  1. Install MCP server in your AI tool

👉 Guidelines for most popular AI Tools below

  1. Ask your AI assistant:

    "Please report status of my project with check-mvp tool"

We recommend using grok-code-fast-1 model with this tool for best results (price to quality ratio).

Installation & Setup

Cursor IDE

Install MCP Server

Add the following configuration to your .cursor/mcp.json file:

{
  "mcpServers": {
    "10x-mvp-tracker": {
      "command": "npx",
      "args": ["@przeprogramowani/10x-mvp-tracker"],
      "transport": "stdio"
    }
  }
}

You can also use "New MCP Server" button in Cursor Settings > Tools & MCP.

Claude Code

Run the following command in your project directory:

claude mcp add 10x-mvp-tracker npx '@przeprogramowani/10x-mvp-tracker'

You can alternatively create .mcp.json file in your project directory with the following content:

{
  "mcpServers": {
    "10x-mvp-tracker": {
      "command": "npx",
      "args": ["@przeprogramowani/10x-mvp-tracker"],
      "transport": "stdio"
    }
  }
}

Jetbrains AI Assistant

Go to Settings | Tools | AI Assistant | Model Context Protocol (MCP) and add following "as JSON" configuration:

{
  "mcpServers": {
    "10x-mvp-tracker": {
      "command": "npx",
      "args": ["@przeprogramowani/10x-mvp-tracker"]
    }
  }
}

For working directory, add path to project root.

GitHub Copilot

Create a .vscode/mcp.json file in the root of your project with the following content:

{
  "mcpServers": {
    "10x-mvp-tracker": {
      "command": "npx",
      "args": ["@przeprogramowani/10x-mvp-tracker"],
      "transport": "stdio"
    }
  }
}

Windsurf

Create an mcp_config.json file in your project's root directory and add the following configuration:

{
  "mcpServers": {
    "10x-mvp-tracker": {
      "command": "npx",
      "args": ["@przeprogramowani/10x-mvp-tracker"],
      "transport": "stdio"
    }
  }
}

Usage

Once installed and configured, you can invoke the tool by asking your AI assistant:

"Please report status of my project with check-mvp tool"

Analysis Criteria

The tool checks your project against these 7 criteria:

  1. Documentation - README + Product Requirements Document (PRD)
  2. Login functionality - Authentication implementation
  3. Test presence - Unit/integration tests
  4. Business logic - Core application logic
  5. CI/CD configuration - Continuous Integration/Deployment setup
  6. Database setup - Data persistence layer
  7. API endpoints - Backend API implementation

Output Format

The tool generates a structured Markdown report that includes:

  • ✅/❌ status for each criterion
  • Overall completion percentage
  • Priority improvements section
  • Ready-to-copy submission summary
  • Generation timestamp

Development

Prerequisites

npm install

Development Mode

npm run dev

Testing with FastMCP Inspector

npx fastmcp inspect src/index.ts

Building

npm run build

Running Tests

npm run check  # Runs lint and format check

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Author

Przeprogramowani

Repository

https://github.com/przeprogramowani/10x-mvp-tracker