You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: add listToolCallbacks method to McpClient interface and update related implementations
* feat: add disableToolIdMangling option to McpServerConfig and update related implementations
* feat: add devproxy support and upgrade sample script for Dev Proxy versioning
* feat: integrate patchInputSchema function to standardize input schema processing
* ✨: Enhance type imports across multiple files
Added new type imports for better typing and code reliability.
Copy file name to clipboardExpand all lines: docs/src/content/docs/reference/scripts/mcp-clients.mdx
+39-24Lines changed: 39 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,6 @@ hero:
11
11
details include a small play button or gear symbol, symbolizing operations
12
12
or scripting functionality.
13
13
file: ./mcp-clients.png
14
-
15
14
---
16
15
17
16
The [Model Context Protocol](https://modelcontextprotocol.io/) (MCP) defines a protocol for sharing [tools](https://modelcontextprotocol.io/docs/concepts/tools)
@@ -40,10 +39,10 @@ This identifier is used to reference the server in the `mcpClient`.
The structure of the output depends on the tool, but it is designed to be consumed by an LLM. You will likely want to use `def` to store it in your prompt:
74
73
75
74
```js
76
-
def("INFO", info)
75
+
def("INFO", info);
77
76
```
78
77
79
78
## Example: YouTube Transcript
@@ -83,12 +82,28 @@ of a YouTube video. It is listed in the [Docker MCP Catalog](https://hub.docker.
0 commit comments