We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sosacrazy126/greptile-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { defineConfig } from 'tsup';
export default defineConfig({
entry: {
cli: 'src/cli.ts',
server: 'src/server.ts',
index: 'src/index.ts',
smithery: 'src/smithery.ts'
},
format: ['esm'],
dts: true,
clean: true,
minify: false, // Disable minification to avoid shebang issues
target: 'node18',
splitting: false,
sourcemap: true,
treeshake: true,
define: {
'import.meta.url': 'import.meta.url'
},
onSuccess: 'echo "✅ Build completed successfully!"'
});