Vercel
v0 Platform APIAPI ReferenceMCP Servers

Find MCP Servers

Retrieves a list of MCP servers configured for your account. Returns all servers with their connection details, authentication type, and enabled status.

GET/v1/mcp-servers

Usage

TypeScript Example
import { v0 } from 'v0-sdk'const result = await v0.mcpServers.find()console.log(result)

Response

object: 'list'
data: object[]
id: string

A unique identifier for the MCP server.

object: 'mcp_server'

Fixed value identifying this object as an MCP server.

name: string

A human-readable name for the MCP server.

url: string

The URL of the MCP server endpoint.

description?: string

An optional description of the MCP server.

enabled: boolean

Whether the MCP server is currently enabled.

auth: object

The authentication configuration. Only the type is returned; sensitive values are redacted.

type: 'none' | 'bearer' | 'custom-headers' | 'oauth'

The authentication method used by the server.

scope: 'user' | 'team'

Whether the server is scoped to the user or a team.

createdAt: string

The ISO 8601 timestamp when the server was created.

updatedAt?: string

The ISO 8601 timestamp when the server was last updated.

On this page