We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lesleslie/session-buddy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
reflection_adapter.py•375 B
"""Compatibility shim for the Oneiric reflection adapter.
This module preserves the historical import path while routing to the
Oneiric-native implementation.
"""
from __future__ import annotations
from session_buddy.adapters.reflection_adapter_oneiric import (
ReflectionDatabaseAdapterOneiric as ReflectionDatabaseAdapter,
)
__all__ = ["ReflectionDatabaseAdapter"]