We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/orneryd/Mimir'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.tsx•816 B
import React from 'react';
import ReactDOM from 'react-dom/client';
import { DndProvider } from 'react-dnd';
import { HTML5Backend } from 'react-dnd-html5-backend';
import { Studio } from './Studio';
import './styles.css';
// VSCode API singleton
declare function acquireVsCodeApi(): any;
const vscode = acquireVsCodeApi();
// Make VSCode API available globally
(window as any).vscode = vscode;
console.log('🚀 Mimir Studio webview initializing...');
// Render Studio app
const root = document.getElementById('root');
if (root) {
ReactDOM.createRoot(root).render(
<React.StrictMode>
<DndProvider backend={HTML5Backend}>
<Studio />
</DndProvider>
</React.StrictMode>
);
console.log('✅ Mimir Studio webview mounted');
} else {
console.error('❌ Root element not found');
}