scaleway-ops-mcp-server
Enables management of Scaleway IAM (applications, API keys, policies, permission sets) and Object Storage bucket policies through an MCP server.
README
scaleway-ops-mcp-server
MCP server for Scaleway IAM (Applications, API keys, Policies, Permission sets) and Object Storage Bucket Policy management.
Why this exists
Provisioning a scoped Scaleway credential for a new service (create an IAM Application, mint its
API key, attach an IAM Policy, attach a Bucket Policy on the target bucket) is a recurring task
that was previously done by hand through the web console. This server wraps the real Scaleway API
so an agent can do it via tool calls instead - see docs/gotchas.md for the
non-obvious parts of that API this server exists to paper over.
Setup
npm install
npm run build
Configuration
Environment variables (see .env.example):
| Variable | Required | Purpose |
|---|---|---|
SCW_ACCESS_KEY |
yes | Access key of the credential this server authenticates as. |
SCW_SECRET_KEY |
yes | Secret key. Used as X-Auth-Token for the IAM API and as the SigV4 secret for S3 calls. |
SCW_ORGANIZATION_ID |
yes | Organization these operations run in (UUID). |
SCW_PROJECT_ID |
yes | Default Project UUID (used as default_project_id when creating API keys, and wherever a Project id is needed but not explicitly passed). |
SCW_DEFAULT_REGION |
no (default fr-par) |
Region for Bucket Policy calls when a tool call doesn't specify one. |
MAX_OUTPUT_CHARS |
no (default 25000) |
Truncation limit for tool response text; structuredContent is replaced with a { truncated: true, note } marker when the untruncated JSON exceeds the ceiling. |
MAX_PUT_OBJECT_BYTES |
no (default 5000000) |
Decoded-size ceiling for scaleway_s3_put_object - single-part only, multipart is out of scope. |
MAX_GET_OBJECT_BYTES |
no (default 5000000) |
Decoded-size ceiling for scaleway_s3_get_object - larger objects should use scaleway_s3_generate_presigned_url. |
The credential this server runs as needs its own IAM Policy granting (at minimum)
IAMApplicationManager + IAMPolicyManager (organization scope) and ObjectStorageFullAccess
(project scope) - see docs/gotchas.md for why these must be two separate policy rules. Create a
dedicated IAM Application for this server (don't reuse a human user's credential or an
Application scoped for something else) and grant it only what the table above needs.
Running
Via Claude Code / any MCP client, as a stdio server. Simplest, via npx (no local clone needed):
{
"mcpServers": {
"scaleway-ops": {
"command": "npx",
"args": ["-y", "scaleway-ops-mcp-server"],
"env": {
"SCW_ACCESS_KEY": "...",
"SCW_SECRET_KEY": "...",
"SCW_ORGANIZATION_ID": "...",
"SCW_PROJECT_ID": "..."
}
}
}
}
Or from a local clone/build, useful for development or pinning to an unreleased commit:
{
"mcpServers": {
"scaleway-ops": {
"command": "node",
"args": ["/absolute/path/to/scaleway-ops-mcp-server/dist/index.js"],
"env": {
"SCW_ACCESS_KEY": "...",
"SCW_SECRET_KEY": "...",
"SCW_ORGANIZATION_ID": "...",
"SCW_PROJECT_ID": "..."
}
}
}
}
Tools
IAM Applications
scaleway_iam_create_application,scaleway_iam_list_applications,scaleway_iam_get_application,scaleway_iam_update_application,scaleway_iam_delete_application
IAM API keys
scaleway_iam_create_api_key,scaleway_iam_list_api_keys,scaleway_iam_update_api_key,scaleway_iam_delete_api_keyupdate_api_keycoversdescription/expires_at/default_project_idonly - the access_key/secret_key pair never changes, so it never rotates the credential.
IAM Policies
scaleway_iam_create_policy,scaleway_iam_list_policies,scaleway_iam_get_policy,scaleway_iam_update_policy,scaleway_iam_delete_policyupdate_policycoversname/description/tagsonly. Forrules, use the two tools below -get_policynever returns them.
IAM Policy rules (separate endpoint from the Policy object itself - see docs/gotchas.md)
scaleway_iam_list_policy_rules,scaleway_iam_set_policy_rules(atomic full-replacePUT, no delete+recreate lockout risk)
IAM Users (human identities, issue #4; invite semantics unverified - see gotchas)
scaleway_iam_list_users,scaleway_iam_get_userscaleway_iam_create_user(confirm-guarded; sends a real invitation email - semantics unverified without a disposable mailbox)scaleway_iam_update_user(profile fields),scaleway_iam_delete_user(confirm + owner-refused + guest-scoped API errors surfaced)scaleway_iam_lock_user/scaleway_iam_unlock_user(lock is confirm-guarded - acts on a person)scaleway_iam_update_user_password(admin-set reset, confirm-guarded),scaleway_iam_update_user_username(confirm-guarded)scaleway_iam_delete_user_mfa_otp(confirm-guarded, security-weakening),scaleway_iam_list_user_grace_periods
IAM Groups (issue #5; completes the group_id principal loop policy tools already accept - fully live-verified, zero blast radius)
scaleway_iam_list_groups(name is EXACT match, not substring),scaleway_iam_get_groupscaleway_iam_create_group(no confirm - reversible, no side effects to anyone),scaleway_iam_update_group(name/description/tags)scaleway_iam_delete_group(confirm-guarded; refuses managed/special/deletable=falsegroups tool-side)scaleway_iam_add_group_member(one user and/or one application),scaleway_iam_add_group_members(bulk, additive) — both refuse managed/special/editable=falsegroupsscaleway_iam_set_group_members(confirm-guarded; FULL-REPLACE - omitted members are removed),scaleway_iam_remove_group_member(confirm-guarded) — same special/non-editable refusal
IAM SSH Keys (issue #6; projects-scope permission, unlike this server's other IAM tools - see gotchas)
scaleway_iam_list_ssh_keys,scaleway_iam_get_ssh_key,scaleway_iam_create_ssh_key(public keys only - rejects anything that looks like a private key),scaleway_iam_update_ssh_key(rename only),scaleway_iam_delete_ssh_key(confirm-guarded)
IAM JWTs (issue #6; browser/console session tokens, not API keys)
scaleway_iam_list_jwts,scaleway_iam_get_jwt,scaleway_iam_delete_jwt(confirm-guarded) -liststructurally 403s for an Application/API-key credential regardless of permissions (see gotchas); implemented per the corrected/jwtspath in caseget/deletefare better.
IAM SAML SSO (issue #6; org-wide - see gotchas for a live incident this was found from)
scaleway_iam_get_saml_config,scaleway_iam_enable_saml/update_saml/disable_saml(all confirm-guarded, org-wide blast radius),scaleway_iam_list/add/get/delete_saml_certificate(add/get/delete confirm-guarded where destructive; single-certificate path unverified, see gotchas)
IAM SCIM provisioning (issue #6; same org-wide caution as SAML)
scaleway_iam_get_scim_config,scaleway_iam_enable_scim/disable_scim(confirm-guarded),scaleway_iam_list/create/delete_scim_token(create/delete confirm-guarded; token secret returned once, like an API key)
IAM Security Settings (issue #6; org-wide auth policy - live-verified both directions)
scaleway_iam_get_security_settings,scaleway_iam_update_security_settings(confirm-guarded; only passed fields change)
IAM Permission sets
scaleway_iam_list_permission_sets- call this before creating/attaching a policy; seedocs/gotchas.md.
Object Storage Buckets (S3-compatible endpoint, separate auth path from the IAM API)
scaleway_s3_create_bucket,scaleway_s3_list_buckets,scaleway_s3_delete_bucket- bucket lifecycle.
Object Storage bucket configuration (issue #7; behavior facts live-verified 2026-08-18, see docs/gotchas.md)
- Tags:
scaleway_s3_get/put/delete_bucket_tagging(put = full-replace). - CORS:
scaleway_s3_get/put/delete_bucket_cors(put = full-replace). - Versioning:
scaleway_s3_get_bucket_versioning,scaleway_s3_set_bucket_versioning(suspend needs confirm). - Website:
scaleway_s3_get/put/delete_bucket_website(put publishes an endpoint, needs confirm). - Visibility:
scaleway_s3_get/set_bucket_visibility- coarse public/private via canned ACL (public needs confirm; Bucket Policies are the fine-grained mechanism). - Lifecycle rules:
scaleway_s3_get/put/delete_bucket_lifecycle(put/delete confirm-guarded - expiration rules permanently delete objects). - Encryption config:
scaleway_s3_get/put/delete_bucket_encryption- real, toggleable setting (console-confirmed), not inert metadata; seedocs/gotchas.md. - Object Lock:
scaleway_s3_get_object_lock,scaleway_s3_enable_object_lock(one-way: never disableable, versioning prerequisite handled, versioning frozen afterwards; create-time lock flag is silently ignored by Scaleway). - No tools for bucket logging or bucket metrics: Scaleway's S3 endpoint returns
NotImplementedfor both.
Object Storage Bucket Policies
scaleway_s3_get_bucket_policy,scaleway_s3_put_bucket_policy,scaleway_s3_delete_bucket_policy
Object Storage Objects (single-part only; multipart/large-file upload is out of scope)
scaleway_s3_put_object,scaleway_s3_get_object,scaleway_s3_list_objects,scaleway_s3_head_object,scaleway_s3_copy_object,scaleway_s3_delete_object,scaleway_s3_delete_objectsput_object/get_objectcarry binary payloads as base64 (encoding: "base64"); decoded size is capped byMAX_PUT_OBJECT_BYTES/MAX_GET_OBJECT_BYTESrespectively (default 5 MB).get_objectauto-detects UTF-8 text vs. binary and returnsencodingaccordingly; objects over the get ceiling fail fast - usescaleway_s3_generate_presigned_url.scaleway_s3_get_object_tags,scaleway_s3_put_object_tags(putreplaces the whole tag set, same replace-not-merge semantics asput_bucket_policy)scaleway_s3_generate_presigned_url- time-limited GET/PUT URL for handing direct object access to something outside MCP, without exposing this server's credential.
Audit Trail — event queries (read-only; all need AuditTrailReadOnly on this server's credential - grant via scaleway_iam_set_policy_rules)
scaleway_audit_list_events- who did what, when, from where (API/resource activity).scaleway_audit_list_authentication_events- authentication activity (login/token/MFA outcomes) - separate endpoint.scaleway_audit_list_system_events- actions performed by Scaleway's own systems on your resources.scaleway_audit_list_combined_events- all three streams in one chronological feed, each event tagged api/auth/system.scaleway_audit_get_last_events_overview- the recent-events snapshot the console's Audit Trail landing page shows.scaleway_audit_list_products- products/services/methods integrated with Audit Trail (the valid filter-value catalog).
Audit Trail — alert rules
scaleway_audit_list_alert_rules,scaleway_audit_set_alert_rules_enabled(additive),scaleway_audit_replace_enabled_alert_rules(full-replace, confirm-guarded) - Scaleway's preconfigured rules; they can only be enabled/disabled, never created or deleted. Unknown rule IDs reject the whole request atomically (live-verified 2026-08-18).scaleway_audit_list_custom_alert_rules,scaleway_audit_create_custom_alert_rule,scaleway_audit_update_custom_alert_rule(name/description only),scaleway_audit_delete_custom_alert_rule,scaleway_audit_set_custom_alert_rules_enabled,scaleway_audit_replace_enabled_custom_alert_rules- caveat: Scaleway documents these endpoints but the deployed API returns HTTP 501 for every custom-alert-rules method (live-verified 2026-08-18). The tools are in place and surface that error verbatim; they'll work when Scaleway ships the backend.
Audit Trail — export jobs (ship audit events to an Object Storage bucket)
scaleway_audit_list_export_jobs,scaleway_audit_create_export_job,scaleway_audit_delete_export_job(confirm-guarded; stops future exports, doesn't delete already-exported objects).- Alert/export write tools need more than
AuditTrailReadOnlyon this server's credential; permission errors surface verbatim.
Scope
Deliberately narrow: IAM identity/policy management (Applications, human Users, and Groups), SSH Keys, JWTs, SAML/SCIM/Security Settings, Bucket Policies, bucket lifecycle and configuration, Object Storage object CRUD (put/get/list/head/copy/delete/tags/presigned URLs, single-part only), and Audit Trail (event queries, alert rules, export jobs), because that's what actually caused friction so far. Not a general Scaleway API wrapper - no compute, databases, containers, no multipart upload, no bucket logging/metrics (Scaleway's S3 API doesn't implement them), no Quotas (no real endpoint could be found - see docs/gotchas.md). Extend it the same way if/when those become a recurring need too.
Dev
npm run dev # tsc --watch
node scripts/smoke-test.mjs # exercises real tool calls against the live account via .env - not automated CI
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。