-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.json
More file actions
52 lines (52 loc) · 2.74 KB
/
Copy pathserver.json
File metadata and controls
52 lines (52 loc) · 2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.ionos-cloud/ionoscloud-mcp",
"title": "IONOS CLOUD MCP Server",
"description": "Inspect IONOS CLOUD infrastructure via MCP",
"version": "1.1.0",
"repository": {
"url": "https://github.com/ionos-cloud/ionoscloud-mcp",
"source": "github"
},
"packages": [
{
"registryType": "oci",
"identifier": "ghcr.io/ionos-cloud/ionoscloud-mcp:latest",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "IONOS_TOKEN",
"description": "IONOS CLOUD API token (required for all products except Object Storage)",
"isRequired": true,
"isSecret": true
},
{
"name": "IONOS_S3_ACCESS_KEY",
"description": "S3 access key for IONOS Object Storage",
"isRequired": false,
"isSecret": true
},
{
"name": "IONOS_S3_SECRET_KEY",
"description": "S3 secret key for IONOS Object Storage",
"isRequired": false,
"isSecret": true
},
{
"name": "IONOS_MCP_LOAD_MODE",
"description": "Tool registration strategy (the --load-mode flag overrides this). 'eager' (default): register all tools at startup. 'lazy': defer Compute and Object Storage behind 'ionos_load_compute_tools' / 'ionos_load_objectstorage_tools' sentinel tools (requires MCP client support for notifications/tools/list_changed). 'dynamic' (alias 'search'): expose only the ionos_search_tools / ionos_describe_tools / ionos_call_tool meta-tools and browse the full catalog through them — for clients with hard tool caps and no tool search of their own (Cursor, Windsurf).",
"isRequired": false,
"isSecret": false
},
{
"name": "IONOS_MCP_TOOL_SCOPE",
"description": "Opt in to write operations. Unset (default) leaves the server read-only: only list_/get_/head_ tools are registered. 'write' additionally registers create_/update_ tools and the non-disruptive actions (start_, resume_, attach_, assign_); 'destructive' also registers delete_ and the disruptive actions (stop_, reboot_, suspend_, upgrade_, restore_, detach_, recreate_, import_) and implies 'write'. Comma-separated, case-insensitive, hierarchical; unrecognised values stay read-only. WARNING: enabling this lets an AI model provision, modify and delete billable resources in a live IONOS CLOUD account. Every create and delete requires a two-phase confirmation, but that cannot stop a client configured to approve tool calls automatically. Leave unset unless writes are needed.",
"isRequired": false,
"isSecret": false
}
]
}
]
}