frank-blueview-ai/ionos-mcp
If you are the rightful owner of ionos-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
This is a Model Context Protocol (MCP) server designed to facilitate interactions with IONOS APIs, enabling efficient management of DNS zones, domains, and SSL certificates.
IONOS MCP Server
This is a Model Context Protocol (MCP) server that provides tools for interacting with IONOS APIs. It allows you to manage DNS zones, domains, and SSL certificates through simple commands.
Features
The server provides tools for interacting with three main IONOS APIs:
DNS API
- List all DNS zones
- Get details of a specific zone
- Update a zone with new records
Domains API
- List all domains
- Get details of a specific domain
SSL API
- List all SSL certificates
- Get details of a specific certificate
- Create a new SSL certificate
- Unassign a certificate
Prerequisites
- Node.js (v16 or higher)
- An IONOS account with API access enabled
- An IONOS API key
Installation
- Clone this repository:
git clone https://github.com/Blue-View-Ai/ionos-mcp.git
cd ionos-mcp
- Install dependencies:
npm install
- Build the project:
npm run build
Configuration
To use this MCP server, you need to add it to your MCP settings configuration file. The location of this file depends on your environment:
- For VSCode:
~/.vscode-server/data/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
- For Claude Desktop (macOS):
~/Library/Application Support/Claude/claude_desktop_config.json
Add the following configuration to the mcpServers
object in the settings file:
{
"mcpServers": {
"ionos": {
"command": "node",
"args": ["./build/index.js"],
"env": {
"IONOS_API_KEY": "your-ionos-api-key"
},
"disabled": false,
"autoApprove": []
}
}
}
Replace your-ionos-api-key
with your IONOS API key.
Getting an IONOS API Key
To use the IONOS APIs, you need to:
- Sign up for API access on your IONOS account
- Create an API key through the IONOS developer portal
- Store the key securely in your MCP settings configuration
The API key format is publicprefix.secret
and should be treated as sensitive credentials (like passwords).
Usage
Once the MCP server is configured, you can use the following tools:
DNS API Tools
list_dns_zones
: List all DNS zonesget_dns_zone
: Get details of a specific zoneupdate_dns_zone
: Update a zone with new records
Domains API Tools
list_domains
: List all domainsget_domain_details
: Get details of a specific domain
SSL API Tools
list_certificates
: List all SSL certificatesget_certificate_details
: Get details of a specific certificatecreate_certificate
: Create a new SSL certificatedelete_certificate
: Unassign a certificate
Rate Limits
IONOS APIs have a rate limit of 1200 requests per hour per API key. The server handles rate limiting errors and will return appropriate error messages if the rate limit is exceeded.
License
MIT