We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tcsenpai/mcpbook'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
terminal: {
bg: '#1a1b26',
text: '#a9b1d6',
green: '#9ece6a',
blue: '#7aa2f7',
yellow: '#e0af68',
red: '#f7768e',
cyan: '#7dcfff',
}
},
fontFamily: {
mono: ['JetBrains Mono', 'Fira Code', 'Consolas', 'monospace'],
}
},
},
plugins: [],
}