Skip to main content
Glama

MCP Server NestJS

by Cstannahill
create-user.dto.ts452 B
import { IsString, IsEmail, MinLength, IsNotEmpty } from 'class-validator'; import { ApiProperty } from '@nestjs/swagger'; export class CreateUserDto { @ApiProperty({ example: 'John Doe' }) @IsNotEmpty() @IsString() name: string; @ApiProperty({ example: 'john@example.com' }) @IsNotEmpty() @IsEmail() email: string; @ApiProperty({ example: 'strongPassword123' }) @IsNotEmpty() @IsString() @MinLength(6) password: string; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Cstannahill/mcp-server-nestjs'

If you have feedback or need assistance with the MCP directory API, please join our Discord server