SkillAgentSearch skills...

Tech Conf Agent

Swift 6.2 MCP server for technical conference navigation with natural language queries

Install / Use

/learn @doozMen/Tech Conf Agent
About this skill

Quality Score

0/100

Supported Platforms

Claude Code
Claude Desktop
Cursor

README

ServerSide.swift 2025 Conference Navigator

A Model Context Protocol (MCP) server built specifically for ServerSide.swift 2025 London (October 2-3, 2025). Navigate the conference with AI-powered queries about sessions, speakers, and schedules through Claude Desktop.

Built with Swift 6.2 and actor-based concurrency, this MCP server provides comprehensive access to the ServerSide.swift conference data including 27+ speakers, session schedules, and venue information.

Overview

This MCP server is tailored specifically for ServerSide.swift 2025 London, featuring:

  • 27+ Speaker Profiles: Apple Swift Server team members (Franz Busch, George Barnett, Ben Cohen), framework creators (Adam Fowler - Hummingbird, Joannis Orlandos - MongoKitten), and production experts
  • Complete Conference Schedule: All sessions from October 2-3, 2025 with tracks, difficulty levels, and formats
  • Natural Language Queries: Ask about sessions, speakers, and topics in plain English
  • Real Conference Data: Authentic speaker bios, GitHub profiles, expertise areas, and session topics

Use Cases

  • Conference Attendees: Find sessions matching your interests, discover speakers, plan your schedule
  • Speaker Networking: Learn about speakers' backgrounds, expertise, and projects before the conference
  • Session Discovery: Search by topic (Swift 6, concurrency, Vapor, Hummingbird, AWS Lambda, etc.)
  • Schedule Planning: Query sessions by day, time, track, or difficulty level

Could This Work for Other Conferences?

While this MCP server is specifically built for ServerSide.swift 2025, the architecture could be adapted for other technical conferences. The database schema and MCP tools are general enough to support any conference with sessions, speakers, and schedules. You would need to:

  1. Replace the sample data in Resources/Conferences/ with your conference data
  2. Update speaker profiles, session schedules, and venue information
  3. Optionally customize the database schema for conference-specific needs

The Swift 6.2 codebase, actor-based concurrency, and MCP protocol implementation are conference-agnostic.

Features

Multi-Mode CLI (v1.0.1+)

The tech-conf-mcp executable provides three modes of operation:

1. MCP Server Mode (Default)

Run as a Model Context Protocol server for Claude Desktop:

tech-conf-mcp                      # Start MCP server
tech-conf-mcp server --log-level debug

2. Agent Management

Manage Claude Code agent definitions with intelligent diff checking:

tech-conf-mcp agent list           # List available agents
tech-conf-mcp agent install wispr-flow-specialist
tech-conf-mcp agent diff <name>    # Show changes before updating
tech-conf-mcp agent install --diff # Preview all changes

Features:

  • Intelligent diff detection (only updates if files changed)
  • Automatic backups before overwrites
  • Dry-run mode for safe previewing

3. MCP Management

Automate MCP server installation and configuration:

tech-conf-mcp mcp list            # List available MCP servers
tech-conf-mcp mcp scan            # Scan agents for dependencies
tech-conf-mcp mcp install tech-conf ghost github

Features:

  • Registry-based installation (.claude/mcp-registry.json)
  • Automatic Claude Desktop configuration
  • Supports Swift, npm, and HTTP MCPs

6 Core MCP Tools

  1. list_sessions - Browse all conference sessions with optional filtering
  2. search_sessions - Find sessions using natural language queries
  3. get_speaker - Retrieve detailed speaker information and their sessions
  4. get_schedule - Query schedule for specific days or time ranges
  5. find_room - Locate rooms and check their schedules
  6. get_session_details - Get comprehensive details about a specific session

Sample Queries for ServerSide.swift 2025

"Show me all sessions on October 2nd"
"Who is Adam Fowler and what is he talking about?"
"Find all sessions about Vapor and Hummingbird"
"What Swift 6 concurrency sessions are there?"
"Show me speakers from the Apple Swift Server team"
"Which sessions cover AWS Lambda with Swift?"
"Tell me about Joannis Orlandos' MongoKitten talk"

Architecture

Technology Stack

  • Swift 6.2: Modern Swift with strict concurrency checking
  • MCP Swift SDK: Official Model Context Protocol implementation
  • SharingGRDB: Type-safe SQLite database layer with observable queries
  • Actor-based Concurrency: Thread-safe data access

Project Structure

tech-conf-mcp/
├── Sources/
│   ├── TechConfCore/          # Domain models and database layer
│   │   ├── Models/             # Session, Speaker, Room entities
│   │   ├── Database/           # SQLite schema and migrations
│   │   └── Queries/            # Type-safe query methods
│   │
│   ├── TechConfMCP/           # MCP server implementation
│   │   ├── Server.swift        # Main MCP server with tool handlers
│   │   ├── Tools/              # Individual tool implementations
│   │   └── ValueExtensions/    # MCP value serialization
│   │
│   └── tech-conf-mcp/         # Executable entry point
│       └── main.swift          # CLI and server initialization
│
├── Data/
│   ├── conferences.sqlite      # SQLite database
│   └── migrations/             # Database migration scripts
│
└── Tests/
    └── TechConfTests/          # Swift Testing test suite

