We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/prisma/prisma'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import type { BuildOptions } from '../../../helpers/compile/build'
import { build } from '../../../helpers/compile/build'
// we define the config for postinstall
const postinstallBuildConfig: BuildOptions = {
name: 'postinstall',
entryPoints: ['src/scripts/postinstall.ts'],
outfile: 'dist/scripts/postinstall',
bundle: true,
emitTypes: false,
}
// we define the config for localinstall
const localinstallBuildConfig: BuildOptions = {
name: 'localinstall',
entryPoints: ['src/scripts/localinstall.ts'],
outfile: 'dist/scripts/localinstall',
bundle: true,
emitTypes: false,
}
// we define the config for the default
const defaultBuildConfig: BuildOptions = {
name: 'default',
entryPoints: ['src/index.ts'],
outfile: 'dist/index',
bundle: true,
}
void build([postinstallBuildConfig, localinstallBuildConfig, defaultBuildConfig])