We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/doobidoo/mcp-memory-service'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { Composition } from 'remotion';
import { Video } from './Video';
import { useLoadFonts } from './styles/fonts';
export const RemotionRoot: React.FC = () => {
// Load fonts before rendering
useLoadFonts();
return (
<>
<Composition
id="MCPMemoryShowcase"
component={Video}
durationInFrames={3600} // 120 seconds at 30fps (was 180s)
fps={30}
width={1920}
height={1080}
defaultProps={{}}
/>
</>
);
};