Skip to main content
Glama
wabox32

schema-engram-mcp

by wabox32

db_schema_list

Retrieve saved database schema snapshots to view stored table structures and metadata, enabling structured management of database architectures.

Instructions

Lista instantáneas guardadas (sin el cuerpo completo del esquema).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
workspace_idYes
connection_nameNo
limitNo

Implementation Reference

  • The handler implementation for the `db_schema_list` tool, which fetches a list of schema snapshots using the storage helper.
    def db_schema_list(
        workspace_id: str,
        connection_name: str | None = None,
        limit: int = 50,
    ) -> str:
        """Lista instantáneas guardadas (sin el cuerpo completo del esquema)."""
        rows = storage.list_snapshots(
            _get_conn(),
            workspace_id=workspace_id.strip(),
            connection_name=connection_name.strip() if connection_name else None,
            limit=min(max(limit, 1), 200),
        )
        return json.dumps({"snapshots": rows}, ensure_ascii=False)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/wabox32/schema-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server