medical-image

medical-image is a skill for Claude Code from LeviReisJs/mcp-openi-server. It costs 127 tokens per session (819 once invoked), scanned A, original, MIT.

A skill for finding medical, clinical, dental, and radiological images in Open-i, an image search service from the U.S. National Library of Medicine. It returns a Markdown image link that can be pasted into a note.

In plain words
What is it for?
Finding diagrams, clinical photos, X-rays, CT scans, MRI images, ultrasound images, or histology pictures for notes and documentation.
Why use it?
It avoids manually searching for a suitable biomedical image and formatting its link for use.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the openi plugin — 1 skill, 1 MCP server shipped together

Good fit Finding diagrams, clinical photos, X-rays, CT scans, MRI images, ultrasound images, or histology pictures for notes and documentation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/levireisjs/mcp-openi-server/medical-image
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add LeviReisJs/mcp-openi-server --skill medical-image
Clone the repo
git clone --depth 1 https://github.com/LeviReisJs/mcp-openi-server

Made for: Claude Code.

Or install openi, the plugin that ships this one along with the rest of its 1 skill, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for medical-image

README.md
[![agentmods](https://agentmods.dev/badge/skills/levireisjs/mcp-openi-server/medical-image/github.svg)](https://agentmods.dev/skills/levireisjs/mcp-openi-server/medical-image)
Your own site
<a href="https://agentmods.dev/skills/levireisjs/mcp-openi-server/medical-image"><img src="https://agentmods.dev/badge/skills/levireisjs/mcp-openi-server/medical-image/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for medical-image

Your own site · 80×15
<a href="https://agentmods.dev/skills/levireisjs/mcp-openi-server/medical-image"><img src="https://agentmods.dev/badge/skills/levireisjs/mcp-openi-server/medical-image.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 127 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 819 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00127 $0.00819
Opus 5 $0.00063 $0.00409
Sonnet 5 $0.00025 $0.00164
Haiku 4.5 $0.00013 $0.00082

Measured 9d ago against content hash 37f85336be7c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

medical-image scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/medical-image/SKILL.md · 45 lines

How it starts

The opening of the file, as written. The whole thing — 45 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Find & embed a medical image (Open-i)

You have the search_openi_images MCP tool available (from the openi plugin). Use it to fetch a real, citable biomedical image and hand it back in a form the user can paste or embed immediately.

Steps

  1. Translate the topic to English. Open-i is English-only. Translate any Portuguese term before searching:

    • "cárie" → dental caries · "incisão oral" → oral incision · "radiografia panorâmica" → panoramic radiograph · "gengivite" → gingivitis · "anatomia do periodonto" → periodontal anatomy · "odontolegista" → forensic dentistry.
  2. Pick the right image-type filter (it) based on what the user wants:

    • Diagram / chart / illustration → it="g"
    • Clinical or gross photo → it="ph"
    • X-ray → it="x" · CT → it="c" · MRI → it="m" · ultrasound → it="u" · histology/microscopy → it="mc"
    • If unsure, omit it and let Open-i return everything, then choose the most relevant result yourself.
    • For dentistry topics you may add sp="d".
  3. Call search_openi_images with a small window first (m=1, n=6). Read the title and summary of each result and choose the one that genuinely matches the topic — don't just grab the first hit. Prefer results whose caption clearly depicts the concept.

  4. Return it as Markdown, always with attribution:

    ![<short description>](<image_url>)
    *<caption / summary>* — [Fonte](<article_url>)
    

    If the user asked for several, return 2–3 options and say which you'd pick and why.

  5. If no good match: broaden the query (drop adjectives, use the core anatomical/clinical term), remove the it/sp filters, and try once more before telling the user nothing fit.

When working inside a notes vault (e.g. Obsidian)

If the user is building study notes and asks you to place the image in the note (not just show it):

  • Insert the Markdown image at the most relevant point in the note — typically right under the heading of the section it illustrates, or inside the relevant callout — not dumped at the top or bottom.
  • Keep the caption + [Fonte](...) link so the note stays citable.
  • If the vault is used offline (synced to a phone/tablet) and the user wants images to work without internet, offer to download the image into the vault's assets folder and embed it locally instead of hot-linking. Ask before downloading many files.
  • One well-chosen figure per concept beats several — don't clutter the note.

Read the full file on GitHub · 45 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 45 lines · 127 tokens per session scan A 37f85336be7c

Subscribe to this mod's changes

medical-image is a skill published in the GitHub repository LeviReisJs/mcp-openi-server (0 stars, last pushed 2mo ago), licensed MIT. It adds 127 tokens to every session and 819 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

prior-art-search

Systematic 7-step methodology for comprehensive patent prior art searches and patentability assessments using BigQuery and CPC classification.

RobThePCGuy/Claude-Patent-Creator · 26 tokens

sanity-best-practices

Sanity development best practices for schema design, GROQ queries, TypeGen, Visual Editing, images, Portable Text, Studio structure, localization, migrations, Sanity Functions, webhooks, Blueprints, and framework integrations such as Next.js, Nuxt, Astro, Remix, SvelteKit, Angular, Hydrogen, and the App SDK. Use this…

sanity-io/agent-toolkit · 164 tokens

portable-text-serialization

Render and serialize Portable Text to React, Svelte, Vue, Astro, HTML, Markdown, and plain text. Use when implementing Portable Text rendering in any frontend framework, building custom serializers for non-standard block types, converting Portable Text to HTML strings server-side, converting Portable Text to Markdown…

sanity-io/agent-toolkit · 85 tokens

development-assistant

Guides through adding new features, MCP tools, analyzers, and extending the patent creator system.

RobThePCGuy/Claude-Patent-Creator · 24 tokens

mpep-search

Expert system for searching USPTO MPEP, 35 USC statutes, 37 CFR regulations, and post-Jan 2024 updates.

RobThePCGuy/Claude-Patent-Creator · 32 tokens

video-perception

Use when the user mentions a video file (.mp4, .mov, .avi, .mkv, .webm), a YouTube URL, asks to watch/analyze/review a video, or references video content in conversation.

jordanrendric/claude-video-vision · 51 tokens