MCP Documentation Changes Requests in Code Review (#3507)

Add in review changes from @bolinfest that were dropped due to
auto-merge (#3345).
This commit is contained in:
Charlie Weems
2025-09-12 09:04:49 -07:00
committed by GitHub
parent 90965fbc84
commit f805d17930

View File

@@ -54,22 +54,22 @@ Send a `tools/list` request and you will see that there are two tools available:
Property | Type | Description Property | Type | Description
-------------------|----------|---------------------------------------------------------------------------------------------------------- -------------------|----------|----------------------------------------------------------------------------------------------------------
approval-policy | string | Approval policy for shell commands generated by the model: `untrusted`, `on-failure`, `never`. **`prompt`** (required) | string | The initial user prompt to start the Codex conversation.
base-instructions | string | The set of instructions to use instead of the default ones. `approval-policy` | string | Approval policy for shell commands generated by the model: `untrusted`, `on-failure`, `never`.
config | object | Individual [config settings](https://github.com/openai/codex/blob/main/docs/config.md#config) that will override what is in CODEX_HOME/config.toml. `base-instructions` | string | The set of instructions to use instead of the default ones.
cwd | string | Working directory for the session. If relative, resolved against the server process's current directory. `config` | object | Individual [config settings](https://github.com/openai/codex/blob/main/docs/config.md#config) that will override what is in `$CODEX_HOME/config.toml`.
include-plan-tool | boolean | Whether to include the plan tool in the conversation. `cwd` | string | Working directory for the session. If relative, resolved against the server process's current directory.
model | string | Optional override for the model name (e.g. "o3", "o4-mini"). `include-plan-tool` | boolean | Whether to include the plan tool in the conversation.
profile | string | Configuration profile from config.toml to specify default options. `model` | string | Optional override for the model name (e.g. `o3`, `o4-mini`).
**prompt** (required) | string | The initial user prompt to start the Codex conversation. `profile` | string | Configuration profile from `config.toml` to specify default options.
sandbox | string | Sandbox mode: `read-only`, `workspace-write`, or `danger-full-access`. `sandbox` | string | Sandbox mode: `read-only`, `workspace-write`, or `danger-full-access`.
**`codex-reply`** - Continue a Codex session by providing the session id and prompt. The `codex-reply` tool takes the following properties: **`codex-reply`** - Continue a Codex session by providing the conversation id and prompt. The `codex-reply` tool takes the following properties:
Property | Type | Description Property | Type | Description
-----------|--------|--------------------------------------------------------------- -----------|--------|---------------------------------------------------------------
**prompt** (required) | string | The next user prompt to continue the Codex conversation. **`prompt`** (required) | string | The next user prompt to continue the Codex conversation.
**conversationId** (required) | string | The id of the conversation to continue. **`conversationId`** (required) | string | The id of the conversation to continue.
### Trying it Out ### Trying it Out
> [!TIP] > [!TIP]