We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jfarcand/pierre_mcp_server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
20250120000031_coaches_active_flag.sql•460 B
-- ABOUTME: Migration to add active coach functionality
-- ABOUTME: Allows one coach per user to be marked as active for current session
-- Add is_active column to coaches table
-- Only one coach per user can be active at a time
ALTER TABLE coaches ADD COLUMN is_active INTEGER NOT NULL DEFAULT 0;
-- Index for finding active coach by user (most common query)
CREATE INDEX IF NOT EXISTS idx_coaches_active ON coaches(user_id, is_active) WHERE is_active = 1;