Skip to main content
Glama

Scaleway MCP Server

A comprehensive Model Context Protocol (MCP) server for managing Scaleway cloud infrastructure. This server provides both local STDIO and HTTP-based interfaces for seamless integration with MCP clients.

šŸš€ Features

  • Complete Scaleway API Coverage: Manage instances, databases, storage, networking, and more

  • Dual Deployment Options: Local STDIO server and HTTP server for remote access

  • Serverless Ready: Deploy to Scaleway Serverless Containers with one command

  • MCP Protocol Compliant: Full support for MCP 2024-11-05 specification

  • Production Ready: Docker containerization, health checks, and monitoring

Related MCP server: hcloud-mcp

šŸ› ļø Available Tools

Instance Management

  • list_instances - List all compute instances

  • get_instance - Get detailed instance information

  • start_instance - Start stopped instances

  • stop_instance - Stop running instances

Kubernetes

  • list_k8s_clusters - List all Kubernetes clusters

Database Management

  • list_databases - List PostgreSQL, MySQL databases

  • get_database - Get detailed database information

Object Storage

  • list_buckets - List all S3-compatible storage buckets

Container Registry

  • list_registries - List container registries and images

Load Balancers

  • list_load_balancers - List all load balancers

Serverless

  • list_functions - List all serverless functions

  • list_containers - List all serverless containers

Redis & Networking

  • list_redis_clusters - List Redis clusters

  • list_private_networks - List VPCs and private networks

Marketplace

  • list_marketplace_images - Browse available OS/app images

šŸ“¦ Quick Start

1. Local Development

# Clone the repository
git clone <repository-url>
cd scaleway-mcp-server

# Install dependencies
uv sync

# Set up environment variables
cp .env.example .env
# Edit .env with your Scaleway credentials

# Run the STDIO server
uv run scaleway_server.py

# Or run the HTTP server
uv run scaleway_http_server.py

2. Serverless Deployment

# Configure Scaleway CLI
scw init

# Deploy to Scaleway Serverless Containers
./deploy.sh

šŸ”§ Configuration

Environment Variables

Variable

Description

Example

SCW_ACCESS_KEY

Scaleway access key

your_access_key_here

SCW_SECRET_KEY

Scaleway secret key

your_secret_key_here

SCW_PROJECT_ID

Scaleway project ID

your_project_id_here

SCW_ORGANIZATION_ID

Scaleway organization ID

your_organization_id_here

SCW_DEFAULT_REGION

Default region

fr-par

SCW_DEFAULT_ZONE

Default zone

fr-par-1

MCP Client Configuration

For HTTP transport:

{
  "mcpServers": {
    "scaleway": {
      "transport": "http",
      "url": "https://your-deployment-url/mcp"
    }
  }
}

For STDIO transport:

{
  "mcpServers": {
    "scaleway": {
      "command": "uv",
      "args": ["run", "scaleway_server.py"],
      "cwd": "/path/to/scaleway-mcp-server"
    }
  }
}

🐳 Docker Deployment

# Build the image
docker build -t scaleway-mcp-server .

# Run locally
docker run -p 8080:8080 \
  -e SCW_ACCESS_KEY=your_access_key_here \
  -e SCW_SECRET_KEY=your_secret_key_here \
  -e SCW_PROJECT_ID=your_project_id_here \
  -e SCW_ORGANIZATION_ID=your_organization_id_here \
  scaleway-mcp-server

šŸ“š Documentation

šŸ” Security

  • Never commit real credentials to version control

  • Use environment variables or secure secret management

  • The server validates API credentials on startup

  • All API calls use official Scaleway SDK with proper authentication

šŸ¤ Contributing

  1. Fork the repository

  2. Create a feature branch

  3. Make your changes

  4. Test thoroughly

  5. Submit a pull request

šŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

šŸ†˜ Support

šŸ—ļø Architecture

ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”    ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”    ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”
│   MCP Client    │    │  Scaleway MCP    │    │  Scaleway API   │
│   (Manus, etc)  │◄──►│     Server       │◄──►│   (Official)    │
ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜    ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜    ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜
                              │
                              ā–¼
                       ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”
                       │  Scaleway Cloud  │
                       │   Infrastructure │
                       ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜

The server acts as a bridge between MCP clients and the Scaleway cloud platform, providing a standardized interface for infrastructure management.

Install Server
A
license - permissive license
A
quality
D
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    C
    quality
    D
    maintenance
    A Model Context Protocol server for the Hetzner Cloud API that enables natural language management of cloud infrastructure. Users can list, create, and modify servers, networks, volumes, and load balancers through MCP-compatible clients.
    Last updated
    67
    16
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    An MCP server for the Spot.io API that enables management of AWS and Azure Ocean clusters across multiple accounts. It provides tools for cluster inventory, node management, cost analysis, and scaling operations through natural language.
    Last updated
    39
    1
    MIT
  • A
    license
    -
    quality
    B
    maintenance
    MCP server for Coolify infrastructure management, providing 45 tools for servers, applications, databases, deployments, and diagnostics via natural language.
    Last updated
    53
    MIT

View all related MCP servers

Related MCP Connectors

  • An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform

  • MCP server for interacting with the Supabase platform

  • GibsonAI MCP server: manage your databases with natural language

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/klogins-hash/scaleway-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server