nestjs-mcp-server

nestjs-mcp-server

A production-ready NestJS backend template with built-in MCP server enabling AI agents to query your data via standardized protocol, featuring RAG pipeline, semantic search, and comprehensive developer tooling.

Category
Visit Server

README

NestJS MCP Server Template

<div align="center">

NestJS TypeScript Fastify PostgreSQL Redis Docker

Production-ready NestJS boilerplate with Model Context Protocol (MCP) server, RAG capabilities, and comprehensive developer tooling

Features โ€ข Quick Start โ€ข Documentation โ€ข License

</div>


๐Ÿš€ Overview

A comprehensive, production-ready NestJS template that combines modern backend architecture with AI capabilities through the Model Context Protocol (MCP). Perfect for building intelligent applications, LMS platforms, content management systems, or any project requiring semantic search and AI integration.

Note: This template extends ultimate-nestjs-boilerplate by @niraj-khatiwada with MCP server, RAG pipeline, and AI capabilities. All credits for the excellent foundation go to the original author.

What Makes This Different?

  • ๐Ÿค– Built-in MCP Server: Expose your data to AI agents with standardized protocol
  • ๐Ÿ” RAG Pipeline: Semantic search with pgvector and local embeddings (no API costs)
  • ๐Ÿ” Modern Auth: Better Auth with support for OAuth, 2FA, magic links, and more
  • โšก High Performance: Fastify adapter (2x faster than Express)
  • ๐ŸŽฏ Production Ready: Docker, monitoring, graceful shutdown, health checks
  • ๐Ÿ› ๏ธ Developer Experience: Swagger, GraphQL playground, hot reload, Bull Board UI

โœจ Features

Core Framework

  • โœ… NestJS with Fastify adapter for high performance
  • โœ… TypeScript for type safety and better DX
  • โœ… PostgreSQL with TypeORM for robust data management
  • โœ… Redis for caching and queue management

Authentication & Security

  • โœ… Better Auth: Complete auth solution supporting:
    • Email/Password, OAuth, Magic Links, Passkeys
    • Two-Factor Authentication (2FA)
    • Role-based access control (RBAC)
    • Session management
  • โœ… API Key Management: Secure programmatic access with SHA-256 hashing
  • โœ… Rate Limiting: Redis-backed request throttling
  • โœ… Input Validation: class-validator with custom decorators

AI & Search Capabilities

  • โœ… MCP Server: Model Context Protocol implementation for AI agents
  • โœ… RAG Pipeline: Retrieval-Augmented Generation with semantic search
  • โœ… pgvector: PostgreSQL extension for vector similarity search
  • โœ… Local Embeddings: Hugging Face Transformers (no API costs)
  • โœ… Content Chunking: Intelligent text splitting for better search accuracy

API Protocols

  • โœ… REST API: Versioned endpoints with Swagger documentation
  • โœ… GraphQL API: Apollo Server with type-safe schema
  • โœ… WebSocket: Socket.io with Redis adapter for clustering

Background Processing

  • โœ… BullMQ: Redis-based job queue with retry logic
  • โœ… Worker Process: Dedicated worker for heavy computations
  • โœ… Bull Board: Web UI for monitoring jobs and queues

Email System

  • โœ… React Email: Beautiful, responsive email templates
  • โœ… MailPit: Local SMTP server for testing
  • โœ… Auto-compilation: TSX to HTML at build time

Developer Tools

  • โœ… Swagger UI: Interactive API documentation
  • โœ… OpenAPI Codegen: Auto-generate frontend API clients
  • โœ… Dependency Graph: Visualize module dependencies
  • โœ… ERD Generator: Database schema visualization
  • โœ… Hot Reload: Fast development iteration

DevOps & Monitoring

  • โœ… Docker: Dev and prod configurations with docker-compose
  • โœ… Prometheus + Grafana: Optional monitoring dashboards
  • โœ… Pino Logging: Structured JSON logs
  • โœ… Health Checks: Kubernetes-ready endpoints
  • โœ… Graceful Shutdown: Zero downtime deployments
  • โœ… GitHub Actions: CI/CD pipeline included

Code Quality

  • โœ… ESLint + Prettier: Code formatting and linting
  • โœ… Husky + Commitlint: Git hooks for quality enforcement
  • โœ… Jest: Unit and E2E testing
  • โœ… SWC: Fast compilation (faster than Webpack)

Other Features

  • โœ… i18n: Internationalization support
  • โœ… File Uploads: Local and AWS S3 support
  • โœ… Pagination: Offset and cursor-based
  • โœ… Sentry Integration: Error tracking (ready to configure)
  • โœ… pnpm: Fast, disk-efficient package manager

๐ŸŽฏ Use Cases

