We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sanjeev23oct/figma-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { createGlobalStyle } from 'styled-components';
export const GlobalStyle = createGlobalStyle`
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Mulish:wght@400;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: rgba(9, 12, 19, 1);
color: #fff;
font-family: 'Poppins', sans-serif;
overflow-x: hidden;
}
button {
cursor: pointer;
border: none;
outline: none;
}
a {
text-decoration: none;
color: inherit;
}
`;