drio
Open app

MCP Servers

Source

Repository for MCP (Model Context Protocol) servers and related resources

Catalog onlyCatalog onlySTDIO

Overview

MCP Servers is a repository containing a collection of Model Context Protocol (MCP) servers that can be used to extend the capabilities of language models like Claude.

To use these MCP servers, clone the repository, configure the necessary environment variables for each server, and add the servers to your MCP client configuration. You can also use the provided initialization script or Docker for easier setup.

  • Integration with various services like Google Cloud, GitHub, MySQL, and more. - Support for local filesystem access and web scraping. - Easy setup with scripts and Docker support.
  1. Extending language model capabilities with additional resources.
  2. Integrating with cloud services for enhanced functionality.
  3. Facilitating web scraping and data retrieval tasks.

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": {
    "mcp-servers-allanbrunobr": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-allanbrunobr"
      ]
    }
  }
}

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": {
    "mcp-servers-allanbrunobr": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-allanbrunobr"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-servers-allanbrunobr": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-allanbrunobr"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-servers-allanbrunobr": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-allanbrunobr"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-servers-allanbrunobr": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-allanbrunobr"
      ]
    }
  }
}

FAQ

What is the Model Context Protocol (MCP)?

MCP is a protocol that allows communication between language models and local servers, providing additional tools and resources.

How do I contribute to MCP Servers?

Contributions are welcome! You can open a pull request to add or improve a server.

What license is MCP Servers under?

This project is licensed under the MIT license.