How to Use the BallDontLie MCP in Vercel AI SDK
Stream real-time NBA stats directly into your Next.js frontend with the BallDontLie MCP Server and Vercel AI SDK.
Works with every AI agent you already use
…and any MCP-compatible client
Connect BallDontLie MCP to Vercel AI SDK
Create your Vinkius account to connect BallDontLie to Vercel AI SDK and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Stream Player Profiles with Vercel AI SDK
The `list_players` and `get_player_details` tools let your AI client search the NBA database and pull specific athlete profiles. By pairing these tools with the Vercel AI SDK, you render player heights, weights, and positions live on screen as the model finds them. You write UI code that maps these raw JSON payloads to React components. Instead of waiting for a slow backend fetch, your users watch the NBA player card build in real-time inside their Vercel AI SDK chat window.
Live-Render NBA Season Averages
Running `get_season_averages` pulls year-by-year stat lines for any active NBA player, while `list_player_stats` gives you game-by-game breakdowns. Your Vercel AI SDK frontend streams these NBA numbers straight into charts using standard UI components. Because this MCP Server runs on Vinkius edge-compatible infrastructure, your Next.js edge routes process the NBA data with zero cold-start delay. This setup lets Vercel AI SDK users get instant answers about shooting percentages or rebounds without staring at a loading spinner.
Real-Time Game and Team Data Streams
Calling `list_games` and `get_game_details` fetches schedule info and match results, while `get_team_details` and `list_teams` handle franchise metadata. Your Vercel AI SDK client calls these tools to query the MCP server for NBA matchups or divisional standings. The Vercel AI SDK handles the transport layer automatically, feeding raw NBA team records and game scores directly into your streaming text output. You get clean JSON structures that you can immediately pipe to your custom basketball widgets.
Set up BallDontLie MCP in Vercel AI SDK
Prerequisites
- Node.js 18+ and a TypeScript project
-
ai+@modelcontextprotocol/sdkpackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
npm install ai @modelcontextprotocol/sdkplus your preferred model provider (e.g.@ai-sdk/openai). - 2
Create the Streamable HTTP transport
Use
StreamableHTTPClientTransportwith your Vinkius endpoint URL. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. - 3
Discover and use tools
Call
mcpClient.tools()to auto-discover all BallDontLie tools. Pass them directly togenerateText()orstreamText()— no manual schema definitions needed. - 4
Works with any model provider
Swap
openai("gpt-4o")for any AI SDK provider — Anthropic, Google, Mistral. The MCP tools work identically across all supported models.
import { experimental_createMCPClient as createMCPClient } from "ai";
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp";
import { generateText } from "ai";
import { openai } from "@ai-sdk/openai";
const transport = new StreamableHTTPClientTransport(
new URL("https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp")
);
const mcpClient = await createMCPClient({ transport });
const tools = await mcpClient.tools();
const { text } = await generateText({
model: openai("gpt-4o"),
tools,
prompt: "List recent BallDontLie transactions",
});
console.log(text);
await mcpClient.close(); Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by BallDontLie. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about BallDontLie MCP in Vercel AI SDK
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the BallDontLie MCP today
We host it, we monitor it, we maintain it. You just paste one token.