We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ivangrynenko/devstandards_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
database.py•810 B
# This file is kept for backward compatibility
# All functionality has been moved to memory_store.py
from pathlib import Path
from .memory_store import StandardsMemoryStore
# Create a compatibility wrapper
class StandardsDatabase(StandardsMemoryStore):
"""Compatibility wrapper - now uses in-memory storage instead of SQLite"""
def __init__(self, db_path: Path):
# Ignore db_path as we're using in-memory storage
super().__init__()
def _init_database(self):
"""No-op for compatibility"""
pass
def get_connection(self):
"""No-op for compatibility"""
class DummyConnection:
def __enter__(self):
return self
def __exit__(self, *args):
pass
return DummyConnection()