grok-bridge
Grok Bridge is a local MCP server that lets ChatGPT or Codex delegate work to a locally installed Grok Build agent.
Check Grok availability and configuration with
grok_doctor.Run synchronous, read-only consultations for planning, research, or review with
grok_consult.Start durable background jobs that can edit files and run commands in a workspace with
grok_start.Poll job status, progress logs, and persisted final results with
grok_poll.Cancel running jobs and their child process trees with
grok_cancel.List recent bridge jobs and Grok sessions with
grok_list.Export Grok session transcripts as Markdown with
grok_export_session.Jobs automatically resume across max-turn or context boundaries and support configurable effort, timeouts, and session resumption.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@grok-bridgeAsk Grok to review this implementation at xhigh effort."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Grok Bridge
Grok Bridge is a local Model Context Protocol (MCP) server and Codex plugin that lets ChatGPT Desktop and Codex delegate substantial work to the locally installed Grok Build agent. It works in repositories and standalone workspace directories.
It supports durable logical jobs, automatic continuation of recoverable Grok execution boundaries, live progress logs, persisted final results, cancellation, session discovery, and transcript export. Delegated jobs use xhigh reasoning effort by default.
Community project. This repository is not affiliated with, endorsed by, or maintained by xAI or OpenAI. Grok and Grok Build are not included.
What it provides
Tool | Purpose |
| Check the Grok executable, authentication, runtime, and defaults. |
| Run a quick synchronous, read-only consultation. |
| Start a durable background logical job with workspace or enforced read-only access. |
| Read attempt/continuation state, progress tails, and the persisted final result. |
| Cancel a known job and its child process tree. |
| List recent bridge jobs and Grok sessions. |
| Export a Grok session transcript as Markdown. |
The bundled skill routes every task that must finish through grok_start, teaches Codex to recover an existing job after caller context compaction, and requires independent verification of Grok's output.
Related MCP server: Grok-Codex Bridge
Completion model
One grok_start call creates one logical job under ~/.grok/bridge/jobs, even when several Grok CLI processes are needed to finish it. The worker:
consumes Grok's
streaming-jsonoutput as a progress heartbeat;treats a normal
end_turnas completion, not process exit code alone;automatically resumes the same Grok session after max-turn, max-token, or context boundaries;
keeps per-attempt prompts, stdout, stderr, metadata, and the final result on disk;
stops on authentication, quota, permission, invalid-request, total-deadline, continuation-limit, or repeated no-progress blockers.
Grok's internal context compaction remains inside Grok and does not end a logical job. A Codex caller can reconnect later, find the job with grok_list, and continue polling it without watching an interactive console.
Requirements
Node.js 20 or newer.
Grok Build installed locally.
Grok authenticated through its own CLI, for example with
grok login --oauth, or with an authentication method supported by your Grok installation.ChatGPT Desktop, Codex CLI, or another MCP client with STDIO server support.
By default the bridge looks for Grok at ~/.grok/bin/grok (grok.exe on Windows), then falls back to grok on PATH. Set GROK_BRIDGE_GROK_EXE to override this.
Install
Clone the repository and install the locked dependencies:
git clone https://github.com/conrad85/grok-bridge.git
cd grok-bridge
npm ci
npm run test:doctorOption A: install as a local Codex plugin
From the cloned repository, register its local marketplace:
codex plugin marketplace add .Restart ChatGPT Desktop, open the Plugins Directory, select the Grok Bridge marketplace, and install the plugin. The plugin bundles both the MCP server configuration and the reusable skill. See the official OpenAI plugin packaging documentation for current marketplace behavior.
Option B: configure the MCP server directly
Use the absolute path to your clone:
codex mcp add grok_bridge -- node /absolute/path/to/grok-bridge/server/index.mjsTo make the workflow skill available to new local sessions, copy skills/grok-bridge into your personal skills directory:
macOS/Linux:
mkdir -p ~/.agents/skills
cp -R skills/grok-bridge ~/.agents/skills/grok-bridgeWindows PowerShell:
New-Item -ItemType Directory -Force "$env:USERPROFILE\.agents\skills" | Out-Null
Copy-Item -Recurse -Force "skills\grok-bridge" "$env:USERPROFILE\.agents\skills\grok-bridge"Restart the desktop app after changing MCP or skill configuration.
Example requests
"Ask Grok to review this implementation at xhigh effort."
"Use Grok as a builder, implement the feature, and run the tests."
"Have Grok reproduce this bug as a tester, then independently verify the result."
"Have Grok finish this report in the current non-repository workspace."
Configuration
Environment variable | Meaning |
| Absolute path or command name for the Grok executable. |
| Directory for bridge jobs and bounded logs. Defaults to |
| Optional authentication method when supported by the local Grok CLI. |
After installing or updating the plugin, start a new Codex session so its bundled skill and MCP tools are loaded together. Existing sessions retain the tool set they started with. Do not depend on paths under Codex plugin caches; invoke the plugin through the skill and grok_* tools exposed to the session.
Safety and privacy
Builder jobs run Grok in its workspace sandbox and add explicit denials for commits, pushes, publishing, deployment, and broad destructive commands. Read-only consultations use stricter permissions. These are defense-in-depth controls, not a substitute for reviewing delegated work.
Durable reviews, planning, and research can use grok_start with access: "read_only"; implementation uses access: "workspace".
Always pass an explicit absolute working directory. It may be a Git repository, an isolated worktree, or a dedicated non-repository task directory, but it must not be a filesystem root or an unnecessarily broad home directory. Do not run concurrent write jobs against the same files.
The bridge itself has no telemetry and does not bundle credentials. Grok Build may send prompts and project context to xAI as part of its normal operation. Job requests, output, and logs are stored locally under GROK_BRIDGE_HOME. Read PRIVACY.md and SECURITY.md before use.
Development
npm ci
npm run build:mcp
npm run check
npm test
npm run audit:publicThe committed dist/index.mjs and dist/worker.mjs are self-contained plugin runtime files. Codex plugin caches do not run npm install, so .mcp.json intentionally launches the bundle instead of the source tree. Rebuild and commit both files whenever server code or runtime dependencies change.
npm test uses a fake Grok executable to cover automatic resume after both historical max-turn result shapes, persisted final output, blocker classification, continuation exhaustion, a no-progress watchdog, and a non-repository working directory.
Tests that invoke a real authenticated Grok installation are intentionally separate:
npm run test:doctor
npm run test:live -- /absolute/project/path
npm run test:background -- /absolute/project/path
npm run test:builder -- /absolute/fixture/pathLicense
MIT. See LICENSE.
Available Tools
7 toolsgrok_cancelCancel Grok JobADestructiveIdempotent
Cancel one known Grok Bridge background job and its child process tree.
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes beyond the annotations by explicitly stating that cancellation includes the child process tree, which clarifies the destructive scope. It aligns with destructiveHint=true and idempotentHint=true, adding specific behavioral detail without contradicting annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the action and includes the key effect. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter tool with no output schema, the description covers the core purpose and the key destructive effect (child process tree). It is sufficiently complete for an agent to invoke correctly, though it lacks explicit mention of using grok_list to discover job IDs.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With schema description coverage at 0%, the description only indirectly references the job_id through 'one known', but it does not explain where to obtain it or any additional constraints. The schema already provides UUID format, so the description adds minimal semantic value beyond that.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Cancel' and identifies the resource 'one known Grok Bridge background job and its child process tree', clearly distinguishing it from siblings like grok_start, grok_poll, and grok_list. It explains both the action and the scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when a known job ID exists and you want to cancel it, but it does not explicitly mention alternatives (e.g., use grok_list to find job IDs) or when not to use it. The phrase 'one known' hints at a prerequisite but provides no direct guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
grok_consultConsult GrokARead-only
Run a synchronous, read-only Grok second opinion for planning, research, analysis, or code review. Uses xhigh reasoning by default and cannot edit files.
| Name | Required | Description | Default |
|---|---|---|---|
| cwd | Yes | Absolute path to the active project directory. | |
| role | No | reviewer | |
| model | No | ||
| effort | No | xhigh | |
| prompt | Yes | Exact task and desired evidence or output. | |
| max_turns | No | ||
| web_search | No | ||
| timeout_seconds | No | ||
| resume_session_id | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and destructiveHint=false. The description adds 'synchronous' and 'uses xhigh reasoning by default,' which are useful behavioral details beyond what annotations provide. It also reiterates 'cannot edit files,' reinforcing the read-only nature without contradicting the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the primary action and followed by a key behavioral note. Every phrase adds value—there is no repetition or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 9 parameters and no output schema, yet the description does not hint at what the tool returns or how the response is structured. It provides enough context to use the tool but leaves significant gaps about the result format and error behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 22%, with most parameters undocumented. The description does not explain the meaning or usage of the parameters beyond mentioning the default effort ('xhigh reasoning'), which is already present in the schema. It fails to compensate for the low schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description starts with a specific verb ('Run') and identifies the resource ('Grok second opinion') and scope ('synchronous, read-only'), with explicit use cases (planning, research, analysis, code review). It distinguishes from sibling tools like grok_start and grok_poll by emphasizing synchronous behavior.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies the intended use case (a one-off, synchronous consultation) and contrasts with the asynchronous workflow implied by sibling tools. However, it does not explicitly name alternatives or state when not to use this tool, so it stops short of a full 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
grok_doctorCheck Grok BridgeARead-onlyIdempotent
Check whether Grok Build, local authentication, the bridge runtime, and xhigh defaults are ready.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive behavior. The description adds context about the scope of the check (specific components), but does not disclose additional behavioral traits such as what happens if something is not ready or whether it returns a report. It neither contradicts annotations nor adds rich behavioral detail.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that lists exactly what is checked. Every word carries meaning and there is no fluff. It is appropriately concise for a zero-parameter health-check tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity (0 params, annotations covering safety), the description is mostly adequate, but it does not mention what the tool returns or what 'ready' means in practice. Since there is no output schema, the description should clarify the result format (e.g., a summary, a boolean, error indications). This gap prevents a high completeness score.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters, so the baseline for parameter semantics is 4. The description does not need to explain parameters, and it doesn't add any misleading parameter info. This score reflects the fact that no parameters exist and no clarification is required.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the verb 'check' and names the resource 'Grok Bridge' (from the title), specifying four readiness aspects. It clearly distinguishes this tool from siblings like grok_start or grok_consult because it is a diagnostic check. A slight deduction because 'ready' is not precisely defined, but the intent is unmistakable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when you need to verify readiness of Grok Build, local auth, bridge runtime, and xhigh defaults. No explicit when/when-not alternatives are given, but the imperative 'Check whether' conveys a diagnostic scenario. This is an implied-usage situation, not a clearly contrasted one.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
grok_export_sessionExport Grok SessionARead-onlyIdempotent
Export a Grok session transcript as Markdown so another ChatGPT session can inspect prior delegated work.
| Name | Required | Description | Default |
|---|---|---|---|
| max_chars | No | ||
| session_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering safety. The description adds the output format (Markdown) and the purpose, but does not disclose behaviors like truncation via max_chars or error handling. With annotations present, this modest addition merits a 3.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that front-loads the action and output format, with no unnecessary words. It earns every word and stays compact.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter export tool with strong annotations, the description covers the core function and return format. It could be more complete by explaining max_chars behavior and edge cases, but it is largely sufficient for selection and invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It only implies the role of session_id via 'a Grok session transcript' and never mentions max_chars or its effect on the output. The agent is left to infer the meaning of max_chars from the schema's min/max/default values, which is insufficient.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Export'), identifies the resource ('a Grok session transcript'), and specifies the output format ('as Markdown'). It also states the intended purpose ('so another ChatGPT session can inspect prior delegated work'), clearly distinguishing it from sibling tools like grok_list or grok_cancel.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool: when you need to share a Grok session transcript with another ChatGPT session. However, it does not explicitly mention when not to use it or point to alternative tools, so it stops short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
grok_listList Grok Jobs and SessionsBRead-onlyIdempotent
List recent bridge jobs plus Grok's local session index, useful for resuming work across ChatGPT sessions.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds that it lists 'recent' items and a 'local session index,' which gives some behavioral context but does not explain pagination, output format, or what 'recent' means.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences long, front-loaded with the action and resource, and every word contributes meaning. It is concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with good annotations, the description is adequate but has gaps: it doesn't define 'recent' or 'bridge jobs,' and it omits any explanation of the limit parameter. These omissions leave some ambiguity for an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does not mention the 'limit' parameter at all. Although 'limit' is self-explanatory by name, the description should compensate for the missing schema description by stating it controls the number of returned items.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('List') and the resources ('recent bridge jobs plus Grok's local session index'), which is specific and distinguishes it from sibling tools like grok_start or grok_cancel. However, it doesn't explicitly differentiate itself from siblings by naming alternatives, so it falls short of a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'useful for resuming work across ChatGPT sessions' provides a clear use case but does not explicitly state when not to use the tool or mention alternatives. This is implied usage guidance rather than explicit when/when-not/alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
grok_pollPoll Grok JobARead-onlyIdempotent
Read a background Grok job's state, final result, and bounded log tails. Continue polling while state is queued or running.
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes | ||
| max_chars | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate a safe read-only, idempotent operation. The description adds valuable context by explaining that polling should continue while the job is queued/running and that log tails are bounded, which helps the agent understand the expected call pattern.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a compact two-sentence summary that front-loads the core action and provides essential polling guidance without any fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read/poll tool with annotations covering safety and idempotency, the description covers the key behavior (what is read, when to poll). It could mention return values in more detail, but there is no output schema, and the description gives enough to use the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for parameter meanings. It mentions 'bounded log tails' but doesn't explicitly connect it to max_chars, and job_id is only implied. The parameter names are somewhat self-explanatory, but the description adds little beyond the schema constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as a read operation for background Grok jobs, specifying that it retrieves state, final result, and bounded log tails. It distinguishes itself from siblings like grok_start and grok_cancel by focusing on polling an existing job's status.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear usage context: poll repeatedly while the job state is queued or running. It doesn't explicitly name alternative tools, but the sibling names (e.g., grok_list, grok_cancel) and the polling nature make the intended use clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
grok_startStart Grok BuilderADestructive
Start a durable background Grok job for implementation, debugging, testing, or review. It may edit files and run commands inside cwd. Poll the returned job_id until terminal.
| Name | Required | Description | Default |
|---|---|---|---|
| cwd | Yes | Absolute path to the active project directory. | |
| role | No | builder | |
| model | No | ||
| effort | No | xhigh | |
| prompt | Yes | Complete delegated task with scope and acceptance criteria. | |
| max_turns | No | ||
| web_search | No | ||
| timeout_seconds | No | ||
| resume_session_id | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds behavioral details beyond the annotations: it states the job is durable and background, may edit files/run commands in cwd, and requires polling. These specifics align with the destructiveHint and openWorldHint annotations without contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three concise sentences front-load the verb and core purpose, with no fluff or redundancy. Every sentence adds value (purpose, side effects, workflow).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the essential workflow, safety, and return via job_id, but given no output schema and 9 parameters, it omits details about optional parameters and the meaning of 'terminal.' It is sufficient for a basic agent but not fully complete for complex usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With schema description coverage at only 22%, the description must compensate but only touches on cwd ('inside cwd') and role (via 'implementation, debugging, testing, or review'). It does not explain parameters like effort, model, max_turns, web_search, timeout_seconds, or resume_session_id, leaving them ambiguous.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the verb 'Start' to indicate an action, specifies the resource as 'durable background Grok job,' and lists intended purposes (implementation, debugging, testing, review). This clearly distinguishes it from siblings like grok_consult or grok_poll.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides clear context that this is for long-running background jobs and advises polling the job_id, but it does not explicitly state when to use this over alternatives such as grok_consult for shorter interactions. No when-not guidance is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
7 tool updates
v0.1.0- First observed
grok_cancel - First observed
grok_consult - First observed
grok_doctor - First observed
grok_export_session - First observed
grok_list - First observed
grok_poll - First observed
grok_start
TDQS
Each tool has a distinct, non-overlapping purpose: health check, synchronous consult, async job lifecycle (start/poll/cancel), listing, and session export. No two tools could be confused for one another.
All tools share the consistent grok_ prefix and use clear, action-oriented snake_case names. While some are simple verbs (grok_start) and others verb-noun (grok_export_session), the pattern is uniform and predictable.
Seven tools is well-scoped for a bridge server dedicated to Grok integration. Each tool covers a necessary operation without bloat or redundancy.
The tool set covers the full lifecycle: readiness check, synchronous consultation, background job management (start, poll, cancel), history listing, and session export. No obvious gaps for the domain.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Operate Linux, macOS and Windows from your LLM. Every action runs through an auditable allowlist.
The team layer for AI coding agents: shared contracts, collision alerts, E2EE sessions.
- mcp-serverOAuthai.cdbx
Build Apps and run code in 30 languages — sandboxed, with persistent sessions for agent loops.
Build agents to automate any background task. Works with your ChatGPT/Claude subscription.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceConnects OpenAI Codex and Claude Code to the local Grok Build CLI for second-opinion code reviews, bounded coding tasks, web research, media generation, and TTS.2Apache 2.0
- AlicenseAqualityCmaintenanceEnables Codex to delegate coding tasks to Grok Build CLI, with Codex handling planning and review while Grok executes.63MIT
- AlicenseNot gradedqualityBmaintenanceEnables ChatGPT (or any MCP client) to delegate coding tasks to a local Hermes-backed agent with async job management, supporting read-only investigation, implementation, and continuation of sessions via secure MCP tunnel.1MIT
- AlicenseNot gradedqualityCmaintenanceEnables Grok Build to orchestrate the local Codex CLI for code reviews, adversarial reviews, task rescue, session transfer, and background job management through MCP tools.1Apache 2.0
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/conrad85/grok-bridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server