We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mcpmux/mcp-mux'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.tsx•693 B
import React from 'react';
import ReactDOM from 'react-dom/client';
import { invoke } from '@tauri-apps/api/core';
import { emit } from '@tauri-apps/api/event';
import App from './App';
import './index.css';
// Expose Tauri API for E2E testing
// This allows tests to set up data and simulate events programmatically
declare global {
interface Window {
__TAURI_TEST_API__?: {
invoke: typeof invoke;
emit: typeof emit;
};
}
}
// Always expose for now - can be gated by env var if needed
window.__TAURI_TEST_API__ = { invoke, emit };
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
<React.StrictMode>
<App />
</React.StrictMode>
);