We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Deepractice/PromptX'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
preload.ts•451 B
import { contextBridge } from 'electron'
// Expose protected methods that allow the renderer process
// to use selected Node.js and Electron APIs
contextBridge.exposeInMainWorld('electronAPI', {
// Currently no APIs needed for tray-only app
// This will be expanded when we add windows
platform: process.platform,
versions: {
node: process.versions.node,
chrome: process.versions.chrome,
electron: process.versions.electron
}
})