Skip to main content
Glama
emerzon

MetaTrader5 MCP Server

by emerzon
storage.ts351 B
export function loadJSON<T>(key: string): T | undefined { try { const s = localStorage.getItem(key) if (!s) return undefined return JSON.parse(s) as T } catch { return undefined } } export function saveJSON(key: string, value: any) { try { localStorage.setItem(key, JSON.stringify(value)) } catch { // ignore } }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/emerzon/mt-data-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server