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
{
"$schema": "https://turborepo.org/schema.json",
"globalEnv": ["NODE_VERSION", "MEDPLUM_GIT_SHORTHASH"],
"tasks": {
"clean": {
"outputs": ["build/**", "dist/**", "coverage/**"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["build/**", "dist/**", ".next/**", "!.next/cache/**"],
"env": [
"MEDPLUM_BASE_URL",
"MEDPLUM_CLIENT_ID",
"MEDPLUM_REGISTER_ENABLED",
"GOOGLE_CLIENT_ID",
"RECAPTCHA_SITE_KEY"
]
},
"test": {
"dependsOn": ["build"],
"outputs": ["coverage/**"],
"inputs": ["src/**/*.tsx", "src/**/*.ts"]
},
"lint": {
"dependsOn": ["build"]
},
"lint:fix": {
"dependsOn": ["build"]
}
}
}