We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/weibaohui/k8m'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import ReactDOM from 'react-dom/client'
import 'amis/lib/themes/cxd.css'
import 'amis/lib/helper.css'
import 'antd/dist/reset.css'
import '@/styles/global.scss'
import '@fortawesome/fontawesome-free/css/all.css';
import App from './App.tsx'
import { ConfigProvider } from 'antd';
import zhCN from 'antd/locale/zh_CN';
import dayjs from 'dayjs';
import 'dayjs/locale/zh-cn';
dayjs.locale('zh-cn');
ReactDOM.createRoot(document.getElementById('root')!).render(
<ConfigProvider locale={zhCN}>
<App />
</ConfigProvider>
)