Skip to main content
Glama

MCP Server

by hburgoyne
user.py706 B
from sqlalchemy import Column, String, Boolean from sqlalchemy.dialects.postgresql import UUID from sqlalchemy.orm import relationship import uuid from app.models.base import BaseModel class User(BaseModel): """User model for authentication and authorization.""" __tablename__ = "users" email = Column(String, unique=True, index=True, nullable=False) username = Column(String, unique=True, index=True, nullable=False) hashed_password = Column(String, nullable=False) is_active = Column(Boolean, default=True) is_superuser = Column(Boolean, default=False) # Relationships memories = relationship("Memory", back_populates="user", cascade="all, delete-orphan")

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/hburgoyne/picard_mcp'

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