Making Apple docs AI-readable.
sosumi.ai provides Apple Developer documentation in an AI-readable format by converting JavaScript-rendered pages into Markdown.
Replace developer.apple.com
with sosumi.ai
in any Apple Developer documentation URL:
Original:
https://developer.apple.com/documentation/swift/array
AI-readable:
https://sosumi.ai/documentation/swift/array
This works for all API reference docs, as well as Apple's Human Interface Guidelines (HIG).
Sosumi's MCP server supports Streamable HTTP and Server-Sent Events (SSE) transport.
If your client supports either of these,
configure it to connect directly to https://sosumi.ai/mcp
.
Otherwise, you can run this command to proxy over stdio:
{
"mcpServers": {
"sosumi": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://sosumi.ai/mcp"]
}
}
}
See the website for client-specific instructions.
doc://{path}
- Apple Developer documentation and Human Interface Guidelines in Markdown format- Example:
doc://swift/array
returns Swift Array documentation - Example:
doc://design/human-interface-guidelines/foundations/color
returns HIG Color guidelines
- Example:
-
searchAppleDocumentation
- Searches Apple Developer documentation- Parameters:
query
(string) - Returns structured results with titles, URLs, descriptions, breadcrumbs, and tags
- Parameters:
-
fetchAppleDocumentation
- Fetches Apple Developer documentation and Human Interface Guidelines by path- Parameters:
path
(string) - Documentation path (e.g., '/documentation/swift', 'swiftui/view', 'design/human-interface-guidelines/foundations/color') - Returns content as Markdown
- Parameters:
This project is designed to be easily run on your own machine or deployed to a hosting provider.
Sosumi.ai is currently hosted by Cloudflare Workers.
- Node.js 18+
- npm
-
Clone the repository:
git clone https://github.com/nshipster/sosumi.ai.git cd sosumi.ai
-
Install dependencies:
npm install
-
Start development server:
npm run dev
Once the application is up and running, press the b to open the URL in your browser.
To configure MCP clients to use your development server,
replace sosumi.ai
with the local server address
(http://localhost:8787
by default).
Note
The application is built with Hono, making it compatible with various runtimes.
See the Hono docs for more information about deploying to different platforms.
This project uses vitest for unit and integration testing.
npm run test # Run tests
npm run test:ui # Run tests with UI
npm run test:run # Run tests once
This project uses Biome for code formatting, linting, and import organization.
npm run format
- Format all code filesnpm run lint
- Lint and fix code issuesnpm run check
- Format, lint, and organize imports (recommended)npm run check:ci
- Check code without making changes (for CI)
For the best development experience, install the Biome extension for your editor:
Whenever you update your wrangler.toml
or change your Worker bindings,
be sure to re-run:
npm run cf-typegen
This project is available under the MIT license. See the LICENSE file for more info.
This is an unofficial, independent project and is not affiliated with or endorsed by Apple Inc. "Apple", "Xcode", and related marks are trademarks of Apple Inc.
This service is an accessibility-first, on‑demand renderer. It converts a single Apple Developer page to Markdown only when requested by a user. It does not crawl, spider, or bulk download; it does not attempt to bypass authentication or security; and it implements rate limiting to avoid imposing unreasonable load.
Content is fetched transiently and may be cached briefly to improve performance. No permanent archives are maintained. All copyrights and other rights in the underlying content remain with Apple Inc. Each page links back to the original source.
Your use of this service must comply with Apple's Terms of Use and applicable law. You are solely responsible for how you access and use Apple's content through this tool. Do not use this service to circumvent technical measures or for redistribution.
Contact: info@sosumi.ai