drio
Open app

MCP Server

Source

Open-source MCP (Mission Control Panel) server for AWS - A powerful, region-independent backend service for AWS operations

Catalog onlyCatalog onlySTDIO

Overview

MCP Server is an open-source Mission Control Panel (MCP) server designed for AWS, providing a powerful, region-independent backend service for various AWS operations.

To use MCP Server, clone the repository from GitHub, install the necessary dependencies, configure your environment variables, and start the server for development or production.

  • Region-independent AWS operations - Credential validation and management - Secure API endpoints - Comprehensive error handling - TypeScript support - Built with security and scalability in mind
  1. Managing AWS resources across different regions.
  2. Validating AWS credentials securely.
  3. Building scalable applications that require backend services for AWS operations.

Add to your AI client

Use these steps to connect MCP Server 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-server-groovybugify": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-groovybugify"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What are the prerequisites for using MCP Server?

You need Node.js (v16 or higher), npm or yarn, and AWS credentials or an IAM role.

Is MCP Server free to use?

Yes! MCP Server is open-source and free to use.

How can I contribute to MCP Server?

Contributions are welcome! You can submit a Pull Request on GitHub.