Linkwarden MCP Server for Vercel AI SDKGive Vercel AI SDK instant access to 32 tools to Archive Link, Auth Forgot Password, Auth Reset Password, and more
The Vercel AI SDK is the TypeScript toolkit for building AI-powered applications. Connect Linkwarden through Vinkius and every tool is available as a typed function. ready for React Server Components, API routes, or any Node.js backend.
Ask AI about this MCP Server for Vercel AI SDK
The Linkwarden MCP Server for Vercel AI SDK is a standout in the Productivity category — giving your AI agent 32 tools to work with, ready to go from day one.
Vinkius delivers Streamable HTTP and SSE to any MCP client
import { createMCPClient } from "@ai-sdk/mcp";
import { generateText } from "ai";
import { openai } from "@ai-sdk/openai";
async function main() {
const mcpClient = await createMCPClient({
transport: {
type: "http",
// Your Vinkius token. get it at cloud.vinkius.com
url: "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp",
},
});
try {
const tools = await mcpClient.tools();
const { text } = await generateText({
model: openai("gpt-4o"),
tools,
prompt: "Using Linkwarden, list all available capabilities.",
});
console.log(text);
} finally {
await mcpClient.close();
}
}
main();
* Every MCP server runs on Vinkius-managed infrastructure inside AWS - a purpose-built runtime with per-request V8 isolates, Ed25519 signed audit chains, and sub-40ms cold starts optimized for native MCP execution. See our infrastructure
About Linkwarden MCP Server
Connect your Linkwarden instance to any AI agent and take full control of your personal knowledge base through natural conversation. Linkwarden is a self-hosted collaborative bookmark manager to collect, organize, and preserve webpages.
The Vercel AI SDK gives every Linkwarden tool full TypeScript type inference, IDE autocomplete, and compile-time error checking. Connect 32 tools through Vinkius and stream results progressively to React, Svelte, or Vue components. works on Edge Functions, Cloudflare Workers, and any Node.js runtime.
What you can do
- Collection Management — List all your collections, create new ones, and organize your bookmarks into logical folders.
- Web Archiving — Retrieve preserved archive files for your links to ensure you never lose access to important information, even if the original site goes down.
- Dashboard Insights — Access your dashboard data (v1 and v2) to get a high-level overview of your saved content and activity.
- Link Operations — Create, update, and manage links and their associated metadata or highlights directly from the chat.
- System Configuration — Quickly retrieve public runtime configurations and user profile information.
The Linkwarden MCP Server exposes 32 tools through the Vinkius. Connect it to Vercel AI SDK in under two minutes — credentials fully managed, no infrastructure to provision, no vendor lock-in. Your configuration, your data, your control.
All 32 Linkwarden tools available for Vercel AI SDK
When Vercel AI SDK connects to Linkwarden through Vinkius, your AI agent gets direct access to every tool listed below — spanning bookmark-manager, web-archiving, link-organization, and more. Every call runs in a secure, isolated environment with full audit visibility. Beyond a simple connection, you get real-time monitoring of agent activity, enterprise governance, and optimized token usage.
Archive link on Linkwarden
Archive a link (triggers an update of the link's archive files)
Auth forgot password on Linkwarden
Send password reset email
Auth reset password on Linkwarden
Reset password with token
Auth verify email on Linkwarden
Verify email address
Bulk update links on Linkwarden
Bulk update links (tags/collections)
Create collection on Linkwarden
Create a new collection
Create highlight on Linkwarden
Create or update a highlight
Create link on Linkwarden
Create a new link
Delete collection on Linkwarden
Delete a collection
Delete highlight on Linkwarden
Delete a highlight
Get archive on Linkwarden
Retrieve an archive file by link ID
Get avatar on Linkwarden
Retrieve user avatar
Get collection on Linkwarden
Get collection by ID
Get config on Linkwarden
Retrieve public runtime configuration
Get dashboard v1 on Linkwarden
Get dashboard data (v1)
Get dashboard v2 on Linkwarden
Get dashboard data (v2)
Get link on Linkwarden
Get a link by ID
Get link highlights on Linkwarden
Get highlights for a link
Get logins on Linkwarden
Get login configuration
Get migration on Linkwarden
Retrieve migration data (user info, collections, links for export)
Get preserved token on Linkwarden
Create short-lived preserved format URL token
Get public collection links on Linkwarden
Retrieve links from a specific collection (public)
Get public collection tags on Linkwarden
Get tags for a collection (public)
Import migration on Linkwarden
Import data for migration
List collections on Linkwarden
Get all collections
List rss on Linkwarden
List RSS subscriptions
Stream preserved view on Linkwarden
Stream archived format
Update collection on Linkwarden
Update a collection
Update dashboard v2 on Linkwarden
Update dashboard layout (v2)
Update link on Linkwarden
Update a link
Upload archive for link on Linkwarden
Upload or replace a client-side archive file for a specific link
Upload standalone archive on Linkwarden
Upload an archive file, create a new link, and store it in the default collection
Connect Linkwarden to Vercel AI SDK via MCP
Follow these steps to wire Linkwarden into Vercel AI SDK. The entire setup takes under two minutes — your credentials stay safe behind Vinkius.
Install dependencies
npm install @ai-sdk/mcp ai @ai-sdk/openaiReplace the token
[YOUR_TOKEN_HERE] with your Vinkius tokenRun the script
agent.ts and run with npx tsx agent.tsExplore tools
Why Use Vercel AI SDK with the Linkwarden MCP Server
Vercel AI SDK provides unique advantages when paired with Linkwarden through the Model Context Protocol.
TypeScript-first: every MCP tool gets full type inference, IDE autocomplete, and compile-time error checking out of the box
Framework-agnostic core works with Next.js, Nuxt, SvelteKit, or any Node.js runtime. same Linkwarden integration everywhere
Built-in streaming UI primitives let you display Linkwarden tool results progressively in React, Svelte, or Vue components
Edge-compatible: the AI SDK runs on Vercel Edge Functions, Cloudflare Workers, and other edge runtimes for minimal latency
Linkwarden + Vercel AI SDK Use Cases
Practical scenarios where Vercel AI SDK combined with the Linkwarden MCP Server delivers measurable value.
AI-powered web apps: build dashboards that query Linkwarden in real-time and stream results to the UI with zero loading states
API backends: create serverless endpoints that orchestrate Linkwarden tools and return structured JSON responses to any frontend
Chatbots with tool use: embed Linkwarden capabilities into conversational interfaces with streaming responses and tool call visibility
Internal tools: build admin panels where team members interact with Linkwarden through natural language queries
Example Prompts for Linkwarden in Vercel AI SDK
Ready-to-use prompts you can give your Vercel AI SDK agent to start working with Linkwarden immediately.
"List all my Linkwarden collections."
"Create a new collection called 'Project Alpha' with ID 'alpha-01'."
"Show me my dashboard summary."
Troubleshooting Linkwarden MCP Server with Vercel AI SDK
Common issues when connecting Linkwarden to Vercel AI SDK through Vinkius, and how to resolve them.
createMCPClient is not a function
npm install @ai-sdk/mcpLinkwarden + Vercel AI SDK FAQ
Common questions about integrating Linkwarden MCP Server with Vercel AI SDK.
How does the Vercel AI SDK connect to MCP servers?
createMCPClient from @ai-sdk/mcp and pass the server URL. The SDK discovers all tools and provides typed TypeScript interfaces for each one.Can I use MCP tools in Edge Functions?
Does it support streaming tool results?
useChat and streamText that handle tool calls and display results progressively in the UI.Explore More MCP Servers
View all →
Kylas
7 toolsScale your Indian SMB sales team with a CRM that combines lead management, pipeline tracking, and WhatsApp integration natively.

Gameball
8 toolsTurn customers into loyal fans with gamified rewards, referral programs, and engagement challenges that drive repeat purchases.

Salsa Engage
12 toolsAutomate non-profit outreach via Salsa Engage — manage supporters, activities, and fundraising analytics with AI.

DVLA Vehicle API
6 toolsAccess UK vehicle data — audit registration, tax, and MOT via AI.
