Skip to content

Commit 9ca29c5

Browse files
authored
chore (docs): restructure MCP setup examples (#5356)
1 parent ff6cb89 commit 9ca29c5

File tree

1 file changed

+44
-24
lines changed

1 file changed

+44
-24
lines changed

content/docs/03-ai-sdk-core/15-tools-and-tool-calling.mdx

+44-24
Original file line numberDiff line numberDiff line change
@@ -637,54 +637,74 @@ This enables your AI applications to discover and use tools across various servi
637637

638638
Create an MCP client using either:
639639

640-
- `stdio`: Uses standard input and output streams for communication, ideal for local tool servers running on the same machine (like CLI tools or local services)
641640
- `SSE` (Server-Sent Events): Uses HTTP-based real-time communication, better suited for remote servers that need to send data over the network
641+
- `stdio`: Uses standard input and output streams for communication, ideal for local tool servers running on the same machine (like CLI tools or local services)
642642
- Custom transport: Bring your own transport by implementing the `MCPTransport` interface
643643

644+
#### SSE Transport
645+
646+
The SSE can be configured using a simple object with a `type` and `url` property:
647+
644648
```typescript
645649
import { experimental_createMCPClient as createMCPClient } from 'ai';
646-
import { Experimental_StdioMCPTransport as StdioMCPTransport } from 'ai/mcp-stdio';
647-
648-
// Example of using MCP with stdio
649-
const mcpClient = await createMCPClient({
650-
transport: new StdioMCPTransport({
651-
command: 'node',
652-
args: ['src/stdio/dist/server.js'],
653-
}),
654-
});
655650

656-
// Example of using MCP with SSE
657651
const mcpClient = await createMCPClient({
658652
transport: {
659653
type: 'sse',
660654
url: 'https://my-server.com/sse',
661655

662-
// optional: configure HTTP headers
656+
// optional: configure HTTP headers, e.g. for authentication
663657
headers: {
664-
example: 'header',
658+
Authorization: 'Bearer my-api-key',
665659
},
666660
},
667661
});
662+
```
668663

669-
// Example of using a custom transport
670-
const transport = new MyCustomTransport({
671-
// ...
664+
#### Stdio Transport
665+
666+
The Stdio transport requires importing the `StdioMCPTransport` class from the `ai/mcp-stdio` package:
667+
668+
```typescript
669+
import { experimental_createMCPClient as createMCPClient } from 'ai';
670+
import { Experimental_StdioMCPTransport as StdioMCPTransport } from 'ai/mcp-stdio';
671+
672+
const mcpClient = await createMCPClient({
673+
transport: new StdioMCPTransport({
674+
command: 'node',
675+
args: ['src/stdio/dist/server.js'],
676+
}),
672677
});
678+
```
679+
680+
#### Custom Transport
681+
682+
You can also bring your own transport by implementing the `MCPTransport` interface:
683+
684+
```typescript
685+
import { MCPTransport, createMCPClient } from 'ai';
686+
673687
const mcpClient = await createMCPClient({
674-
transport,
688+
transport: new MyCustomTransport({
689+
// ...
690+
}),
675691
});
676692
```
677693

694+
#### Closing the MCP Client
695+
678696
After initialization, always close the MCP client when you're done to prevent resource leaks. Use try/finally or cleanup functions in your framework:
679697

680698
```typescript
681-
try {
682-
const mcpClient = await experimental_createMCPClient({...});
683-
const tools = await mcpClient.tools();
684-
// use tools...
685-
} finally {
686-
await mcpClient?.close();
687-
}
699+
let mcpClient: MCPClient | undefined;
700+
try {
701+
mcpClient = await experimental_createMCPClient({
702+
// ...
703+
});
704+
// ...
705+
} finally {
706+
await mcpClient?.close();
707+
}
688708
```
689709

690710
### Using MCP Tools

0 commit comments

Comments
 (0)