We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/libragen/libragen'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Migration registry - contains all migrations and the current schema version.
*/
import { migration001Baseline } from './migrations/001-baseline.ts';
import type { Migration } from './types.ts';
/**
* All registered migrations, in order.
* When adding a new migration:
* 1. Create a new file in ./migrations/ (e.g., 002-add-column.ts)
* 2. Import and add it to this array
* 3. Update CURRENT_SCHEMA_VERSION to match the new migration's version
*/
export const migrations: Migration[] = [
migration001Baseline,
];
/**
* The current schema version.
* This should always match the highest migration version in the migrations array.
*/
export const CURRENT_SCHEMA_VERSION = 1;