Database Schema

The server uses SQLite with the following core tables:

  • sessions - Conference talks with title, description, time, track
  • speakers - Speaker profiles with bio, expertise, contact info
  • rooms - Venue locations with capacity and equipment details
  • session_speakers - Many-to-many relationship between sessions and speakers
  • tags - Categorical tags for filtering (Swift, iOS, Server, etc.)

Installation

Requirements

  • macOS 15.0+ (Sequoia or later)
  • Swift 6.2+ (included with Xcode 16.2+)
  • Claude Desktop (for MCP integration)

Install via Swift Package Manager

# Clone the repository
git clone https://github.com/doozMen/tech-conf-agent.git
cd tech-conf-mcp

# Install the executable
swift package experimental-install

# Verify installation
~/.swiftpm/bin/tech-conf-mcp --version

The executable will be installed to ~/.swiftpm/bin/tech-conf-mcp.

Configure Claude Desktop

Add to your Claude Desktop configuration file (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "tech-conf": {
      "command": "tech-conf-mcp",
      "args": ["--log-level", "info"],
      "env": {
        "PATH": "$HOME/.swiftpm/bin:/usr/local/bin:/usr/bin:/bin"
      }
    }
  }
}

Important: The PATH environment variable must include ~/.swiftpm/bin for Claude Desktop to find the installed executable.

Restart Claude Desktop

After updating the configuration:

  1. Quit Claude Desktop completely
  2. Relaunch Claude Desktop
  3. Verify the MCP server is connected (look for "tech-conf" in available tools)

Usage

Example Conversations

Finding Sessions

You: Show me all sessions about Swift concurrency tomorrow
Claude: [Uses search_sessions tool]

Speaker Information

You: Who is John Sundell and what is he talking about?
Claude: [Uses get_speaker tool]

Schedule Queries

You: What's happening in Hall A between 2pm and 4pm?
Claude: [Uses get_schedule and find_room tools]

Session Details

You: Tell me more about the "Modern Swift Concurrency" talk
Claude: [Uses get_session_details tool]

Natural Language Support

The MCP server understands various date/time formats:

  • Relative: "today", "tomorrow", "this afternoon"
  • Absolute: "October 15", "Oct 15 2025", "2025-10-15"
  • Time ranges: "2pm-4pm", "14:00-16:00", "afternoon"
  • Day parts: "morning", "afternoon", "evening"

Speaker Discovery

The MCP server includes comprehensive speaker profiles from ServerSide.swift 2025 London:

  • 27+ speakers with full bios, expertise areas, and professional backgrounds
  • Apple Swift Server team members: Franz Busch, George Barnett, Honza Dvorsky, Ben Cohen, Si Beaumont, Eric Ernst, Agam Dua
  • Framework creators: Adam Fowler (Hummingbird, Soto), Joannis Orlandos (MongoKitten)
  • Production experts: Ben Rosen (SongShift), Mikaela Caron (Vapor backends), Daniel Jilg (TelemetryDeck)
  • Social links: GitHub, Twitter, LinkedIn, personal websites

Example Speaker Queries

"Who is Adam Fowler and what is he talking about?"
→ Returns: Senior Apple engineer, Hummingbird maintainer, speaking on Valkey-swift with type-safe Redis

"Show me all sessions by Mikaela Caron"
→ Returns: "Building Fruitful" - Vapor 4 backend with PostgreSQL, S3, Redis, JWT auth

"Find speakers working on Swift concurrency"
→ Returns: Matt Massicotte (Swift 6 patterns), Mikaela Caron (strict concurrency in Vapor)

Full speaker documentation: See docs/Speakers | ServerSide.md for complete profiles with expertise, social links, and session topics.

Conference Data

The server contains real data from ServerSide.swift 2025 London:

  • 27+ Real Speakers: Actual speaker profiles from the conference website with verified bios, GitHub profiles, and expertise areas
  • Complete Sessions: All talks, workshops, and sessions from October 2-3, 2025
  • Conference Venue: London, UK location details
  • Session Tracks: Server-Side Swift, Vapor Framework, Hummingbird, SwiftNIO, Testing & Quality, Deployment & DevOps, Swift 6 & Concurrency

Conference Website: serversideswift.info

This is production conference data, not sample/demo data. The database is pre-populated with the actual ServerSide.swift 2025 conference schedule and speaker information.

Development

Building from Source

# Debug build
swift build

# Release build  
swift build -c rele
View on GitHub
GitHub Stars3
CategoryDevelopment
Updated4mo ago
Forks0

Languages

Swift

Security Score

87/100

Audited on Nov 26, 2025

No findings