We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/push-based/angular-toolkit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
string.ts•214 B
// removes all color codes from the output for snapshot readability
export function removeColorCodes(stdout: string) {
// eslint-disable-next-line no-control-regex
return stdout.replace(/\u001B\[\d+m/g, '');
}