-
Notifications
You must be signed in to change notification settings - Fork 153
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Currently, you initialize a Server with capabilities defined up front:
import MCP
let server = Server(
name: "MyServer",
version: "1.0.0",
capabilities: .init(
resources: .init(
subscribe: true
)
)
)It'd be nice to omit the capabilities argument entirely, so that the server determines its capabilities dynamically, based on what handlers have been registered.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request