structure saas with tools
This commit is contained in:
17
.venv/lib/python3.10/site-packages/mcp/server/models.py
Normal file
17
.venv/lib/python3.10/site-packages/mcp/server/models.py
Normal file
@@ -0,0 +1,17 @@
|
||||
"""
|
||||
This module provides simpler types to use with the server for managing prompts
|
||||
and tools.
|
||||
"""
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
from mcp.types import (
|
||||
ServerCapabilities,
|
||||
)
|
||||
|
||||
|
||||
class InitializationOptions(BaseModel):
|
||||
server_name: str
|
||||
server_version: str
|
||||
capabilities: ServerCapabilities
|
||||
instructions: str | None = None
|
||||
Reference in New Issue
Block a user