SwiftChronicle MCP
Connect your AI coding assistant directly to SwiftChronicle. Query iOS 27 capabilities, pull real Swift code demos, and get migration estimates — without leaving your editor.
https://swiftchronicle.com/api/mcpNo authentication required · Public read access · Stateless
5 tools available
list_capabilitiesList and search iOS 27 SDK capabilities. Returns all matching capabilities with name, summary, category, frameworks, and impact score.
categorystring?AI | UI | Performance | Safety | Store | Systemframeworkstring?e.g. "FoundationModels", "SwiftUI", "ActivityKit"changeTypestring?new | updated | deprecatedqstring?Full-text search across name and summaryExample prompt
“List all new AI capabilities in iOS 27”
get_capabilityGet full details for a specific capability: summary, why it matters, gotchas, hardware requirements, and a compilable Swift code demo.
slugstringThe capability slug from list_capabilitiesExample prompt
“Get the Foundation Models capability with its Swift code example”
find_affected_apisGiven framework names or API symbols used in your project, find which iOS 27 capabilities are relevant for you to review.
symbolsstring[]Framework names, class names, or API symbols (e.g. ["ObservableObject", "ActivityKit"])Example prompt
“My app uses ActivityKit and HealthKit — what changed in iOS 27?”
get_migration_diffFor updated APIs, get side-by-side Swift code showing the old iOS 26 pattern versus the new iOS 27 pattern.
slugstringSlug of a capability with changeType "updated"Example prompt
“Show me what changed in the App Intents API and how to update my code”
estimate_migrationEstimate the viability, risk level, and effort (hours/days) to adopt a capability in your project. Optionally provide project context for a tailored assessment.
slugstringThe capability slugproject_contextstring?Describe your project or paste relevant code/architectureExample prompt
“How hard would it be to add Foundation Models to my notes app?”
Connect your editor
Claude Code
Add to your project's mcp.json or your global Claude settings.
{
"mcpServers": {
"swiftchronicle": {
"type": "http",
"url": "https://swiftchronicle.com/api/mcp"
}
}
}Cursor
Go to Settings → MCP → Add Server, paste the URL.
https://swiftchronicle.com/api/mcp
Windsurf
Open the MCP panel and add a new HTTP server with the URL.
https://swiftchronicle.com/api/mcp
Zed
Add to your Zed settings under assistant.context_servers.
{
"swiftchronicle": {
"command": {
"path": "npx",
"args": ["-y", "mcp-remote", "https://swiftchronicle.com/api/mcp"]
}
}
}What you can ask
“What are the highest-impact new APIs in iOS 27 for a notes app?”
“Show me how to use the Foundation Models framework with a Swift code example.”
“My app uses ObservableObject and ActivityKit. What changed in iOS 27?”
“What's the before/after diff for the updated App Intents API?”
“How long would it take to add Liquid Glass controls to my app?”
“List all deprecated APIs in iOS 27 that I need to remove.”