iAccount based inUnited States
About this account
- Account based in
- United States
- Connected via
- Web
Account-level information from X, not a live location or the device used for a specific post.
The Open Source AI Toolkit for TypeScript. Built by @Vercel.
- Tweets662
- Following4
- Followers36.6K
- Likes78
ALT Code snippet showcasing the import of libraries and functions for connecting to an MCP client and using an AI SDK with OAuth authentication: import { createMCPClient } from '@ai-sdk/mcp'; import { connectAuthProvider } from '@vercel/connect/ai-sdk'; import { streamText } from 'ai'; const mcpClient = await createMCPClient({ transport: { type: 'http', url: 'https://mcp.linear.app', authProvider: connectAuthProvider('oauth/linear', { subject: { type: 'user', id: userId }, scopes: ['read'], }), }, }); const result = await streamText({ model: 'openai/gpt-5.6-sol', tools: await mcpClient.tools(), prompt, });