MCP Server · Streamable HTTP

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/mcp

No authentication required · Public read access · Stateless

5 tools available

list_capabilities

List and search iOS 27 SDK capabilities. Returns all matching capabilities with name, summary, category, frameworks, and impact score.

categorystring?AI | UI | Performance | Safety | Store | System
frameworkstring?e.g. "FoundationModels", "SwiftUI", "ActivityKit"
changeTypestring?new | updated | deprecated
qstring?Full-text search across name and summary

Example prompt

List all new AI capabilities in iOS 27

get_capability

Get full details for a specific capability: summary, why it matters, gotchas, hardware requirements, and a compilable Swift code demo.

slugstringThe capability slug from list_capabilities

Example prompt

Get the Foundation Models capability with its Swift code example

find_affected_apis

Given 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_diff

For 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_migration

Estimate 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 slug
project_contextstring?Describe your project or paste relevant code/architecture

Example 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

01

What are the highest-impact new APIs in iOS 27 for a notes app?

02

Show me how to use the Foundation Models framework with a Swift code example.

03

My app uses ObservableObject and ActivityKit. What changed in iOS 27?

04

What's the before/after diff for the updated App Intents API?

05

How long would it take to add Liquid Glass controls to my app?

06

List all deprecated APIs in iOS 27 that I need to remove.