drio
Open app

MCP Servers

Source

A collection of MCP Servers

Catalog onlyCatalog onlySTDIO

Overview

MCP Servers is a collection of servers built using Swift and the SwiftMCP framework, designed for developers looking to implement or test MCP (Model Context Protocol) functionalities.

To use MCP Servers, clone the repository from GitHub and follow the setup instructions provided in the documentation to run the servers locally or integrate them into your projects.

  • Built with Swift for performance and efficiency. - Utilizes the SwiftMCP framework for easy implementation of MCP functionalities. - Tested with tools like MCP Inspector and Claude for Desktop to ensure reliability.
  1. Developing applications that require MCP functionalities.
  2. Testing and debugging MCP implementations.
  3. Learning and experimenting with Swift and server-side programming.

Add to your AI client

Use these steps to connect MCP Servers in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcpservers-spprichard": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpservers-spprichard"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcpservers-spprichard": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpservers-spprichard"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcpservers-spprichard": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpservers-spprichard"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcpservers-spprichard": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpservers-spprichard"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcpservers-spprichard": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpservers-spprichard"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcpservers-spprichard": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpservers-spprichard"
      ]
    }
  }
}

FAQ

What programming language is used for MCP Servers?

MCP Servers are built using Swift.

Are there any dependencies required to run MCP Servers?

Yes, you will need to install Swift and the SwiftMCP framework.

Where can I find the documentation for MCP Servers?

Documentation can be found in the GitHub repository.

MCP Servers — MCP Registry