We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Platano78/faulkner-db'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
01-create-schema.sql•359 B
-- Initialize Graphiti metadata schema
CREATE TABLE IF NOT EXISTS graph_metadata (
id SERIAL PRIMARY KEY,
graph_name VARCHAR(255) NOT NULL UNIQUE,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
graph_schema JSONB
);
CREATE INDEX IF NOT EXISTS idx_graph_name ON graph_metadata(graph_name);