# io.github.runapi-builder/gemini-omni-mcp (npm · @runapi.ai/gemini-omni-mcp)

RunAPI MCP server for Gemini Omni: create tasks, poll status, check pricing.

- Trust score: 65/100 (medium)
- Change this week: +22
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@runapi.ai/gemini-omni-mcp`: 65/100 (this document), [markdown](https://verifymcp.io/servers/runapi-builder-gemini-omni-mcp/runapi-ai-gemini-omni-mcp.md), [page](https://verifymcp.io/servers/runapi-builder-gemini-omni-mcp/runapi-ai-gemini-omni-mcp)

## Channel facts

- Registry: `npm`
- Package: `@runapi.ai/gemini-omni-mcp`
- Version: `0.2.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (Apache-2.0).
  - Actively maintained (last published 2 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 60/100
  - AI-judged instruction clarity (fair).
  - Tool/resource definitions use about 673 tokens (~112/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 91/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 72% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add runapi-builder-gemini-omni-mcp -- npx -y @runapi.ai/gemini-omni-mcp
```

### Codex

```bash
codex mcp add runapi-builder-gemini-omni-mcp -- npx -y @runapi.ai/gemini-omni-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "runapi-builder-gemini-omni-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@runapi.ai/gemini-omni-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add runapi-builder-gemini-omni-mcp --command npx --arg -y --arg @runapi.ai/gemini-omni-mcp
```

### Hermes

```yaml
mcp_servers:
  runapi-builder-gemini-omni-mcp:
    command: "npx"
    args: ["-y", "@runapi.ai/gemini-omni-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "runapi-builder-gemini-omni-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@runapi.ai/gemini-omni-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 65, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 64, +44)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → fair
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: Apache-2.0

### 2026-08-01 (score 20, +15)

- [functional regression] Schema quality: 101 → 112
- [functional improvement] Tool coverage: 31% → 72%
- [functional improvement] Tool coverage: unverified → 100

### 2026-07-31 (score 5, −1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 6, −37)

- [security regression] Malware scan: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 43)

First indexed and scored.

## MCP tools (6)

### `login` (~52 tokens)

Authenticate RunAPI by opening a browser PKCE login flow and saving the API key to ~/.config/runapi/config.json.

Input parameters:

- `force` (boolean): Re-run browser login when the current credential comes from the local config file.

### `text_to_video` (~174 tokens)

Create a Gemini Omni task on RunAPI (text to video). Returns a task id, status, and output URLs.

Input parameters:

- `aspect_ratio` (string): Output aspect ratio.
- `audio_ids` (array)
- `callback_url` (string): Webhook URL for terminal Task delivery.
- `character_ids` (array)
- `duration_seconds` (number)
- `model` (string): RunAPI model slug for this model line.
- `output_resolution` (string): Output resolution.
- `poll_interval_ms` (integer)
- `prompt` (string, required): Video generation prompt.
- `reference_image_urls` (array)
- `seed` (number)
- `timeout_ms` (integer)
- `video_list` (array)
- `wait` (boolean): Poll until the task reaches a terminal status.

### `create_audio` (~100 tokens)

Run a synchronous Gemini Omni operation on RunAPI (create audio). Returns the operation result.

Input parameters:

- `audio_id` (string, required): Voice identity used for the audio preset.
- `example_dialogue` (string): Example dialogue demonstrating the voice style.
- `model` (string): RunAPI model slug for this model line.
- `name` (string, required): Audio preset display name.
- `voice_description` (string): Voice characteristics such as pitch, tone, or accent.

### `create_character` (~101 tokens)

Run a synchronous Gemini Omni operation on RunAPI (create character). Returns the operation result.

Input parameters:

- `audio_ids` (array): Audio preset IDs returned by create-audio.
- `character_name` (string): Character display name.
- `descriptions` (string, required): Character appearance, identity, style, clothing, or personality description.
- `model` (string): RunAPI model slug for this model line.
- `reference_image_url` (string, required): Public character reference image URL.

### `get_task` (~65 tokens)

Fetch the current status and latest result payload for a gemini-omni task.

Input parameters:

- `action` (string): Asynchronous endpoint the task was created on. Defaults to the line's only asynchronous endpoint.
- `task_id` (string, required): Task id returned when the task was created.

### `check_pricing` (~59 tokens)

Look up RunAPI pricing for the gemini-omni model line.

Input parameters:

- `action` (string): Endpoint name. Defaults to the endpoint that offers the model.
- `model` (string): Model slug. Defaults to the line's primary model.

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/runapi-builder-gemini-omni-mcp/runapi-ai-gemini-omni-mcp#diagnostics

## Score history

- 2026-08-03: 65
- 2026-08-02: 64
- 2026-08-01: 20
- 2026-07-31: 5
- 2026-07-30: 6
- 2026-07-28: 43
- 2026-07-27: 43

## Links

- npm package: https://www.npmjs.com/package/@runapi.ai/gemini-omni-mcp
- Socket report: https://socket.dev/npm/package/@runapi.ai/gemini-omni-mcp
- Repository: https://github.com/runapi-ai/gemini-omni-mcp
- Changelog RSS feed: https://verifymcp.io/servers/runapi-builder-gemini-omni-mcp/runapi-ai-gemini-omni-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/runapi-builder-gemini-omni-mcp/runapi-ai-gemini-omni-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/runapi-builder-gemini-omni-mcp/runapi-ai-gemini-omni-mcp
