We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ivossos/fccs-mcp-ag-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
grep_csv.py•249 B
with open('data/actual_monthly_data_jan_jun_fy25.csv', mode='r', encoding='utf-8') as f:
lines = f.readlines()
for i, line in enumerate(lines):
if 'CTA' in line or 'Translation' in line:
print(f"{i}: {line.strip()}")