How to Use the Common Room MCP in Vercel AI SDK
Send Common Room community data directly into your Next.js frontend in real-time using the Vercel AI SDK.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Common Room MCP to Vercel AI SDK
Create your Vinkius account to connect Common Room 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.
Build live Common Room dashboards with Vercel AI SDK
Your users don't want to wait for a full page reload to see who just joined their community. By pairing this MCP server with `streamText`, you can render user profiles instantly as your agent finds them. The agent calls `get_contact_by_email` or `get_contact_tags` and pipes the raw JSON straight into your custom UI components before the LLM even finishes its sentence. This eliminates loading spinners entirely. When someone searches for a lead, the client uses `search_organizations` to pull company data and stream it directly into your React state. You get a fast, responsive interface that feels like a native desktop app rather than a slow API wrapper.
Real-time segment updates on the edge
Managing community buckets shouldn't require jumping between tabs. With this setup, your AI client can execute `add_contact_to_segment` or check progress using `get_segment_status` inside an Edge Function. Data streams back to the browser instantly, letting admins see exactly when a contact gets sorted. Because the Vercel AI SDK handles streaming tool calls natively, you can show a live log of contacts moving between lists. The agent lists the active groups with `list_segments` and lets users click to reassign members on the fly without waiting for backend queues.
Inspect accounts on the fly with our MCP Server
Give your sales team a live-updating console to inspect incoming signups. When a new email hits your database, the SDK triggers `get_organization_details` to fetch firmographic data. The agent displays the results in a custom UI card while the user is actively chatting. By querying `search_contacts` and displaying the results through React components, you bypass traditional dashboard clutter. Your team gets immediate context on who is talking to them, backed by live data pulled directly from your community database.
Set up Common Room 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 Common Room 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 Common Room 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 Common Room. 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 Common Room 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 Common Room MCP today
We host it, we monitor it, we maintain it. You just paste one token.