Searches indexed Vercel AI SDK documentation and answers developer questions through MCP tools.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.
One-click editor setup isn’t available for this listing yet — we don’t have a confirmed install command, and we’d rather show nothing than point your editor at the wrong package or host. Follow the project’s own setup instructions, linked above.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Vercel AI Docs MCP.
IvanAmador/vercel-ai-docs-mcp MCP server gives MCP-compatible assistants access to the Vercel AI SDK documentation. It supports two query styles: an agent query that searches the indexed content and synthesizes an answer, and a direct query that returns similarity-search results from the documentation index.
The server also exposes session memory controls. Agent requests can include a session identifier so related questions retain conversational context. The clear-memory tool removes stored context for one session, or for every session when no identifier is provided.
This project is intended for developers working with the Vercel AI SDK who want documentation answers inside an MCP client rather than manually searching the documentation site.
The project has separate components for retrieving documentation, building the search index, answering questions, and exposing MCP tools. Its indexing workflow fetches and processes Vercel AI SDK documentation, then stores embeddings in a FAISS vector index. Direct queries search that index using semantic similarity.
Agent queries use the indexed documentation as context for responses generated with a Google Gemini model. The server stores session data in the project’s session files so subsequent requests can continue a conversation. The index must exist before normal querying; the documented troubleshooting step for a missing index is to run the index build command.
The IvanAmador/vercel-ai-docs-mcp MCP server requires Node.js 18 or newer, npm, and a Google Gemini API key. Set GOOGLE_GENERATIVE_AI_API_KEY in a .env file at the project root. The key is obtained through Google AI Studio and is used for Gemini model access.
The documented local setup is:
npm install.npm run build.npm run build:index.npm run start.Claude Desktop and Cursor can run the built server with Node and the path to dist/main.js. Their MCP configurations need the absolute project path and the Google API key in the server environment. The README also identifies npm run dev:index and npm run dev as development scripts.
The MCP server provides three primary tools:
agent-query accepts a natural-language question and an optional sessionId. It searches the documentation and produces a synthesized answer.direct-query accepts a query and an optional result limit, returning direct similarity-search results.clear-memory clears one session when given a sessionId, or all sessions when the parameter is omitted.The indexing components can fetch and process documentation, create the FAISS index, and manage the resulting local files. This makes the server suitable for documentation lookup, API usage questions, and follow-up questions that depend on earlier context.
A Google API key is required for the Gemini-backed agent functionality, and Google API rate limits can cause errors. A valid key must have access to the configured Gemini model. The documentation index is a local project artifact and needs to be built before the server can use it for queries.
The README explicitly documents Claude Desktop and Cursor configurations. Other MCP clients may work if they implement the Model Context Protocol, but their setup details are not provided here. Configuration paths must be absolute in the shown client examples, and clients may need to be restarted after configuration changes.
Factual signals from GitHub, npm, and our automated checks — not a rating.
No reviews yet — be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/ivanamador-vercel-ai-docs-mcp)<a href="https://allmcps.com/mcp/ivanamador-vercel-ai-docs-mcp"><img src="https://allmcps.com/api/badge/ivanamador-vercel-ai-docs-mcp?style=directory" alt="Vercel AI Docs MCP on AllMCPs" /></a>