Skip to main content
Glama

Storyden

by Southclaws
Mozilla Public License 2.0
227
schemas.ts613 B
import { z } from "zod"; export const UsernameSchema = z .string() .min(1, "Please enter a username.") .max(30, "Maximum length is 30 characters.") .toLowerCase() .regex( /^[a-z0-9_-]+$/g, "Username can only contain latin letters, numbers, dashes and underscores.", ); export const PasswordSchema = z .string() .min(8, "Password must be at least 8 characters."); export const ExistingPasswordSchema = z .string() .min(1, "Please enter your current password."); export const UsernameOrEmailSchema = z.union([ UsernameSchema, z.string().email("Please enter a valid email."), ]);

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/Southclaws/storyden'

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