We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TheLunarCompany/lunar'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import ReactDOM from "react-dom/client";
import App from "@/App";
import "@/index.css";
import { loadRuntimeConfig } from "@/config/runtime-config";
import { initToolkitUI } from "@mcpx/toolkit-ui";
// Load runtime config and initialize app
async function initializeApp() {
initToolkitUI();
await loadRuntimeConfig();
const rootElement = document.getElementById("root");
if (!rootElement) {
throw new Error("Root element not found");
}
const root = ReactDOM.createRoot(rootElement);
root.render(<App />);
}
initializeApp();