MCP server intelligence profile

@runapi.ai/gemini-omni-mcp Server

MCP server for the Gemini Omni model line, enabling task creation (audio, character, text-to-video) and pricing checks through RunAPI

Local Onlyrunapi-ai
Awaiting current scanNpm · 0.2.1

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
6Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install @runapi.ai/gemini-omni-mcp from npm

Version 0.2.1 declares 1 executable entrypoint.

npm install --save-exact @runapi.ai/gemini-omni-mcp@0.2.1
npx -y -p @runapi.ai/gemini-omni-mcp@0.2.1 @runapi.ai/gemini-omni-mcp
MCP client configuration example
{
  "mcpServers": {
    "@runapi.ai/gemini-omni-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "@runapi.ai/gemini-omni-mcp@0.2.1",
        "@runapi.ai/gemini-omni-mcp"
      ]
    }
  }
}

Identity

Canonical slugrunapi-ai-gemini-omni-mcp-4d8b454dDeploymentLocal Only
Canonical packagenpm:@runapi.ai/gemini-omni-mcpRepositoryrunapi-ai/gemini-omni-mcp
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@runapi.ai/gemini-omni-mcp0.2.11Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@runapi.ai/gemini-omni-mcp0.2.1CurrentSep 5, 20266 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
@runapi.ai/gemini-omni-mcpServer-reported name
2Capability groups
Aug 22, 2026Observed

Tools 6

ToolCategoryAnnotationsRisk
check_pricingLook up RunAPI pricing for the gemini-omni model line.
Input schema
{
  "type": "object",
  "properties": {
    "model": {
      "type": "string",
      "enum": [
        "gemini-omni-audio",
        "gemini-omni-character",
        "gemini-omni-flash-preview",
        "gemini-omni-text-to-video"
      ],
      "description": "Model slug. Defaults to the line's primary model."
    },
    "action": {
      "type": "string",
      "enum": [
        "create_audio",
        "create_character",
        "text_to_video"
      ],
      "description": "Endpoint name. Defaults to the endpoint that offers the model."
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
create_audioRun a synchronous Gemini Omni operation on RunAPI (create audio). Returns the operation result.
Input schema
{
  "type": "object",
  "properties": {
    "audio_id": {
      "type": "string",
      "description": "Voice identity used for the audio preset."
    },
    "name": {
      "type": "string",
      "maxLength": 210,
      "description": "Audio preset display name."
    },
    "voice_description": {
      "type": "string",
      "maxLength": 20000,
      "description": "Voice characteristics such as pitch, tone, or accent."
    },
    "example_dialogue": {
      "type": "string",
      "maxLength": 120,
      "description": "Example dialogue demonstrating the voice style."
    },
    "model": {
      "type": "string",
      "enum": [
        "gemini-omni-audio"
      ],
      "description": "RunAPI model slug for this model line."
    }
  },
  "required": [
    "audio_id",
    "name"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
create_characterRun a synchronous Gemini Omni operation on RunAPI (create character). Returns the operation result.
Input schema
{
  "type": "object",
  "properties": {
    "descriptions": {
      "type": "string",
      "maxLength": 20000,
      "description": "Character appearance, identity, style, clothing, or personality description."
    },
    "reference_image_url": {
      "type": "string",
      "description": "Public character reference image URL."
    },
    "audio_ids": {
      "type": "array",
      "items": {},
      "description": "Audio preset IDs returned by create-audio."
    },
    "character_name": {
      "type": "string",
      "maxLength": 210,
      "description": "Character display name."
    },
    "model": {
      "type": "string",
      "enum": [
        "gemini-omni-character"
      ],
      "description": "RunAPI model slug for this model line."
    }
  },
  "required": [
    "descriptions",
    "reference_image_url"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_taskFetch the current status and latest result payload for a gemini-omni task.
Input schema
{
  "type": "object",
  "properties": {
    "task_id": {
      "type": "string",
      "description": "Task id returned when the task was created."
    },
    "action": {
      "type": "string",
      "enum": [
        "text_to_video"
      ],
      "description": "Asynchronous endpoint the task was created on. Defaults to the line's only asynchronous endpoint."
    }
  },
  "required": [
    "task_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
loginAuthenticate RunAPI by opening a browser PKCE login flow and saving the API key to ~/.config/runapi/config.json.
Input schema
{
  "type": "object",
  "properties": {
    "force": {
      "type": "boolean",
      "default": false,
      "description": "Re-run browser login when the current credential comes from the local config file."
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
text_to_videoCreate a Gemini Omni task on RunAPI (text to video). Returns a task id, status, and output URLs.
Input schema
{
  "type": "object",
  "properties": {
    "prompt": {
      "type": "string",
      "maxLength": 20000,
      "description": "Video generation prompt."
    },
    "duration_seconds": {
      "type": "number"
    },
    "callback_url": {
      "type": "string",
      "description": "Webhook URL for terminal Task delivery."
    },
    "reference_image_urls": {
      "type": "array",
      "items": {}
    },
    "audio_ids": {
      "type": "array",
      "items": {}
    },
    "video_list": {
      "type": "array",
      "items": {}
    },
    "character_ids": {
      "type": "array",
      "items": {}
    },
    "aspect_ratio": {
      "type": "string",
      "enum": [
        "16:9",
        "9:16"
      ],
      "description": "Output aspect ratio."
    },
    "output_resolution": {
      "type": "string",
      "enum": [
        "720p",
        "1080p",
        "4k"
      ],
      "description": "Output resolution."
    },
    "seed": {
      "type": "number"
    },
    "wait": {
      "type": "boolean",
      "default": true,
      "description": "Poll until the task reaches a terminal status."
    },
    "timeout_ms": {
      "type": "integer",
      "exclusiveMinimum": 0
    },
    "poll_interval_ms": {
      "type": "integer",
      "exclusiveMinimum": 0
    },
    "model": {
      "type": "string",
      "enum": [
        "gemini-omni-flash-preview",
        "gemini-omni-text-to-video"
      ],
      "description": "RunAPI model slug for this model line."
    }
  },
  "required": [
    "prompt"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

@runapi.ai/gemini-omni-mcp Server questions

How do I install @runapi.ai/gemini-omni-mcp Server?

Install the selected package version with: npm install --save-exact @runapi.ai/gemini-omni-mcp@0.2.1

What tools does @runapi.ai/gemini-omni-mcp Server provide?

@runapi.ai/gemini-omni-mcp Server exposed 6 tools during independent protocol observation, including check_pricing, create_audio, create_character, get_task, login, text_to_video.

Is @runapi.ai/gemini-omni-mcp Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Google intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Related MCP servers from this publisher

Related records share independently retained publisher or namespace evidence. They are not automatically endorsed alternatives.

Let’s talk about MCP security.

Share your details and our security team will contact you.