iAccount based inGermany!
About this account
- Account based in
- Germany
- Connected via
- Germany App Store
! X says this location may be affected by a proxy or VPN.
Account-level information from X, not a live location or the device used for a specific post.
Working on software factories.
- Tweets5.5K
- Following375
- Followers8.2K
- Likes13.8K
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, });