{
"mcpServers": {
"swift-selena": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Swift Analyzer MCP Server, with respect to Serena
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 6 days ago. 5 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Swift Selena and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Swift Selena is an MCP (Model Context Protocol) server that provides Swift code analysis capabilities to Claude AI. It works even with build errors and strongly supports SwiftUI app development.
Swift-Selena uses a Meta Tool Mode that exposes only 4 tools to Claude, reducing context window usage. The actual analysis tools are loaded dynamically on demand.
Exposed Tools:
initialize_project - Initialize a project (must be called first)list_available_tools - List all available analysis tools with descriptionsget_tool_schema - Get the JSON schema for a specific toolexecute_tool - Execute any analysis tool by namefind_files - Search files by wildcard pattern (e.g., *ViewModel.swift)search_code - Search code content using regexsearch_files_without_pattern - Search files WITHOUT a pattern (grep -L equivalent)list_symbols - List all symbols (Class, Struct, Function, etc.)find_symbol_definition - Find symbol definitions across the projectlist_property_wrappers - Detect SwiftUI Property Wrappers (@State, @Binding, etc.)list_protocol_conformances - Analyze protocol conformances and inheritance (UITableViewDelegate, ObservableObject, etc.)list_extensions - Analyze extensions (extended type, protocol conformance, members)analyze_imports - Analyze import dependencies across the project (module usage statistics, cached)get_type_hierarchy - Get type inheritance hierarchy (superclass, subclasses, conforming types, cached)find_test_cases - Detect XCTest and Swift Testing (@Test, @Suite) test cases# Clone the repository
git clone https://github.com/BlueEventHorizon/Swift-Selena.git
cd Swift-Selena
# Build (release mode for production)
make build-release
# Or using swift directly:
# swift build -c release -Xswiftc -Osize
The build artifact is generated at .build/release/Swift-Selena.
make help # Show all available commands
| Command | Description |
|---------|-------------|
| make build | Build debug version |
| make build-release | Build release version |
| make clean | Clean build artifacts |
| Command | Target | Description |
|---------|--------|-------------|
| make register-release | Claude Code | Register RELEASE version (prompts for project path) |
| make unregister-release | Claude Code | U