API ReferenceMCP Servers
Get MCP Server
Retrieves a specific MCP server by ID.
GET/v2/mcp-servers/{mcpServerId}
Usage
TypeScript Example
import { v0 } from 'v0-sdk'const result = await v0.mcpServers.get({ mcpServerId: 'srv_jkl345',})console.log(result)API Signature
Request
Path Parameters
mcpServerId: string
The unique identifier of the MCP server.
Response
id: string
Unique identifier for the MCP server.
name: string
Display name of the MCP server.
url: string
URL endpoint of the MCP server.
description: string
Optional description of the MCP server.
createdAt: string
ISO timestamp of when the server was created.
updatedAt: string
ISO timestamp of the last update.
userId: string
ID of the user who created the server.
enabled: boolean
Whether the MCP server is enabled.
auth: 'none' | 'bearer' | 'custom-headers' | 'oauth'
Authentication configuration for the MCP server.
scope: 'user' | 'team'
Scope of the MCP server configuration.