We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bitgeese/sequential-questioning'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
sessions.py•225 B
from fastapi import APIRouter, Depends, HTTPException, status
from sqlalchemy.ext.asyncio import AsyncSession
from typing import List
from app.models.database import get_db
# Create router for sessions
router = APIRouter()