We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/scoutapp/scout-mcp-local'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import path from 'path';
import { defineConfig } from 'vite';
import tsconfigPaths from 'vite-tsconfig-paths';
export default defineConfig({
plugins: [tsconfigPaths()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
build: {
target: 'node18',
outDir: 'dist',
lib: {
entry: 'bin.ts',
formats: ['es'],
},
rollupOptions: {
external: [
'node:process',
'node:buffer',
'node:path',
'node:url',
'node:util',
'node:child_process',
'node:fs/promises',
'node:fs',
'node:os',
'node:crypto',
'chalk',
'@clack/core',
'@clack/prompts',
'open',
],
},
},
});