🌐
GitHub
github.com › jamesrochabrun › SwiftAnthropic
GitHub - jamesrochabrun/SwiftAnthropic: An open-source Swift package for interacting with Anthropic's public API.
An open-source Swift package for interacting with Anthropic's public API. - jamesrochabrun/SwiftAnthropic
Starred by 214 users
Forked by 57 users
Languages   Swift
🌐
Medium
jamesrochabrun.medium.com › anthropic-ios-sdk-032e1dc6afd8
Anthropic iOS SDK. https://github.com/jamesrochabrun/SwiftA… | by James Rochabrun | Medium
February 25, 2024 - Visit https://www.anthropic.com/earlyaccess 🥲 ... If you don’t have an API key yet, I still encourage you to keep reading this post, as access may become more widely available soon! 🤞 · On their website, you can view the available clients; currently, they offer only Python and TypeScript libraries. That’s why I built a Swift version that iOS developers can easily integrate into their apps, eliminating the need to construct their own.
🌐
GitHub
github.com › fumito-ito › AnthropicSwiftSDK
GitHub - fumito-ito/AnthropicSwiftSDK: Yet another Anthropic API client for Swift.
let anthropic = Anthropic(apiKey: ... .bash(.init(name: "bash")) ] ) By introducing an extension Swift package, it is possible to access the Anthropic Claude API through AWS Bedrock and Vertex AI....
Starred by 15 users
Forked by 3 users
Languages   Swift
🌐
Aiproxy
aiproxy.com › docs › swift-examples › anthropic.html
Anthropic Swift Client Library Examples
import AIProxy /* Uncomment for BYOK use cases */ // let anthropicService = AIProxy.anthropicDirectService( // unprotectedAPIKey: "your-anthropic-key" // ) /* Uncomment for all other production use cases */ // let anthropicService = AIProxy.anthropicService( // partialKey: "partial-key-from-your-developer-dashboard", // serviceURL: "service-url-from-your-developer-dashboard" // ) do { let requestBody = AnthropicMessageRequestBody( maxTokens: 1024, messages: [ .init( content: [.text("What is nvidia's stock price?")], role: .user ) ], model: "claude-3-5-sonnet-20240620", tools: [ .init( description: "Call this function when the user wants a stock symbol", inputSchema: [ "type": "object", "properties": [ "ticker": [ "type": "string", "description": "The stock ticker symbol, e.g.
🌐
Swift Package Index
swiftpackageindex.com › fumito-ito › AnthropicSwiftSDK
AnthropicSwiftSDK – Swift Package Index
August 14, 2025 - AnthropicSwiftSDK by Fumito Ito on the Swift Package Index – Yet another Anthropic API client for Swift.
Published   Mar 11, 2024
Version   0.14.0
🌐
GitHub
github.com › GeorgeLyon › SwiftClaude
GitHub - GeorgeLyon/SwiftClaude: A Swift SDK for Anthropic's Claude API
A Swift SDK for Anthropic's Claude API. Contribute to GeorgeLyon/SwiftClaude development by creating an account on GitHub.
Author   GeorgeLyon
🌐
GitHub
github.com › marcusziade › AnthropicKit
GitHub - marcusziade/AnthropicKit: A comprehensive Swift SDK for the Anthropic API
A comprehensive Swift SDK for the Anthropic API. Contribute to marcusziade/AnthropicKit development by creating an account on GitHub.
Author   marcusziade
🌐
Aiproxy
aiproxy.com › updates › anthropic-sdk-design-decisions
Design decisions for AIProxy's Anthropic Swift SDK
AIProxySwift has been updated to publicly expose additional Anthropic functionality to users.
🌐
Swift Forums
forums.swift.org › community showcase
SwiftClaude - Community Showcase - Swift Forums
October 30, 2024 - I'm excited to share a side-project I've been working on! While this package supports all the standard "stream text from an LLM" functionality, it also support for letting Claude call back into Swift code via tool use. …
Find elsewhere
🌐
AIbase
aibase.com › repos › project › anthropicswiftsdk
Anthropicswiftsdk AI Project Repository Download and Installation Guide
View the Anthropicswiftsdk AI project repository download and installation guide, learn about the latest development trends and innovations.
🌐
GitHub
github.com › nathanborror › swift-anthropic
GitHub - nathanborror/swift-anthropic: An easy way to use the Anthropic platform in Swift.
An unofficial Swift client library for interacting with Anthropic's API.
Starred by 8 users
Forked by 2 users
Languages   Swift 99.5% | Makefile 0.5%
🌐
Tthew
ma.tthew.berlin › words › i-created-an-anthropic-sdk-for-swift-with-claude-code-heres-how
I Built An Anthropic SDK For Swift With Claude Code: Here’s How. | Matt Richards - Senior Staff Product Engineer / Engineering Lead based in Berlin.
I’ve been deep-diving into agentic coding with LLMs and iOS/Mac Application Development with Swift/SwiftUI over the last few months. In the absence of an official Swift SDK for the Anthropic/Claude APIs, I decided to build one with Claude Code myself.
🌐
Medium
jamesrochabrun.medium.com › creating-mcp-clients-in-swift-integrating-model-context-protocol-278d2d7676a9
Creating MCP Clients in Swift: Integrating Model Context Protocol | by James Rochabrun | Medium
March 24, 2025 - After creating your client, you can use it with different AI models. The MCPSwiftWrapper package provides convenient extensions for both Anthropic and OpenAI models.
🌐
Kevinhermawan
kevinhermawan.github.io › swift-llm-chat-anthropic › documentation › llmchatanthropic
Documentation
This page requires JavaScript · Please turn on JavaScript in your browser and refresh the page to view its content
🌐
Simonbs
simonbs.dev › posts › using-claude-with-coding-assistant-in-xcode-26
Using Claude with Coding Assistant in Xcode 26
You can now select Anthropic's models for use with Coding Assistant. You may need to restart Xcode before the model provider shows up. That's it. Now you're ready to start using Claude to write Swift code directly inside Xcode.
🌐
GitHub
github.com › teunlao › swift-ai-sdk
GitHub - teunlao/swift-ai-sdk: Unified AI SDK for Swift, bringing the power of Vercel AI SDK to Apple platforms
A unified AI SDK for Swift: streaming chat/completions, structured outputs, tool/function/MCP calling, middleware, and telemetry — with 28+ providers via one API (OpenAI, Anthropic, Google, Groq, xAI).
Starred by 56 users
Forked by 3 users
Languages   Swift 89.9% | MDX 5.3% | TypeScript 3.2% | JavaScript 1.3% | Python 0.3% | Astro 0.0%
🌐
AWS
docs.aws.amazon.com › aws sdk for swift › developer guide › sdk for swift code examples › amazon bedrock runtime examples using sdk for swift
Amazon Bedrock Runtime examples using SDK for Swift - AWS SDK for Swift
The following code example shows how to send a text message to Anthropic Claude, using Bedrock's Converse API and process the response stream in real-time.