Connect to an AI Client
Last updated
Was this helpful?
The MCP server works with any AI client that supports the Model Context Protocol. Select your client for step-by-step setup instructions.
Most clients use the same mcpServers JSON structure. Point the client at the ionoscloud-mcp binary and pass your credentials as environment variables:
{
"mcpServers": {
"ionoscloud": {
"command": "/path/to/ionoscloud-mcp",
"env": {
"IONOS_TOKEN": "your-api-token"
}
}
}
}Three clients differ from this pattern: Zed uses a context_servers key with a different JSON structure. OpenCode uses a "type": "local" entry with a command array and an environment key instead of env. JetBrains AI Assistant is configured entirely through the IDE settings UI; no JSON file to edit.
For Object Storage tools, also add IONOS_S3_ACCESS_KEY and IONOS_S3_SECRET_KEY. For more information, see Authentication.
The IONOS CLOUD documentation site exposes a free, public MCP server at https://docs.ionos.com/cloud/~gitbook/mcp. Add it alongside the infrastructure server to give your AI assistant access to both live account data and product documentation in the same session:
No credentials are required for the documentation server. The two servers are completely independent; use either one alone or both together.
Mixing url (remote, HTTP) and command (local, stdio) entries in the same mcpServers block is valid. Each entry uses its own transport; the AI client merges their tool catalogs automatically.
For more information, see Composing Multiple MCP Servers for example prompts.
Last updated
Was this helpful?
Was this helpful?
{
"mcpServers": {
"ionoscloud-docs": {
"url": "https://docs.ionos.com/cloud/~gitbook/mcp"
},
"ionoscloud": {
"command": "/path/to/ionoscloud-mcp",
"env": {
"IONOS_TOKEN": "your-api-token"
}
}
}
}