1. X
  2. AI SDK
Log inSign up
AI SDK
Vercel
650 posts
AI SDK profile banner
@aisdk

AI SDK

Vercel
@aisdk
The Open Source AI Toolkit for TypeScript. Built by @Vercel.
San Francisco, CA
ai-sdk.dev
Joined November 2024
4
Following
36.5K
Followers
RepliesRepliesRepostsRepostsMediaMedia

Log in or sign up for X

See what’s happening and join the conversation

Continue with phone
or
Log in with username or email
Terms·Privacy·Cookies·Accessibility·Ads Info·© 2026 X Corp.
  • Pinned
    @aisdk
    AI SDK
    Vercel
    @aisdk
    Jun 25
    AI SDK 7 is now available. Introducing: reasoning control, agent-level tool approval, tool and runtime context, file and skill uploads, MCP Apps, durable workflows, terminal UI, sandbox support, harness integrations, telemetry, lifecycle events, and more.
    AI SDK 7
Develop, run, and observe agents.
  • @aisdk
    AI SDK
    Vercel
    @aisdk
    Aug 25
    Vercel Connect is now GA. You can use @𝚟𝚎𝚛𝚌𝚎𝚕/𝚌𝚘𝚗𝚗𝚎𝚌𝚝/𝚊𝚒-𝚜𝚍𝚔 to securely connect your AI SDK agents to MCP servers.
    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,
});
    @vercel
    Vercel
    @vercel
    Aug 25
    Vercel Connect is now generally available. Give your apps and agents secure access to @SlackHQ, @linear, @github & 100+ other services. • Short-lived, scoped access tokens • Token and trigger observability • RBAC and audit trails vercel.com/blog/the-end-o…
  • @aisdk
    AI SDK
    Vercel
    @aisdk
    Aug 18
    You can now call tools programmatically by using the new Code Mode tool in AI SDK.
    Image
  • @aisdk
    AI SDK
    Vercel
    @aisdk
    Aug 14
    We’re changing how we maintain AI SDK on GitHub.
    @vercel
    Vercel
    @vercel
    Aug 12
    We built a software factory for AI SDK. Each step is an agent, and humans merge changes. Four weeks in: ▪️ The factory authors up to 35% of merged PRs ▪️ It closed 70% of issues in July ▪️ Open bugs are down 25% vercel.com/blog/building-…
  • @aisdk
    AI SDK
    Vercel
    @aisdk
    Aug 13
    Use Gemini 3.7 Flash in AI SDK
    Code snippet for an AI SDK utilizing the Gemini 3.7 model to generate app ideas for remote workers monitoring water intake:

import { streamText } from 'ai'

const result = streamText({
  model: 'google/gemini-3.7-flash',
  prompt: '5 app ideas for remote workers to track water'
})
Advertisement
Advertisement