This template is perfect for:

  • ๐Ÿ“š Learning Management Systems (LMS): Course content with semantic search
  • ๐Ÿค– AI-Powered Applications: Chat agents, document search, RAG systems
  • ๐Ÿ“ Content Management: Blog, documentation, knowledge bases
  • ๐Ÿข SaaS Platforms: Multi-tenant apps with auth and API keys
  • ๐Ÿ”ง Internal Tools: Admin dashboards, background job processing
  • ๐Ÿš€ Startup MVPs: Production-ready foundation to move fast

๐Ÿš€ Quick Start

Prerequisites

  • Node.js 18+ or Bun
  • Docker & Docker Compose
  • pnpm (recommended) or npm

1. Use This Template

Click the "Use this template" button on GitHub or:

git clone https://github.com/branch42-team/nestjs-mcp-server.git my-project
cd my-project
pnpm install

2. Environment Setup

cp .env.example .env
cp .env.docker.example .env.docker

Edit .env files with your configuration.

3. Start Development Environment

# Start all services (PostgreSQL, Redis, MailPit, etc.)
pnpm docker:dev:up

# Run database migrations
docker exec -it nestjs-server sh
pnpm migration:up
exit

4. Access Your Services

  • API Swagger: http://localhost:3000/swagger
  • GraphQL Playground: http://localhost:3000/graphql
  • Bull Board (Queue UI): http://localhost:3000/bullboard
  • MailPit (Email Testing): http://localhost:18025
  • Prometheus (Monitoring): http://localhost:9090 (if enabled)
  • Grafana (Dashboards): http://localhost:3001 (if enabled)

5. Create Your First User

Visit Swagger UI and use:

  • POST /api/auth/sign-up/email to create an account
  • POST /api/auth/sign-in/email to login

๐Ÿ“š Documentation

Core Features

๐Ÿ”’ Better Auth

Modern authentication framework handling all auth patterns out of the box:

  • Email/Password: Traditional auth with secure password hashing
  • OAuth: Google, GitHub, and more (easily extensible)
  • Magic Links: Passwordless authentication
  • Passkeys: WebAuthn support for biometric auth
  • Two-Factor Authentication: TOTP-based 2FA
  • Role-Based Access Control: Admin/User roles with guards
  • Session Management: Redis-backed sessions with auto-refresh

Learn more about Better Auth โ†’

๐Ÿค– MCP Server

Model Context Protocol server implementation enabling AI agents to query your data:

Key Features:

  • 6 pre-built tools for course/content management
  • API key authentication with user-scoped permissions
  • Enrollment-based authorization (example use case)
  • Semantic search with RAG pipeline
  • Interactive CLI client included

Quick Example:

  1. Create API key via Swagger: POST /api/v1/user/api-keys
  2. Setup CLI:
    cd mcp-client
    echo "MCP_API_KEY=your-key" > .env
    pnpm install && pnpm dev
    
  3. Query naturally:
    > list courses
    > find lessons about variables
    > search typescript
    

Documentation:

๐Ÿ”‘ API Key Management

Secure programmatic access for integrations and MCP clients:

Endpoints:

  • POST /api/v1/user/api-keys - Create new key
  • GET /api/v1/user/api-keys - List your keys
  • GET /api/v1/user/api-keys/:id - Get key details
  • DELETE /api/v1/user/api-keys/:id - Revoke key

Security Features:

  • SHA-256 hashed storage (raw key shown once)
  • Optional expiration dates
  • Usage tracking (lastUsedAt)
  • Instant revocation
  • User-scoped permissions

๐Ÿš€ Automatic Frontend API Generation

Generate type-safe API clients from your Swagger spec:

# On your frontend project
pnpm codegen

This auto-generates all API calls with TanStack Query hooks. Import and use immediately:

import { useGetUserProfile } from '@/api/generated';

function Profile() {
  const { data, isLoading } = useGetUserProfile();
  // Fully typed, with caching, refetching, etc.
}

OpenAPI Codegen

๐Ÿšจ Server & Database Monitoring

Optional Prometheus + Grafana setup for production monitoring:

Enable monitoring:

# In .env
COMPOSE_PROFILES=monitoring

Metrics tracked:

  • HTTP request duration/rate
  • Database connection pool stats
  • Queue job latency and throughput
  • Memory and CPU usage
  • Custom business metrics

Dashboards:

Server Monitoring: Server Monitoring

Database Monitoring: Database Monitoring

๐Ÿ“ฌ Email Management

React Email for beautiful, testable email templates:

  • Design emails in React with type safety
  • Preview all templates in local web UI
  • Automatic compilation to HTML at build time
  • Spam, accessibility, and responsiveness checks

Commands:

# Preview templates in browser
pnpm email:dev

