We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/medplum/medplum'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
sharding.ts•882 B
// SPDX-FileCopyrightText: Copyright Orangebot, Inc. and Medplum contributors
// SPDX-License-Identifier: Apache-2.0
/**
* The shard ID for the global database.
* Also used when sharding is not enabled.
*/
export const GLOBAL_SHARD_ID = 'global';
/**
* Transitory shard ID to use during the future-proofing phase when it is clear
* how an actual shard ID should be determined but that logic has not yet been implemented.
* Allows the rest of the sharding logic to be implemented and tested before
* sharding is fully functional.
*/
export const PLACEHOLDER_SHARD_ID = 'placeholder';
/**
* Transitory shard ID to use during the future-proofing phase when support for project-based
* sharding still needs to be determined. Allows the rest of the sharding logic to be implemented
* and tested before sharding is fully functional.
*/
export const TODO_SHARD_ID = 'todo';