@@ -78,7 +78,7 @@ Then follow the steps for the type of testing you want to do: from the browser o
7878### Browser
7979
80801 . Build the local server: ` yarn build ` .
81- 2 . Start the MCP Inspector server: ` mcp-inspector node lib/index .js --orgs DEFAULT_TARGET_ORG ` .
81+ 2 . Start the MCP Inspector server: ` mcp-inspector node bin/run .js --toolsets all --orgs DEFAULT_TARGET_ORG ` .
82823 . If successful, open the specified localhost URL in your browser. In this example it's ` http://127.0.0.1:6274 ` :
8383
8484 ```
@@ -101,7 +101,7 @@ Then follow the steps for the type of testing you want to do: from the browser o
101101This example calls the ` run_soql_query ` tool from the context of a Salesforce DX project:
102102
103103``` shell
104- mcp-inspector --cli node bin/run.js --orgs DEFAULT_TARGET_ORG \
104+ mcp-inspector --cli node bin/run.js --toolsets all -- orgs DEFAULT_TARGET_ORG \
105105 --method tools/call \
106106 --tool-name run_soql_query \
107107 --tool-arg query=" select id from account limit 5" \
@@ -123,7 +123,7 @@ ata/v63.0/sobjects/Account/001DK00001BFbHbYAL\"\n },\n \"Id\": \"001DK
123123Learn more about each tool argument by looking at its definition in the code, the MCP Inspector browser UI, or by listing all tools using the MCP Inspector CLI. For example:
124124
125125``` shell
126- mcp-inspector --cli node bin/run.js --orgs DEFAULT_TARGET_ORG --method tools/list
126+ mcp-inspector --cli node bin/run.js --toolsets all -- orgs DEFAULT_TARGET_ORG --method tools/list
127127```
128128
129129### Unit Tests
@@ -146,7 +146,7 @@ You can use the VS Code debugger with the MCP Inspector CLI to step through the
146146Here's an example of calling the ` run_soql_query ` tool:
147147
148148``` shell
149- MCP_SERVER_REQUEST_TIMEOUT=120000 mcp-inspector --cli node --inspect-brk bin/run.js -o DEFAULT_TARGET_ORG --no-telemetry --method tools/call \
149+ MCP_SERVER_REQUEST_TIMEOUT=120000 mcp-inspector --cli node --inspect-brk bin/run.js --toolsets all - o DEFAULT_TARGET_ORG --no-telemetry --method tools/call \
150150 --tool-name run_soql_query \
151151 --tool-arg directory=" /path/to/sfdx-project" \
152152 --tool-arg query=" select name from Property__c order by name asc" \
0 commit comments