Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
mcp-memory-libsql
by
spences10
Verified
npm
GitHub
Databases
Knowledge & Memory
TypeScript
MIT License
29
23
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
src
utils
src/utils/account.ts
src/utils/logger.ts
src/utils/service-initializer.ts
src/utils/token.ts
src/utils/workspace.ts
/** * Validate email address format */ export function validateEmail(email: string): void { const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; if (!emailRegex.test(email)) { throw new Error(`Invalid email address: ${email}`); } }