We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/quartz-labs-dev/pabal-web-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
is-local-asset-path.util.ts•268 B
/**
* Determine if screenshot path refers to a local public asset
*/
export function isLocalAssetPath(assetPath: string): boolean {
if (!assetPath) {
return false;
}
const trimmedPath = assetPath.trim();
return !/^([a-z]+:)?\/\//i.test(trimmedPath);
}