# Auto-compiled during build (handled automatically)
pnpm email:build

MailPit for local testing:

  • SMTP server runs automatically in dev mode
  • Web UI at http://localhost:18025
  • Catch all outgoing emails
  • No real emails sent during development

MailPit


๐Ÿณ Docker Commands

Development

# Start all services
pnpm docker:dev:up

# Stop all services
pnpm docker:dev:down

# View logs
docker logs nestjs-server -f

Production

# Build and start production containers
pnpm docker:prod:up

# Stop production containers
pnpm docker:prod:down

Deployment

# Quick deploy script
sh ./bin/deploy.sh

# Or use GitHub Actions
# Workflow: .github/workflows/main.yml

๐Ÿ› ๏ธ Development Tools

Dependency Graph

Visualize module dependencies and detect circular references:

# Requires Graphviz: brew install graphviz

# All dependencies
pnpm graph:app

# Only circular dependencies
pnpm graph:circular

Dependency Graph

Database ERD

Generate entity relationship diagrams:

pnpm erd:generate

ERD


๐Ÿ—๏ธ Project Structure

.
โ”œโ”€โ”€ src/
โ”‚   โ”œโ”€โ”€ api/              # API modules (courses, users, etc.)
โ”‚   โ”œโ”€โ”€ auth/             # Authentication (Better Auth integration)
โ”‚   โ”œโ”€โ”€ mcp/              # MCP server implementation
โ”‚   โ”œโ”€โ”€ config/           # Configuration modules
โ”‚   โ”œโ”€โ”€ database/         # TypeORM setup and migrations
โ”‚   โ”œโ”€โ”€ services/         # Shared services (embeddings, AWS, etc.)
โ”‚   โ”œโ”€โ”€ worker/           # Background job processors
โ”‚   โ””โ”€โ”€ main.ts           # Application entry point
โ”œโ”€โ”€ mcp-client/           # Interactive CLI client for MCP
โ”œโ”€โ”€ docker-compose.yml    # Base Docker configuration
โ”œโ”€โ”€ docker-compose.dev.yml   # Development overrides
โ”œโ”€โ”€ docker-compose.prod.yml  # Production overrides
โ””โ”€โ”€ docs/                 # Additional documentation

๐Ÿงช Testing

# Unit tests
pnpm test

# E2E tests
pnpm test:e2e

# Coverage
pnpm test:cov

# Watch mode
pnpm test:watch

๐Ÿ”ง Customization Guide

1. Remove Example Features

This template includes a course management system as an example. To adapt for your use case:

Remove course-related code:

# Delete course modules
rm -rf src/api/courses

# Remove from app.module.ts imports
# Update database migrations

Or keep and modify:

  • Rename entities to match your domain
  • Adjust the MCP tools in src/mcp/tools/
  • Update RAG pipeline in src/api/courses/courses-rag.service.ts

2. Add Your Own Modules

# Generate new module
nest g module features/my-feature
nest g service features/my-feature
nest g controller features/my-feature

3. Configure Authentication

Add OAuth providers (edit src/auth/better-auth.service.ts):

plugins: [
  oauth({
    github: {
      clientId: process.env.GITHUB_CLIENT_ID,
      clientSecret: process.env.GITHUB_CLIENT_SECRET,
    },
  }),
],

4. Customize MCP Tools

Add your own tools in src/mcp/tools/:

export const myCustomTool: Tool = {
  name: 'my_custom_tool',
  description: 'Description for AI agents',
  inputSchema: {
    type: 'object',
    properties: {
      /* ... */
    },
  },
};

๐Ÿ“ฆ Tech Stack

Category Technology Purpose
Runtime Node.js + TypeScript Server runtime with type safety
Framework NestJS + Fastify Enterprise architecture, 2x Express performance
Database PostgreSQL 16 ACID-compliant relational database
Vector Store pgvector Native Postgres vector extension
ORM TypeORM Mature ORM with migrations
Cache/Queue Redis + BullMQ In-memory cache and job queue
Auth Better Auth Modern authentication framework
API REST + GraphQL + WebSocket Multiple protocol support
Embeddings Hugging Face Transformers Local, cost-free embeddings
Email React Email + MailPit Template management + testing
Monitoring Prometheus + Grafana Metrics and dashboards
Logging Pino Structured JSON logging
Testing Jest Unit and E2E tests

๐Ÿค Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'feat: add 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.


๐Ÿ™ Acknowledgments

This template is built upon the excellent foundation of:

Additional Credits


๐ŸŒŸ Star History

If you find this template useful, please consider giving it a star โญ


<div align="center">

Built with โค๏ธ by Branch42 Team

Based on ultimate-nestjs-boilerplate by @niraj-khatiwada

Report Bug โ€ข Request Feature

</div>

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured