phenoml 6.3.0 → 6.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist/cjs/Client.js +2 -2
  2. package/dist/cjs/api/resources/agent/client/requests/AgentChatRequest.d.ts +2 -0
  3. package/dist/cjs/api/resources/construe/client/Client.d.ts +2 -2
  4. package/dist/cjs/api/resources/construe/client/Client.js +6 -6
  5. package/dist/cjs/api/resources/fhir/client/Client.d.ts +49 -49
  6. package/dist/cjs/api/resources/fhir/client/Client.js +69 -69
  7. package/dist/cjs/api/resources/fhirProvider/client/Client.d.ts +10 -10
  8. package/dist/cjs/api/resources/fhirProvider/client/Client.js +25 -25
  9. package/dist/cjs/api/resources/tools/resources/mcpServer/client/Client.d.ts +4 -4
  10. package/dist/cjs/api/resources/tools/resources/mcpServer/client/Client.js +10 -10
  11. package/dist/cjs/api/resources/tools/resources/mcpServer/resources/tools/client/Client.d.ts +8 -8
  12. package/dist/cjs/api/resources/tools/resources/mcpServer/resources/tools/client/Client.js +20 -20
  13. package/dist/cjs/core/fetcher/Fetcher.js +13 -7
  14. package/dist/cjs/core/fetcher/makeRequest.d.ts +1 -1
  15. package/dist/cjs/version.d.ts +1 -1
  16. package/dist/cjs/version.js +1 -1
  17. package/dist/esm/Client.mjs +2 -2
  18. package/dist/esm/api/resources/agent/client/requests/AgentChatRequest.d.mts +2 -0
  19. package/dist/esm/api/resources/construe/client/Client.d.mts +2 -2
  20. package/dist/esm/api/resources/construe/client/Client.mjs +6 -6
  21. package/dist/esm/api/resources/fhir/client/Client.d.mts +49 -49
  22. package/dist/esm/api/resources/fhir/client/Client.mjs +69 -69
  23. package/dist/esm/api/resources/fhirProvider/client/Client.d.mts +10 -10
  24. package/dist/esm/api/resources/fhirProvider/client/Client.mjs +25 -25
  25. package/dist/esm/api/resources/tools/resources/mcpServer/client/Client.d.mts +4 -4
  26. package/dist/esm/api/resources/tools/resources/mcpServer/client/Client.mjs +10 -10
  27. package/dist/esm/api/resources/tools/resources/mcpServer/resources/tools/client/Client.d.mts +8 -8
  28. package/dist/esm/api/resources/tools/resources/mcpServer/resources/tools/client/Client.mjs +20 -20
  29. package/dist/esm/core/fetcher/Fetcher.mjs +13 -7
  30. package/dist/esm/core/fetcher/makeRequest.d.mts +1 -1
  31. package/dist/esm/version.d.mts +1 -1
  32. package/dist/esm/version.mjs +1 -1
  33. package/package.json +1 -1
  34. package/reference.md +41 -41
package/reference.md CHANGED
@@ -1632,7 +1632,7 @@ await client.construe.listCodesInACodeSystem("ICD-10-CM", {
1632
1632
  </dl>
1633
1633
  </details>
1634
1634
 
1635
- <details><summary><code>client.construe.<a href="/src/api/resources/construe/client/Client.ts">getASpecificCode</a>(codesystem, codeId, { ...params }) -> phenoml.GetCodeResponse</code></summary>
1635
+ <details><summary><code>client.construe.<a href="/src/api/resources/construe/client/Client.ts">getASpecificCode</a>(codesystem, codeID, { ...params }) -> phenoml.GetCodeResponse</code></summary>
1636
1636
  <dl>
1637
1637
  <dd>
1638
1638
 
@@ -1687,7 +1687,7 @@ await client.construe.getASpecificCode("ICD-10-CM", "E11.65", {
1687
1687
  <dl>
1688
1688
  <dd>
1689
1689
 
1690
- **codeId:** `string` — The code identifier
1690
+ **codeID:** `string` — The code identifier
1691
1691
 
1692
1692
  </dd>
1693
1693
  </dl>
@@ -1907,7 +1907,7 @@ await client.construe.terminologyServerTextSearch("ICD-10-CM", {
1907
1907
  </details>
1908
1908
 
1909
1909
  ## Fhir
1910
- <details><summary><code>client.fhir.<a href="/src/api/resources/fhir/client/Client.ts">search</a>(fhirProviderId, fhirPath, { ...params }) -> phenoml.FhirSearchResponse</code></summary>
1910
+ <details><summary><code>client.fhir.<a href="/src/api/resources/fhir/client/Client.ts">search</a>(fhir_provider_id, fhir_path, { ...params }) -> phenoml.FhirSearchResponse</code></summary>
1911
1911
  <dl>
1912
1912
  <dd>
1913
1913
 
@@ -1955,7 +1955,7 @@ await client.fhir.search("550e8400-e29b-41d4-a716-446655440000", "Patient", {
1955
1955
  <dl>
1956
1956
  <dd>
1957
1957
 
1958
- **fhirProviderId:** `string`
1958
+ **fhir_provider_id:** `string`
1959
1959
 
1960
1960
  The ID of the FHIR provider to use. Can be either:
1961
1961
  - A UUID representing the provider ID
@@ -1967,7 +1967,7 @@ The ID of the FHIR provider to use. Can be either:
1967
1967
  <dl>
1968
1968
  <dd>
1969
1969
 
1970
- **fhirPath:** `string`
1970
+ **fhir_path:** `string`
1971
1971
 
1972
1972
  The FHIR resource path to operate on. This follows FHIR RESTful API conventions.
1973
1973
  Examples:
@@ -2001,7 +2001,7 @@ Examples:
2001
2001
  </dl>
2002
2002
  </details>
2003
2003
 
2004
- <details><summary><code>client.fhir.<a href="/src/api/resources/fhir/client/Client.ts">create</a>(fhirProviderId, fhirPath, { ...params }) -> phenoml.FhirResource</code></summary>
2004
+ <details><summary><code>client.fhir.<a href="/src/api/resources/fhir/client/Client.ts">create</a>(fhir_provider_id, fhir_path, { ...params }) -> phenoml.FhirResource</code></summary>
2005
2005
  <dl>
2006
2006
  <dd>
2007
2007
 
@@ -2062,7 +2062,7 @@ await client.fhir.create("550e8400-e29b-41d4-a716-446655440000", "Patient", {
2062
2062
  <dl>
2063
2063
  <dd>
2064
2064
 
2065
- **fhirProviderId:** `string`
2065
+ **fhir_provider_id:** `string`
2066
2066
 
2067
2067
  The ID of the FHIR provider to use. Can be either:
2068
2068
  - A UUID representing the provider ID
@@ -2074,7 +2074,7 @@ The ID of the FHIR provider to use. Can be either:
2074
2074
  <dl>
2075
2075
  <dd>
2076
2076
 
2077
- **fhirPath:** `string`
2077
+ **fhir_path:** `string`
2078
2078
 
2079
2079
  The FHIR resource path to operate on. This follows FHIR RESTful API conventions.
2080
2080
  Examples:
@@ -2108,7 +2108,7 @@ Examples:
2108
2108
  </dl>
2109
2109
  </details>
2110
2110
 
2111
- <details><summary><code>client.fhir.<a href="/src/api/resources/fhir/client/Client.ts">upsert</a>(fhirProviderId, fhirPath, { ...params }) -> phenoml.FhirResource</code></summary>
2111
+ <details><summary><code>client.fhir.<a href="/src/api/resources/fhir/client/Client.ts">upsert</a>(fhir_provider_id, fhir_path, { ...params }) -> phenoml.FhirResource</code></summary>
2112
2112
  <dl>
2113
2113
  <dd>
2114
2114
 
@@ -2171,7 +2171,7 @@ await client.fhir.upsert("550e8400-e29b-41d4-a716-446655440000", "Patient", {
2171
2171
  <dl>
2172
2172
  <dd>
2173
2173
 
2174
- **fhirProviderId:** `string`
2174
+ **fhir_provider_id:** `string`
2175
2175
 
2176
2176
  The ID of the FHIR provider to use. Can be either:
2177
2177
  - A UUID representing the provider ID
@@ -2183,7 +2183,7 @@ The ID of the FHIR provider to use. Can be either:
2183
2183
  <dl>
2184
2184
  <dd>
2185
2185
 
2186
- **fhirPath:** `string`
2186
+ **fhir_path:** `string`
2187
2187
 
2188
2188
  The FHIR resource path to operate on. This follows FHIR RESTful API conventions.
2189
2189
  Examples:
@@ -2217,7 +2217,7 @@ Examples:
2217
2217
  </dl>
2218
2218
  </details>
2219
2219
 
2220
- <details><summary><code>client.fhir.<a href="/src/api/resources/fhir/client/Client.ts">delete</a>(fhirProviderId, fhirPath, { ...params }) -> Record<string, unknown></code></summary>
2220
+ <details><summary><code>client.fhir.<a href="/src/api/resources/fhir/client/Client.ts">delete</a>(fhir_provider_id, fhir_path, { ...params }) -> Record<string, unknown></code></summary>
2221
2221
  <dl>
2222
2222
  <dd>
2223
2223
 
@@ -2265,7 +2265,7 @@ await client.fhir.delete("550e8400-e29b-41d4-a716-446655440000", "Patient", {
2265
2265
  <dl>
2266
2266
  <dd>
2267
2267
 
2268
- **fhirProviderId:** `string`
2268
+ **fhir_provider_id:** `string`
2269
2269
 
2270
2270
  The ID of the FHIR provider to use. Can be either:
2271
2271
  - A UUID representing the provider ID
@@ -2277,7 +2277,7 @@ The ID of the FHIR provider to use. Can be either:
2277
2277
  <dl>
2278
2278
  <dd>
2279
2279
 
2280
- **fhirPath:** `string`
2280
+ **fhir_path:** `string`
2281
2281
 
2282
2282
  The FHIR resource path to operate on. This follows FHIR RESTful API conventions.
2283
2283
  Examples:
@@ -2311,7 +2311,7 @@ Examples:
2311
2311
  </dl>
2312
2312
  </details>
2313
2313
 
2314
- <details><summary><code>client.fhir.<a href="/src/api/resources/fhir/client/Client.ts">patch</a>(fhirProviderId, fhirPath, { ...params }) -> phenoml.FhirResource</code></summary>
2314
+ <details><summary><code>client.fhir.<a href="/src/api/resources/fhir/client/Client.ts">patch</a>(fhir_provider_id, fhir_path, { ...params }) -> phenoml.FhirResource</code></summary>
2315
2315
  <dl>
2316
2316
  <dd>
2317
2317
 
@@ -2369,7 +2369,7 @@ await client.fhir.patch("550e8400-e29b-41d4-a716-446655440000", "Patient", {
2369
2369
  <dl>
2370
2370
  <dd>
2371
2371
 
2372
- **fhirProviderId:** `string`
2372
+ **fhir_provider_id:** `string`
2373
2373
 
2374
2374
  The ID of the FHIR provider to use. Can be either:
2375
2375
  - A UUID representing the provider ID
@@ -2381,7 +2381,7 @@ The ID of the FHIR provider to use. Can be either:
2381
2381
  <dl>
2382
2382
  <dd>
2383
2383
 
2384
- **fhirPath:** `string`
2384
+ **fhir_path:** `string`
2385
2385
 
2386
2386
  The FHIR resource path to operate on. This follows FHIR RESTful API conventions.
2387
2387
  Examples:
@@ -2415,7 +2415,7 @@ Examples:
2415
2415
  </dl>
2416
2416
  </details>
2417
2417
 
2418
- <details><summary><code>client.fhir.<a href="/src/api/resources/fhir/client/Client.ts">executeBundle</a>(fhirProviderId, { ...params }) -> phenoml.FhirBundle</code></summary>
2418
+ <details><summary><code>client.fhir.<a href="/src/api/resources/fhir/client/Client.ts">executeBundle</a>(fhir_provider_id, { ...params }) -> phenoml.FhirBundle</code></summary>
2419
2419
  <dl>
2420
2420
  <dd>
2421
2421
 
@@ -2497,7 +2497,7 @@ await client.fhir.executeBundle("550e8400-e29b-41d4-a716-446655440000", {
2497
2497
  <dl>
2498
2498
  <dd>
2499
2499
 
2500
- **fhirProviderId:** `string`
2500
+ **fhir_provider_id:** `string`
2501
2501
 
2502
2502
  The ID of the FHIR provider to use. Can be either:
2503
2503
  - A UUID representing the provider ID
@@ -2658,7 +2658,7 @@ await client.fhirProvider.list();
2658
2658
  </dl>
2659
2659
  </details>
2660
2660
 
2661
- <details><summary><code>client.fhirProvider.<a href="/src/api/resources/fhirProvider/client/Client.ts">get</a>(fhirProviderId) -> phenoml.FhirProviderResponse</code></summary>
2661
+ <details><summary><code>client.fhirProvider.<a href="/src/api/resources/fhirProvider/client/Client.ts">get</a>(fhir_provider_id) -> phenoml.FhirProviderResponse</code></summary>
2662
2662
  <dl>
2663
2663
  <dd>
2664
2664
 
@@ -2704,7 +2704,7 @@ await client.fhirProvider.get("fhir_provider_id");
2704
2704
  <dl>
2705
2705
  <dd>
2706
2706
 
2707
- **fhirProviderId:** `string` — ID of the FHIR provider to retrieve
2707
+ **fhir_provider_id:** `string` — ID of the FHIR provider to retrieve
2708
2708
 
2709
2709
  </dd>
2710
2710
  </dl>
@@ -2724,7 +2724,7 @@ await client.fhirProvider.get("fhir_provider_id");
2724
2724
  </dl>
2725
2725
  </details>
2726
2726
 
2727
- <details><summary><code>client.fhirProvider.<a href="/src/api/resources/fhirProvider/client/Client.ts">delete</a>(fhirProviderId) -> phenoml.FhirProviderDeleteResponse</code></summary>
2727
+ <details><summary><code>client.fhirProvider.<a href="/src/api/resources/fhirProvider/client/Client.ts">delete</a>(fhir_provider_id) -> phenoml.FhirProviderDeleteResponse</code></summary>
2728
2728
  <dl>
2729
2729
  <dd>
2730
2730
 
@@ -2769,7 +2769,7 @@ await client.fhirProvider.delete("fhir_provider_id");
2769
2769
  <dl>
2770
2770
  <dd>
2771
2771
 
2772
- **fhirProviderId:** `string` — ID of the FHIR provider to delete
2772
+ **fhir_provider_id:** `string` — ID of the FHIR provider to delete
2773
2773
 
2774
2774
  </dd>
2775
2775
  </dl>
@@ -2789,7 +2789,7 @@ await client.fhirProvider.delete("fhir_provider_id");
2789
2789
  </dl>
2790
2790
  </details>
2791
2791
 
2792
- <details><summary><code>client.fhirProvider.<a href="/src/api/resources/fhirProvider/client/Client.ts">addAuthConfig</a>(fhirProviderId, { ...params }) -> phenoml.FhirProviderResponse</code></summary>
2792
+ <details><summary><code>client.fhirProvider.<a href="/src/api/resources/fhirProvider/client/Client.ts">addAuthConfig</a>(fhir_provider_id, { ...params }) -> phenoml.FhirProviderResponse</code></summary>
2793
2793
  <dl>
2794
2794
  <dd>
2795
2795
 
@@ -2837,7 +2837,7 @@ await client.fhirProvider.addAuthConfig("1716d214-de93-43a4-aa6b-a878d864e2ad",
2837
2837
  <dl>
2838
2838
  <dd>
2839
2839
 
2840
- **fhirProviderId:** `string` — ID of the FHIR provider to add auth config to
2840
+ **fhir_provider_id:** `string` — ID of the FHIR provider to add auth config to
2841
2841
 
2842
2842
  </dd>
2843
2843
  </dl>
@@ -2865,7 +2865,7 @@ await client.fhirProvider.addAuthConfig("1716d214-de93-43a4-aa6b-a878d864e2ad",
2865
2865
  </dl>
2866
2866
  </details>
2867
2867
 
2868
- <details><summary><code>client.fhirProvider.<a href="/src/api/resources/fhirProvider/client/Client.ts">setActiveAuthConfig</a>(fhirProviderId, { ...params }) -> phenoml.FhirProviderResponse</code></summary>
2868
+ <details><summary><code>client.fhirProvider.<a href="/src/api/resources/fhirProvider/client/Client.ts">setActiveAuthConfig</a>(fhir_provider_id, { ...params }) -> phenoml.FhirProviderResponse</code></summary>
2869
2869
  <dl>
2870
2870
  <dd>
2871
2871
 
@@ -2916,7 +2916,7 @@ await client.fhirProvider.setActiveAuthConfig("1716d214-de93-43a4-aa6b-a878d864e
2916
2916
  <dl>
2917
2917
  <dd>
2918
2918
 
2919
- **fhirProviderId:** `string` — ID of the FHIR provider
2919
+ **fhir_provider_id:** `string` — ID of the FHIR provider
2920
2920
 
2921
2921
  </dd>
2922
2922
  </dl>
@@ -2944,7 +2944,7 @@ await client.fhirProvider.setActiveAuthConfig("1716d214-de93-43a4-aa6b-a878d864e
2944
2944
  </dl>
2945
2945
  </details>
2946
2946
 
2947
- <details><summary><code>client.fhirProvider.<a href="/src/api/resources/fhirProvider/client/Client.ts">removeAuthConfig</a>(fhirProviderId, { ...params }) -> phenoml.FhirProviderRemoveAuthConfigResponse</code></summary>
2947
+ <details><summary><code>client.fhirProvider.<a href="/src/api/resources/fhirProvider/client/Client.ts">removeAuthConfig</a>(fhir_provider_id, { ...params }) -> phenoml.FhirProviderRemoveAuthConfigResponse</code></summary>
2948
2948
  <dl>
2949
2949
  <dd>
2950
2950
 
@@ -2992,7 +2992,7 @@ await client.fhirProvider.removeAuthConfig("1716d214-de93-43a4-aa6b-a878d864e2ad
2992
2992
  <dl>
2993
2993
  <dd>
2994
2994
 
2995
- **fhirProviderId:** `string` — ID of the FHIR provider
2995
+ **fhir_provider_id:** `string` — ID of the FHIR provider
2996
2996
 
2997
2997
  </dd>
2998
2998
  </dl>
@@ -4162,7 +4162,7 @@ await client.tools.mcpServer.list();
4162
4162
  </dl>
4163
4163
  </details>
4164
4164
 
4165
- <details><summary><code>client.tools.mcpServer.<a href="/src/api/resources/tools/resources/mcpServer/client/Client.ts">get</a>(mcpServerId) -> phenoml.McpServerResponse</code></summary>
4165
+ <details><summary><code>client.tools.mcpServer.<a href="/src/api/resources/tools/resources/mcpServer/client/Client.ts">get</a>(mcp_server_id) -> phenoml.McpServerResponse</code></summary>
4166
4166
  <dl>
4167
4167
  <dd>
4168
4168
 
@@ -4205,7 +4205,7 @@ await client.tools.mcpServer.get("mcp_server_id");
4205
4205
  <dl>
4206
4206
  <dd>
4207
4207
 
4208
- **mcpServerId:** `string` — ID of the MCP server to retrieve
4208
+ **mcp_server_id:** `string` — ID of the MCP server to retrieve
4209
4209
 
4210
4210
  </dd>
4211
4211
  </dl>
@@ -4225,7 +4225,7 @@ await client.tools.mcpServer.get("mcp_server_id");
4225
4225
  </dl>
4226
4226
  </details>
4227
4227
 
4228
- <details><summary><code>client.tools.mcpServer.<a href="/src/api/resources/tools/resources/mcpServer/client/Client.ts">delete</a>(mcpServerId) -> phenoml.McpServerResponse</code></summary>
4228
+ <details><summary><code>client.tools.mcpServer.<a href="/src/api/resources/tools/resources/mcpServer/client/Client.ts">delete</a>(mcp_server_id) -> phenoml.McpServerResponse</code></summary>
4229
4229
  <dl>
4230
4230
  <dd>
4231
4231
 
@@ -4268,7 +4268,7 @@ await client.tools.mcpServer.delete("mcp_server_id");
4268
4268
  <dl>
4269
4269
  <dd>
4270
4270
 
4271
- **mcpServerId:** `string` — ID of the MCP server to delete
4271
+ **mcp_server_id:** `string` — ID of the MCP server to delete
4272
4272
 
4273
4273
  </dd>
4274
4274
  </dl>
@@ -4289,7 +4289,7 @@ await client.tools.mcpServer.delete("mcp_server_id");
4289
4289
  </details>
4290
4290
 
4291
4291
  ## Tools McpServer Tools
4292
- <details><summary><code>client.tools.mcpServer.tools.<a href="/src/api/resources/tools/resources/mcpServer/resources/tools/client/Client.ts">list</a>(mcpServerId) -> phenoml.McpServerToolResponse</code></summary>
4292
+ <details><summary><code>client.tools.mcpServer.tools.<a href="/src/api/resources/tools/resources/mcpServer/resources/tools/client/Client.ts">list</a>(mcp_server_id) -> phenoml.McpServerToolResponse</code></summary>
4293
4293
  <dl>
4294
4294
  <dd>
4295
4295
 
@@ -4332,7 +4332,7 @@ await client.tools.mcpServer.tools.list("mcp_server_id");
4332
4332
  <dl>
4333
4333
  <dd>
4334
4334
 
4335
- **mcpServerId:** `string` — ID of the MCP server to list tools for
4335
+ **mcp_server_id:** `string` — ID of the MCP server to list tools for
4336
4336
 
4337
4337
  </dd>
4338
4338
  </dl>
@@ -4352,7 +4352,7 @@ await client.tools.mcpServer.tools.list("mcp_server_id");
4352
4352
  </dl>
4353
4353
  </details>
4354
4354
 
4355
- <details><summary><code>client.tools.mcpServer.tools.<a href="/src/api/resources/tools/resources/mcpServer/resources/tools/client/Client.ts">get</a>(mcpServerToolId) -> phenoml.McpServerToolResponse</code></summary>
4355
+ <details><summary><code>client.tools.mcpServer.tools.<a href="/src/api/resources/tools/resources/mcpServer/resources/tools/client/Client.ts">get</a>(mcp_server_tool_id) -> phenoml.McpServerToolResponse</code></summary>
4356
4356
  <dl>
4357
4357
  <dd>
4358
4358
 
@@ -4395,7 +4395,7 @@ await client.tools.mcpServer.tools.get("mcp_server_tool_id");
4395
4395
  <dl>
4396
4396
  <dd>
4397
4397
 
4398
- **mcpServerToolId:** `string` — ID of the MCP server tool to retrieve
4398
+ **mcp_server_tool_id:** `string` — ID of the MCP server tool to retrieve
4399
4399
 
4400
4400
  </dd>
4401
4401
  </dl>
@@ -4415,7 +4415,7 @@ await client.tools.mcpServer.tools.get("mcp_server_tool_id");
4415
4415
  </dl>
4416
4416
  </details>
4417
4417
 
4418
- <details><summary><code>client.tools.mcpServer.tools.<a href="/src/api/resources/tools/resources/mcpServer/resources/tools/client/Client.ts">delete</a>(mcpServerToolId) -> phenoml.McpServerToolResponse</code></summary>
4418
+ <details><summary><code>client.tools.mcpServer.tools.<a href="/src/api/resources/tools/resources/mcpServer/resources/tools/client/Client.ts">delete</a>(mcp_server_tool_id) -> phenoml.McpServerToolResponse</code></summary>
4419
4419
  <dl>
4420
4420
  <dd>
4421
4421
 
@@ -4458,7 +4458,7 @@ await client.tools.mcpServer.tools.delete("mcp_server_tool_id");
4458
4458
  <dl>
4459
4459
  <dd>
4460
4460
 
4461
- **mcpServerToolId:** `string` — ID of the MCP server tool to delete
4461
+ **mcp_server_tool_id:** `string` — ID of the MCP server tool to delete
4462
4462
 
4463
4463
  </dd>
4464
4464
  </dl>
@@ -4478,7 +4478,7 @@ await client.tools.mcpServer.tools.delete("mcp_server_tool_id");
4478
4478
  </dl>
4479
4479
  </details>
4480
4480
 
4481
- <details><summary><code>client.tools.mcpServer.tools.<a href="/src/api/resources/tools/resources/mcpServer/resources/tools/client/Client.ts">call</a>(mcpServerToolId, { ...params }) -> phenoml.McpServerToolCallResponse</code></summary>
4481
+ <details><summary><code>client.tools.mcpServer.tools.<a href="/src/api/resources/tools/resources/mcpServer/resources/tools/client/Client.ts">call</a>(mcp_server_tool_id, { ...params }) -> phenoml.McpServerToolCallResponse</code></summary>
4482
4482
  <dl>
4483
4483
  <dd>
4484
4484
 
@@ -4525,7 +4525,7 @@ await client.tools.mcpServer.tools.call("mcp_server_tool_id", {
4525
4525
  <dl>
4526
4526
  <dd>
4527
4527
 
4528
- **mcpServerToolId:** `string` — ID of the MCP server tool to call
4528
+ **mcp_server_tool_id:** `string` — ID of the MCP server tool to call
4529
4529
 
4530
4530
  </dd>
4531
4531
  </dl>