Open
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.