SwiftAgentKit

SwiftAgentKitは、AIエージェントを構築するためのSwiftフレームワークであり、モデルコンテキストプロトコル(MCP)およびエージェント間通信(A2A)をサポートしています。このフレームワークは、MCP準拠のモデルサーバーと接続し、他のA2A準拠のエージェントと通信するためのモジュール式の基盤を提供します。シンプルなAPI設計で、HTTPリクエストの処理やサブプロセスの管理も可能です。

GitHubスター

6

ユーザー評価

未評価

お気に入り

0

閲覧数

7

フォーク

0

イシュー

0

README
SwiftAgentKit

A Swift framework for building AI agents with support for Model Context Protocol (MCP) and Agent-to-Agent (A2A) communication.

Overview

SwiftAgentKit provides a modular foundation for building AI agents that can:

  • Connect to MCP-compliant model servers and tools
  • Communicate with other A2A-compliant agents
  • Make HTTP requests and handle streaming responses
  • Execute shell commands and manage subprocesses
  • Use structured logging for debugging and monitoring
  • Integrate with popular AI providers (OpenAI, Anthropic, Gemini)
  • Build composable tool-aware adapters with A2A and MCP capabilities

The framework is designed with a simple, direct API - no unnecessary abstractions or configuration objects.

Modules
Module Description Documentation
SwiftAgentKit Core networking and utilities SwiftAgentKit.md
SwiftAgentKitMCP Model Context Protocol support MCP.md
SwiftAgentKitA2A Agent-to-Agent communication A2A.md
SwiftAgentKitAdapters AI provider adapters and tool-aware architecture SwiftAgentKitAdapters.md
SwiftAgentKitOrchestrator LLM orchestrator with MCP and A2A support README
Quick Start
Installation

Add SwiftAgentKit to your project:

dependencies: [
    .package(url: "https://github.com/JamieScanlon/SwiftAgentKit.git", from: "0.1.3")
]
Importing Modules

Add the products you want to use to your target dependencies:

.target(
    name: "YourTarget",
    dependencies: [
        .product(name: "SwiftAgentKit", package: "SwiftAgentKit"),
        .product(name: "SwiftAgentKitA2A", package: "SwiftAgentKit"),  // Optional
        .product(name: "SwiftAgentKitMCP", package: "SwiftAgentKit"),  // Optional
        .product(name: "SwiftAgentKitAdapters", package: "SwiftAgentKit"),  // Optional
    ]
)
Basic Usage
import SwiftAgentKit
import SwiftAgentKitMCP
import SwiftAgentKitA2A
import SwiftAgentKitAdapters

// Use the modules as needed
let apiManager = RestAPIManager()
let mcpManager = MCPManager()
let a2aManager = A2AManager()

// Create AI adapters with tool capabilities
let adapter = AdapterBuilder()
    .withLLM(OpenAIAdapter(apiKey: "your-key"))
    .build()

print("SwiftAgentKit initialized")
Examples

Run the examples to see SwiftAgentKit in action:

# Basic networking example
swift run BasicExample

# MCP client example
swift run MCPExample

# A2A client example
swift run A2AExample

# AI adapters example
swift run AdaptersExample

# Tool-aware adapters example
swift run ToolAwareExample

# LLM orchestrator example
swift run OrchestratorExample
Documentation

For detailed documentation on each module, see:

Logging

All modules use Swift Logging for structured logging, providing cross-platform logging capabilities for debugging and monitoring.

Requirements
  • macOS 13.0+
  • Swift 5.9+
License

MIT License - see LICENSE file for details.