The fastest way to build MCP servers in Swift. ```swift try await FastMCP.builder() .name("My Server") .addTools([WeatherTool()]) .run() ``` Three lines to a working MCP server over stdio. Or serve over HTTP: ```swift try await FastMCP.builder() .name("My Server") .addTools([WeatherTool()]) .transport(.http(port: 8080))
Tools (6)
ArgumentsFastMCPGet weather for a locationMCPResourceMimeTypeMyServerPerform math operations