We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Jakedismo/codegraph-rust'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
001_initial_schema.sql•487 B
-- Initial schema migration for CodeGraph
-- This is a stub file to satisfy the build system
-- The actual schema is maintained in schema/codegraph.surql
-- Core tables
DEFINE TABLE IF NOT EXISTS nodes SCHEMAFULL;
DEFINE TABLE IF NOT EXISTS edges SCHEMAFULL;
DEFINE TABLE IF NOT EXISTS schema_versions SCHEMAFULL;
DEFINE TABLE IF NOT EXISTS metadata SCHEMAFULL;
-- Note: Full schema definitions are in schema/codegraph.surql
-- This migration file is kept minimal to avoid duplication