MCP server intelligence profile

Codex Gemini MCP Server

A TypeScript-based MCP server that provides tools to interact with local Codex and Gemini CLIs via stdio transport. It enables users to execute prompts through the ask_codex and ask_gemini tools, supporting custom models and timeout configurations

Local Onlydonghae0414
Awaiting current scanNpm · 0.1.0

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

1Distribution channel
5Independently 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 @donghae0414/codex-gemini-mcp from npm

Version 0.1.0 declares 1 executable entrypoint.

npm install --save-exact @donghae0414/codex-gemini-mcp@0.1.0
npx -y -p @donghae0414/codex-gemini-mcp@0.1.0 @donghae0414/codex-gemini-mcp
MCP client configuration example
{
  "mcpServers": {
    "@donghae0414/codex-gemini-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "@donghae0414/codex-gemini-mcp@0.1.0",
        "@donghae0414/codex-gemini-mcp"
      ]
    }
  }
}

Identity

Canonical slugcodex-gemini-mcp-b6329480DeploymentLocal Only
Canonical packagenpm:@donghae0414/codex-gemini-mcpRepositorydonghae0414/codex-gemini-mcp
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@donghae0414/codex-gemini-mcp0.1.01Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@donghae0414/codex-gemini-mcp0.1.0CurrentSep 5, 20265 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
codex-mcpServer-reported name
1Capability groups
Aug 21, 2026Observed

Tools 5

ToolCategoryAnnotationsRisk
ask_codexSend a prompt to local Codex CLI for analysis and implementation tasks. Supports foreground or background execution; background mode returns job metadata and persists prompt/response artifacts under the runtime directory.
Input schema
{
  "type": "object",
  "properties": {
    "prompt": {
      "type": "string",
      "minLength": 1,
      "description": "Prompt text to send to the CLI. Must be a non-empty string."
    },
    "model": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128,
      "pattern": "^[A-Za-z0-9][A-Za-z0-9._:-]*$",
      "description": "Optional model override. Must match /^[A-Za-z0-9][A-Za-z0-9._:-]*$/ and be <= 128 chars."
    },
    "working_directory": {
      "type": "string",
      "minLength": 1,
      "description": "Optional working directory for CLI execution. Defaults to process.cwd()."
    },
    "background": {
      "type": "boolean",
      "description": "Run as background job (default true; recommended for long-running tasks)"
    },
    "reasoning_effort": {
      "type": "string",
      "enum": [
        "minimal",
        "low",
        "medium",
        "high",
        "xhigh"
      ],
      "description": "Codex reasoning effort: minimal|low|medium|high|xhigh. If omitted, Codex CLI default is used."
    }
  },
  "required": [
    "prompt"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
check_job_statusGet current metadata and status for a background job without blocking. Use this for non-blocking progress checks.
Input schema
{
  "type": "object",
  "properties": {
    "job_id": {
      "type": "string",
      "pattern": "^[0-9a-f]{8}$",
      "description": "Background job ID (8-char lowercase hex) returned by ask_* with background=true."
    }
  },
  "required": [
    "job_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
kill_jobSend a process signal to a running background job (SIGTERM by default). Stops active jobs and records terminal state.
Input schema
{
  "type": "object",
  "properties": {
    "job_id": {
      "type": "string",
      "pattern": "^[0-9a-f]{8}$",
      "description": "Background job ID (8-char lowercase hex) returned by ask_* with background=true."
    },
    "signal": {
      "type": "string",
      "enum": [
        "SIGTERM",
        "SIGINT"
      ],
      "description": "Signal sent to running job. Defaults to SIGTERM."
    }
  },
  "required": [
    "job_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
list_jobsList persisted background jobs with optional status filtering and result limit. Jobs are returned in descending recency order.
Input schema
{
  "type": "object",
  "properties": {
    "status_filter": {
      "type": "string",
      "enum": [
        "active",
        "completed",
        "failed",
        "all"
      ],
      "description": "Filter jobs by status. Defaults to active."
    },
    "limit": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "description": "Maximum number of jobs to return. Defaults to 50."
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
wait_for_jobBlock (poll) until a background job reaches terminal state (completed/failed/timeout). Returns response text on success or terminal status payload on error.
Input schema
{
  "type": "object",
  "properties": {
    "job_id": {
      "type": "string",
      "pattern": "^[0-9a-f]{8}$",
      "description": "Background job ID (8-char lowercase hex) returned by ask_* with background=true."
    },
    "timeout_ms": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 3600000,
      "description": "Optional wait timeout in milliseconds (max 3600000)."
    }
  },
  "required": [
    "job_id"
  ],
  "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.

Codex Gemini MCP Server questions

How do I install Codex Gemini MCP Server?

Install the selected package version with: npm install --save-exact @donghae0414/codex-gemini-mcp@0.1.0

What tools does Codex Gemini MCP Server provide?

Codex Gemini MCP Server exposed 5 tools during independent protocol observation, including ask_codex, check_job_status, kill_job, list_jobs, wait_for_job.

Is Codex Gemini 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

Let’s talk about MCP security.

Share your details and our security team will contact you.