We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/j0hanz/fs-context-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
const WINDOWS_PATH_SEPARATOR = '\\';
const POSIX_PATH_SEPARATOR = '/';
export function toPosixPath(value: string): string {
return value.includes(WINDOWS_PATH_SEPARATOR)
? value.replace(/\\/gu, POSIX_PATH_SEPARATOR)
: value;
}