A model, alone.
A text model is superb at text. Images, audio, scanned pages and the live web sit outside its native reach.
- native
- text
- reach
- 0 / 8
Give any model access to any capability.
a text modelmcpevery specialist toolresult
A text model is superb at text. Images, audio, scanned pages and the live web sit outside its native reach.
OCR, vision, speech, web access: each is a solved problem, running somewhere else. The model cannot touch any of it.
Eden AI’s MCP server sits between the model and every specialist. One protocol, many tools. The model only needs to know how to ask.
The model requests a capability. The request travels through MCP to a specialist; the result travels back as text the model already understands.
Each tool the model can call adds energy. A cheaper, smaller model starts doing work that used to require something far larger.
Gathered from many specialists, the composite is more capable than any single model in it. That gathering is the whole idea.
Genkidama is an Eden AI research project: a text-oriented model reasoning over what specialist tools give it, from OCR and image analysis to transcription and web research, through Eden AI's MCP server.
The name is the Spirit Bomb: many sources of energy, gathered into one.
A capable model can still be unable to inspect an image, transcribe audio, read a scanned page or search the web on its own. The limit is not reasoning; it is direct access. One catalogue, three positions: a text-only model, a natively multimodal model, and the text-only model with Eden AI's MCP server in reach.
| capability | text-only model | multimodal model | text-only + mcp |
|---|---|---|---|
| OCOCReden.ocr.extract | |||
| IMImageeden.image.describe | |||
| AUAudioeden.audio.analyze | |||
| SPSpeecheden.speech.transcribe | |||
| VDVideoeden.video.analyze | |||
| WBWebeden.web.fetch | |||
| TRTranslationeden.text.translate | |||
| DCDocumentseden.document.parse |
MCP is a standard interface between a model and external tools. Instead of building every capability into the model, an agent discovers the tools a server exposes, calls the one it needs and reads the result back as context.
Eden AI's hosted MCP server exposes its expert models this way: one tool per feature, plus a few utilities. OCR, image analysis, web search, speech, translation and the rest of the catalogue become callable by any MCP-capable agent, and the catalogue is discovered at runtime rather than hardcoded.
The model decides it needs a capability and emits a tool call. The gateway routes it to the specialist; the result returns as text, and the model keeps reasoning with it. One example, through OCR:
{
"method": "tools/call",
"params": {
"name": "ocr",
"arguments": {
"file": "receipt-014.jpg",
"language": "auto"
}
}
}