Apple Developer Documentation with Semantic Search, RAG, and AI reranking for MC

GitHubRepository

Tags

registry.modelcontextprotocol.io

Configuration

{
  "mcpServers": {
    "mcp-server": {
      "url": "https://mcp.apple-rag.com",
      "type": "http"
    }
  },
  "requiresAuth": true,
  "requiresOAuth": false
}

Available Tools (2)

search

Search Apple's official developer documentation and video content using advanced RAG technology. Returns relevant content from Apple's technical documentation, frameworks, APIs, design guidelines, and educational resources.

Input Schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "maxLength": 10000,
      "minLength": 1,
      "description": "Search query for Apple's official developer documentation and video content. Queries must be written in English and focus on technical concepts, APIs, frameworks, features, and version numbers rather than temporal information."
    },
    "result_count": {
      "type": "number",
      "default": 4,
      "maximum": 10,
      "minimum": 1,
      "description": "Number of results to return (1-10)"
    }
  }
}

fetch

Retrieve complete cleaned content for a specific Apple developer documentation or video by URL. Returns the full processed content from Apple's official knowledge base.

Input Schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string",
      "minLength": 1,
      "description": "URL of the Apple developer documentation or video to retrieve content for"
    }
  }
}
Apple Developer Documentation with Semantic Search, RAG, and AI reranking for MC by com.apple-rag | RouterMCP