We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Dhenenjay/axion-planetary-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: ['src/index.ts'],
format: ['esm'],
dts: {
resolve: true,
compilerOptions: {
incremental: false
}
},
clean: true,
target: 'node18',
platform: 'node',
tsconfig: 'tsconfig.build.json',
external: [
'@google/earthengine',
'@google-cloud/storage',
'@modelcontextprotocol/sdk',
'google-auth-library',
'googleapis'
],
noExternal: [],
sourcemap: true,
minify: false,
splitting: false,
shims: true,
esbuildOptions(options) {
options.mainFields = ['module', 'main'];
}
});