Verified content
Real past-question papers, grouped by year — never AI-fabricated.
Six SDKs
TypeScript, Python, Java, PHP, Go and Dart — generated from one spec.
MCP-ready
Use MirrorMingo as a tool from any MCP-capable app, IDE, or AI agent.
Run a real mock exam in four calls
import { MirrorMingo } from "@mirrormingo/sdk";
const mm = new MirrorMingo({ apiKey: process.env.MIRRORMINGO_API_KEY });
const learnerId = "student-42";
// Real, verified JAMB past questions — never fabricated.
const catalog = await mm.mockExams.listPapers("jamb");
const attempt = await mm.mockExams.open("jamb", {
paperId: catalog.years[0].papers[0].paper_id,
questionLimit: 10,
learnerId,
});
