We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/the-basilisk-ai/squad-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import type React from "react";
import { entityUrl } from "../constants";
export const LinkedTitle: React.FC<{
title: string;
type: string;
id: string;
appBaseUrl?: string;
}> = ({ title, type, id, appBaseUrl }) => {
const url = entityUrl(type, id, appBaseUrl);
if (!url) return <>{title}</>;
return (
<a
href={url}
target="_blank"
rel="noopener noreferrer"
className="text-inherit no-underline hover:underline"
>
{title}
</a>
);
};