docs: document XCODEBUILDMCP_CWD, showTestTiming, and per-test results#9
Open
cameroncooke wants to merge 1 commit intomainfrom
Open
docs: document XCODEBUILDMCP_CWD, showTestTiming, and per-test results#9cameroncooke wants to merge 1 commit intomainfrom
cameroncooke wants to merge 1 commit intomainfrom
Conversation
Three new pieces of public surface coming in XcodeBuildMCP 2.4: - XCODEBUILDMCP_CWD env var for working directory override (env-vars.mdx). Most useful when launching XcodeBuildMCP from a host that can configure env vars but not the spawn directory (e.g. MCP Inspector). - showTestTiming config option / XCODEBUILDMCP_SHOW_TEST_TIMING env var (configuration.mdx, env-vars.mdx). Toggles the per-test "Test Results:" block in text output. - testCases array on the structured xcodebuildmcp.output.test-result response (output-formats.mdx). Always emitted in JSON / structured content; the showTestTiming flag only controls text rendering. Tracks getsentry/XcodeBuildMCP#374.
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Documents three new pieces of public surface landing in getsentry/XcodeBuildMCP#374:
XCODEBUILDMCP_CWDenv var for working directory override.showTestTimingconfig option (andXCODEBUILDMCP_SHOW_TEST_TIMINGenv var) toggling the per-test "Test Results:" block in text output.testCasesarray on the structuredxcodebuildmcp.output.test-resultresponse.Changes
app/docs/_content/env-vars.mdxXCODEBUILDMCP_SHOW_TEST_TIMINGto the runtime config env var table.XCODEBUILDMCP_CWDwith usage guidance and an MCP client config example. Includes the~/expansion rule and the warn-and-fall-back behavior on chdir failure.app/docs/_content/configuration.mdxshowTestTimingunder "Test output" in the config.yaml example and to the runtime config reference table.app/docs/_content/output-formats.mdxtestCasesarray shape onxcodebuildmcp.output.test-result, with a sample structured response. Calls out the JSON/text split (theshowTestTimingflag is purely a text-rendering toggle) and the parameterized-Swift-Testing limitation.Test plan
pnpm devrender check — let me know if you want me to spin it up before merge.Cross-reference
Pairs with XcodeBuildMCP#374. Safe to merge before or after the source PR; the docs describe behavior that ships in 2.4.