# SwiftZilla MCP Server > Documentation Index: https://swiftzilla.dev/llms.txt > Swift programming intelligence for AI agents. # SwiftZilla MCP Server SwiftZilla provides Swift programming intelligence for AI agents via Model Context Protocol (MCP). ## Remote MCP Server Use the remote URL directly with your API key: ``` https://swiftzilla.dev/mcp/sse?apiKey= ``` Or use headers: - `X-API-Key: ` - `Authorization: Bearer ` ## Tools ### search Search Swift technical context using SwiftZilla Deep Insightâ„¢. **Parameters:** - query (string, required): The search query **Examples:** - "How does async await work in Swift?" - "SwiftUI @State property wrapper" - "FoundationModels on-device LLM" ## Resources - `swift://evolution/{proposal_id}` - Swift Evolution proposals (e.g., SE-0400) - `swift://guidelines/{section}` - Swift API Design Guidelines sections - `swift://frameworks/{framework}/{symbol}` - Framework symbol documentation ## Prompts - `explain_concept(concept)` - Ask AI to explain a Swift concept - `summarize_proposal(proposal_id)` - Summarize a Swift Evolution proposal - `review_code(code)` - Review Swift code with best practices --- ## Configuration Examples ### Cursor ```json { "mcpServers": { "swiftzilla": { "command": "npx", "args": ["-y", "@swiftzilla/mcp", "--api-key", ""] } } } ``` ### Claude Desktop ```json { "mcpServers": { "swiftzilla": { "command": "npx", "args": ["-y", "@swiftzilla/mcp", "--api-key", ""] } } } ``` ### NPM Package ```bash MCP_API_KEY= npx -y @swiftzilla/mcp ``` --- ## Get Your API Key Sign up at https://swiftzilla.dev to get your API key.