mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-21 04:41:16 -05:00
22 lines
357 B
TypeScript
22 lines
357 B
TypeScript
export type McpServer = {
|
|
name: string
|
|
config: string
|
|
status: "connected" | "connecting" | "disconnected"
|
|
error?: string
|
|
tools?: McpTool[]
|
|
resources?: McpResource[]
|
|
}
|
|
|
|
export type McpTool = {
|
|
name: string
|
|
description?: string
|
|
inputSchema?: object
|
|
}
|
|
|
|
export type McpResource = {
|
|
uri: string
|
|
name: string
|
|
mimeType?: string
|
|
description?: string
|
|
}
|