7 lines
148 B
Python
7 lines
148 B
Python
from typing import Literal
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class MCPServerUrlConfig(BaseModel):
|
|
url: str
|
|
transport: Literal["http", "sse"]
|