AI SDK MCP Docs Server
Description
# AI SDK MCP Docs Server A Model Context Protocol (MCP) server that provides [AI SDK documentation](https://sdk.vercel.ai/), cookbook examples, and provider information. > [!NOTE] > This is an unofficial tool and does not provide any guarantees regarding functionality or…
About
# AI SDK MCP Docs Server A Model Context Protocol (MCP) server that provides [AI SDK documentation](https://sdk.vercel.ai/), cookbook examples, and provider information. > [!NOTE] > This is an unofficial tool and does not provide any guarantees regarding functionality or accuracy. ## Features - Access AI SDK…
Details
- Author
- mongolyy
- GitHub stars
- 1
- Downloads
- 172
- Categories
- Knowledge Base
Jump to
- Access AI SDK documentation content
- Retrieve cookbook examples and tutorials
- Get information about AI providers
- Works with IDEs that support MCP servers
- Fetches and parses HTML from the AI SDK website
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
AI SDK MCP Docs ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Clone the repository, install dependencies with npm install, then configure the server in your IDE (Cline or Cursor) by adding an MCP server entry with the command npx tsx pointing to the src/index.ts file. Available tools are invoked by specifying a path (e.g., /docs/introduction) or without a path to list all items.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"ai sdk mcp docs server": {
"ai-sdk-mcp-docs-server": {
"command": "npx",
"args": [
"fastmcp",
"dev",
"src/index.ts"
]
}
}
}
}
McpServers
{
"ai-sdk-mcp-docs-server": {
"command": "npx",
"args": [
"fastmcp",
"dev",
"src/index.ts"
]
}
}
AI SDK MCP Docs Server
A Model Context Protocol (MCP) server that provides AI SDK documentation, cookbook examples, and provider information.
> [!NOTE]
> This is an unofficial tool and does not provide any guarantees regarding functionality or accuracy.
Features
- Access AI SDK documentation content
- Retrieve cookbook examples and tutorials
- Get information about AI providers
Setting up with IDE
This tool can be used with various IDEs that support MCP servers.
Common Setup
1. Clone the repository to your local machine:
git clone https://github.com/mongolyy/ai-sdk-mcp-docs-server.git
cd ai-sdk-mcp-docs-server
2. Install dependencies:
npm install
IDE-Specific Configuration
Cline
1. Open Cline
2. Click MCP Servers link icon
3. Navigate to Installed tab and click configure MCP Servers button
4. Add a new MCP server with the following configuration (update the path to match your local repository location):
`` diff json:cline_mcp_settings.json
{
"mcpServers": {
+ "ai-sdk-mcp-docs-server": {
+ "command": "npx",
+ "args": [
+ "tsx",
+ "/Users/username/path/to/ai-sdk-mcp-docs-server/src/index.ts"
+ ]
+ }
}
}
5. Save the settings
6. Restart Cline to apply the changes
Cursor
1. Edit the ~/.cursor/mcp.json file
2. Add or update the MCP server configuration (update the path to match your local repository location):
diff json:mcp.json
{
"mcpServers": {
+ "ai-sdk-mcp-docs-server": {
+ "command": "npx",
+ "args": [
+ "tsx",
+ "/Users/username/path/to/ai-sdk-mcp-docs-server/src/index.ts"
+ ]
+ }
}
}
3. Save the file
4. Restart Cursor to apply the changes
Development
This section provides guidelines for contributing to the project, including coding standards, testing procedures, and how to submit pull requests.
Installation
bashnpm install
Run on local
CLI:
bashnpx fastmcp dev src/index.ts
GUI:
bashnpx fastmcp inspect src/index.ts
`
Available Tools
- docs - Get AI SDK documentation
- Without path: Get list of all docs
- With path:
/docs/introduction - Get specific doc
- cookbook - Get cookbook examples
- Without path: Get list of all examples
- With path:
/cookbook/next/generate-text - Get specific example
- providers - Get provider information
- Without path: Get list of all providers
- With path:
/providers/ai-sdk-providers` - Get specific provider info
How It Works
The server fetches content from the AI SDK website, parses the HTML, and provides the content through a structured API accessible via the Model Context Protocol.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.


