MCP.so
登录

Vercel AI SDK Documentation MCP Agent

@IvanAmador

关于 Vercel AI SDK Documentation MCP Agent

A Model Context Protocol (MCP) server that provides AI-powered search and querying capabilities for the Vercel AI SDK documentation. This project enables developers to ask questions about the Vercel AI SDK and receive accurate, contextualized responses based on the official docum

基本信息

分类

记忆与知识

运行时

node

传输方式

stdio

发布者

IvanAmador

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "vercel-ai-docs": {
      "command": "node",
      "args": [
        "ABSOLUTE_PATH_TO_PROJECT/dist/main.js"
      ],
      "env": {
        "GOOGLE_GENERATIVE_AI_API_KEY": "your-google-api-key-here"
      }
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Vercel AI SDK Documentation MCP Agent?

A Model Context Protocol (MCP) server that provides AI-powered search and querying for the Vercel AI SDK documentation. It enables developers to ask natural language questions and receive contextualized answers based on the official documentation, integrating with AI assistants like Claude Desktop.

How to use Vercel AI SDK Documentation MCP Agent?

After setting up Node.js 18+, a Google Gemini API key, and cloning the repository, run npm install, npm run build, npm run build:index, then npm run start. Configure the server in MCP client configs (e.g., Claude Desktop or Cursor) by specifying the path to dist/main.js and the GOOGLE_GENERATIVE_AI_API_KEY environment variable. Three tools are exposed: agent-query, direct-query, and clear-memory.

Key features of Vercel AI SDK Documentation MCP Agent

  • Direct semantic search of the documentation index
  • AI‑powered agent for natural language queries
  • Session management for conversation context
  • Automated documentation fetching and indexing
  • MCP‑compatible for multiple client integrations

Use cases of Vercel AI SDK Documentation MCP Agent

  • Ask complex questions about Vercel AI SDK functions and receive synthesized answers
  • Perform targeted similarity searches to find relevant documentation snippets
  • Maintain conversation history across multiple related queries within a session
  • Integrate with Claude Desktop for in‑chat documentation assistance
  • Use inside code editors like Cursor for context‑aware SDK help

FAQ from Vercel AI SDK Documentation MCP Agent

What prerequisites are needed to run the server?

Node.js 18+ and a valid Google Gemini API key (stored as GOOGLE_GENERATIVE_AI_API_KEY in a .env file) are required. The documentation index must be built using npm run build:index before starting the server.

How do I handle Google API rate limits?

The agent service may return errors if rate limits are exceeded. Implement appropriate backoff strategies as described in the troubleshooting section.

Where is the documentation data stored?

Processed documentation is stored in files/docs, vector indexes in files/faiss_index, and session data in files/sessions within the project directory.

Can I use this server with other MCP clients besides Claude Desktop?

Yes. The README explicitly lists Cursor as an example client, and any client implementing the Model Context Protocol can integrate with this server.

What transport protocol does the server use?

The server uses the standard Model Context Protocol through a command‑line invocation, exposed as an MCP server that communicates via stdio.

评论

记忆与知识 分类下的更多 MCP 服务器