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
knowledge_graph_adapter.py•397 B
"""Compatibility shim for the Oneiric knowledge graph adapter.
This module preserves the historical import path while routing to the
Oneiric-native implementation.
"""
from __future__ import annotations
from session_buddy.adapters.knowledge_graph_adapter_oneiric import (
KnowledgeGraphDatabaseAdapterOneiric as KnowledgeGraphDatabaseAdapter,
)
__all__ = ["KnowledgeGraphDatabaseAdapter"]