Skip to main content
Glama
symlinkOrCopy.js1.11 kB
import { stat, statSync } from '../sander'; import { copydir, copydirSync } from './copydir'; import { copyFile, copyFileSync } from './copyFile'; import { symlink, symlinkSync } from '../specialMethods/symlink'; import resolvePathAndOptions from '../utils/resolvePathAndOptions'; const isWindows = process.platform === 'win32'; export function symlinkOrCopy () { if ( isWindows ) { const { resolvedPath: src, options: readOptions } = resolvePathAndOptions( arguments ); let copyDirOrFileTo = stat( src ) .then( stats => { return ( stats.isDirectory() ? copydir : copyFile ) .apply( null, arguments ) .to; }); return { to () { return copyDirOrFileTo .then(fn => { return fn.apply(null, arguments); }); } }; } return symlink.apply( null, arguments ); } export function symlinkOrCopySync () { if ( isWindows ) { const { resolvedPath: src, options: readOptions } = resolvePathAndOptions( arguments ); return ( statSync( src ).isDirectory() ? copydirSync : copyFileSync ).apply( null, arguments ); } return symlinkSync.apply( null, arguments ); }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/MatheusgVentura/Project-One'

If you have feedback or need assistance with the MCP directory API, please join our Discord server