We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/huiseo/outline-smart-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* URL Utilities
*
* URL construction utilities
*/
/** Combine URL path with base URL */
export function buildUrl(baseUrl: string, path: string): string {
return `${baseUrl}${path}`;
}