We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nervusdb/nervusdb-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Schema Migration Module
*/
export {
CURRENT_SCHEMA_VERSION,
SCHEMA_VERSIONS,
getSchemaVersionInfo,
checkCompatibility,
migrate,
getMigrationAdvice,
shouldAutoMigrate,
type SchemaVersionInfo,
type MigrationStrategy,
type MigrationResult,
type CompatibilityCheck,
} from './schemaMigrator.js';