We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zxh2010/defeatbeta-api'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
select_company_by_symbol.sql•417 B
SELECT
idx,
info.ticker as symbol,
info.cik_str as cik,
info.title as name,
info.financial_currency as financial_currency
FROM (
SELECT unnest(map_keys(data)) as idx, unnest(map_values(data)) as info
FROM read_json('{url}',
columns={{data: 'MAP(VARCHAR, STRUCT(cik_str INTEGER, ticker VARCHAR, title VARCHAR, financial_currency VARCHAR))'}})
) WHERE symbol = '{symbol}'