Skip to main content
Glama
mieaa_job_results_handler.ts607 B
import fetch from "node-fetch"; export class MiEAAJobResultsHandler { async run(args: { job_id: string }) { const { job_id } = args; if (!job_id) { throw new Error("job_id is required"); } const url = `https://ccb-compute2.cs.uni-saarland.de/mieaa/api/v1/enrichment_analysis/results/${job_id}/`; const res = await fetch(url); if (!res.ok) { throw new Error(`Failed to fetch results (${res.status})`); } const data = await res.json(); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] }; } }

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/kkShrihari/miEAA3_mcp'

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