Skip to main content
Glama
emerzon

MetaTrader5 MCP Server

by emerzon
TimeframePicker.tsx485 B
import { useQuery } from '@tanstack/react-query' import { getTimeframes } from '../api/client' export function TimeframePicker({ value, onChange }: { value: string; onChange: (v: string) => void }) { const { data } = useQuery({ queryKey: ['tfs'], queryFn: getTimeframes }) const tfs = data ?? [] return ( <select className="select" value={value} onChange={e => onChange(e.target.value)}> {tfs.map(tf => <option key={tf} value={tf}>{tf}</option>)} </select> ) }

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