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

mvp24hours-dotnet-mcp

v1.0.7

Published

MCP Server for Mvp24Hours .NET Framework - Intelligent documentation routing for AI agents

Readme

Mvp24Hours .NET MCP Server

Intelligent documentation routing for AI agents working with the Mvp24Hours .NET framework.

Problem Solved

The Mvp24Hours framework has extensive documentation covering:

  • Multiple architecture templates (Minimal API, N-Layers, CQRS, DDD, Microservices, etc.)
  • Multiple database options (SQL Server, PostgreSQL, MongoDB, Redis)
  • AI implementation approaches (Semantic Kernel, SK Graph, Agent Framework)
  • .NET 9 modernization patterns
  • CQRS/Mediator patterns
  • Observability and messaging

The problem: Loading all documentation at once overwhelms AI agents, causing them to lose context or provide incomplete answers.

The solution: This MCP server provides specialized tools that act as "intelligent routers", returning only the relevant documentation based on specific queries.

Installation

From NPM (Recommended)

npm install -g mvp24hours-dotnet-mcp

From Source

git clone https://github.com/kallebelins/mvp24hours-dotnet-mcp
cd mvp24hours-dotnet-mcp
npm install
npm run build

Configuration

Cursor IDE

Add to your ~/.cursor/mcp.json:

{
  "mcpServers": {
    "mvp24hours-dotnet": {
      "command": "npx",
      "args": ["mvp24hours-dotnet-mcp"]
    }
  }
}

Or if installed from source:

{
  "mcpServers": {
    "mvp24hours-dotnet": {
      "command": "node",
      "args": ["path/to/mvp24hours-dotnet-mcp/dist/index.js"]
    }
  }
}

Claude Desktop

Add to your Claude Desktop config:

{
  "mcpServers": {
    "mvp24hours-dotnet": {
      "command": "npx",
      "args": ["mvp24hours-dotnet-mcp"]
    }
  }
}

Available Tools

| Tool | Purpose | |------|---------| | mvp24h_get_started | Framework overview and quick start | | mvp24h_architecture_advisor | Recommends architecture based on requirements | | mvp24h_database_advisor | Recommends database and patterns | | mvp24h_cqrs_guide | CQRS/Mediator documentation | | mvp24h_ai_implementation | AI approach selection (SK, SKG, Agent Framework) | | mvp24h_modernization_guide | .NET 9 features and patterns | | mvp24h_observability_setup | OpenTelemetry configuration | | mvp24h_messaging_patterns | Async messaging (RabbitMQ, Channels) | | mvp24h_core_patterns | Core module (Guard Clauses, Value Objects, etc.) | | mvp24h_infrastructure_guide | Pipeline, Caching, WebAPI, CronJob | | mvp24h_reference_guide | Mapping, Validation, Specification, Migration | | mvp24h_get_template | Retrieves specific template code |

Usage Examples

Getting Started

User: I want to create a .NET project with Mvp24Hours

AI calls: mvp24h_get_started({ focus: "overview" })
→ Returns: Framework overview, quick reference, and next steps

Choosing Architecture

User: I need to create an enterprise app with complex business rules

AI calls: mvp24h_architecture_advisor({
  complexity: "high",
  business_rules: "complex",
  team_size: "large"
})
→ Returns: Clean Architecture recommendation with project structure

Database Configuration

User: I need to use PostgreSQL with transactions

AI calls: mvp24h_database_advisor({
  provider: "postgresql",
  requirements: ["transactions", "complex-queries"]
})
→ Returns: PostgreSQL setup, EF Core config, Unit of Work pattern

AI Implementation

User: I want to add a chatbot to my app

AI calls: mvp24h_ai_implementation({ use_case: "chatbot" })
→ Returns: Semantic Kernel Chat Completion template

Getting Specific Template

User: Show me the CQRS template

AI calls: mvp24h_get_template({ template_name: "cqrs" })
→ Returns: Complete CQRS project structure and code

Tool Flow

┌─────────────────────────────────────────────────────────────────┐
│                        User Request                             │
└─────────────────────────────┬───────────────────────────────────┘
                              │
                              ▼
┌─────────────────────────────────────────────────────────────────┐
│                    mvp24h_get_started                           │
│                 (Overview & Direction)                          │
└─────────────────────────────┬───────────────────────────────────┘
                              │
         ┌────────────────────┼────────────────────┐
         │                    │                    │
         ▼                    ▼                    ▼
┌─────────────────┐  ┌─────────────────┐  ┌─────────────────┐
│  architecture   │  │    database     │  │      ai         │
│    advisor      │  │    advisor      │  │ implementation  │
└────────┬────────┘  └────────┬────────┘  └────────┬────────┘
         │                    │                    │
         └────────────────────┼────────────────────┘
                              │
                              ▼
┌─────────────────────────────────────────────────────────────────┐
│                    mvp24h_get_template                          │
│                   (Specific Code)                               │
└─────────────────────────────────────────────────────────────────┘

Architecture

src/
├── index.ts                    # MCP Server entry point
├── tools/
│   ├── get-started.ts          # Framework overview
│   ├── architecture-advisor.ts # Architecture selection
│   ├── database-advisor.ts     # Database configuration
│   ├── cqrs-guide.ts           # CQRS/Mediator patterns
│   ├── ai-implementation.ts    # AI approach selection
│   ├── modernization-guide.ts  # .NET 9 features
│   ├── observability-setup.ts  # Telemetry configuration
│   ├── messaging-patterns.ts   # Async messaging
│   ├── core-patterns.ts        # Core module patterns
│   ├── infrastructure-guide.ts # Pipeline, WebAPI, CronJob
│   ├── reference-guide.ts      # Mapping, Validation, Specification
│   └── get-template.ts         # Template retrieval
└── utils/
    └── doc-loader.ts           # Documentation loader

Why Multiple Tools?

Instead of one large tool that dumps all documentation, specialized tools:

  1. Reduce context size: Each tool returns only relevant content
  2. Improve accuracy: Focused responses are more precise
  3. Enable decision trees: Tools can recommend other tools
  4. Support iteration: Users can drill down progressively

Related Projects

License

MIT License - See LICENSE for details.