From ac0901ada59362fc1447d2954c3c77c1661e1be5 Mon Sep 17 00:00:00 2001 From: Alex Fallah Date: Mon, 2 Jun 2025 11:50:56 -0400 Subject: [PATCH] Fix invalid JSON syntax in README configuration examples --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 615c35d5..d308fec3 100644 --- a/README.md +++ b/README.md @@ -104,8 +104,8 @@ Configure your MCP client (Windsurf, Cursor, Claude Desktop, Claude Code etc.) t "XcodeBuildMCP": { "command": "npx", "args": [ - "-y" - "xcodebuildmcp@latest", + "-y", + "xcodebuildmcp@latest" ] } } @@ -184,7 +184,7 @@ XcodeBuildMCP includes experimental support for incremental builds. This feature To enable incremental builds, set the `INCREMENTAL_BUILDS_ENABLED` environment variable to `true`: Example MCP client configuration: -```bash +```json { "mcpServers": { "XcodeBuildMCP": { @@ -259,7 +259,7 @@ This project uses [Sentry](https://sentry.io/) for error monitoring and diagnost - If you do not wish to send error logs to Sentry, you can opt out by setting the environment variable `SENTRY_DISABLED=true`. Example MCP client configuration: -```bash +```json { "mcpServers": { "XcodeBuildMCP": { @@ -282,7 +282,7 @@ By default all tools are enabled but for some clients it may be useful to only e Once you have enabled one or more tools or groups of tools all other tools will be disabled. For example, to enable only the simulator related tools, you can set the environment variable to `XCODEBUILDMCP_GROUP_IOS_SIMULATOR_WORKFLOW=true` this will only expose tools for building, running and debugging on simulators -```bash +```json { "mcpServers": { "XcodeBuildMCP": {