-
Notifications
You must be signed in to change notification settings - Fork 287
Expand file tree
/
Copy pathPackage.swift
More file actions
32 lines (31 loc) · 881 Bytes
/
Package.swift
File metadata and controls
32 lines (31 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "BasicHostSwift",
platforms: [
.iOS(.v16),
.macOS(.v13)
],
products: [
.executable(
name: "BasicHostSwift",
targets: ["BasicHostApp"]
),
],
dependencies: [
// Local MCP Apps Swift SDK
.package(path: "../../swift"),
// MCP Swift SDK for MCP client (using spec-update branch with _meta support)
.package(url: "https://github.com/ajevans99/swift-sdk.git", branch: "spec-update"),
],
targets: [
.executableTarget(
name: "BasicHostApp",
dependencies: [
.product(name: "McpApps", package: "swift"),
.product(name: "MCP", package: "swift-sdk"),
],
path: "Sources/BasicHostApp"
),
]
)