DomainPilot MCP Server
This server connects AI assistants to your Domain Pilot account, enabling domain portfolio management, DNS control, uptime monitoring, SSL tracking, and health analysis through natural language.
Domain Management
List all domains with their status, health grade, and monitoring state
Get detailed domain info including uptime, SSL, health scores, and expiry dates
Add new domains to monitor
Get a dashboard overview — total domains, online count, expiring domains, and alerts
Health & AI Analysis
Get domain health check results including scores and grades
Trigger on-demand health checks for any domain
Get AI-powered analysis with findings and recommendations
DNS Management
List all DNS records for a domain
Add DNS records (A, AAAA, CNAME, MX, TXT, NS)
Update existing DNS records (value, TTL, priority)
Acknowledge detected DNS changes
(Note: DNS record deletion is intentionally not supported — use the web UI for that)
Uptime & Incidents
Get uptime statistics for 24h, 7d, or 30d periods
List downtime incidents for a domain
Toggle uptime monitoring on or off
SSL
Get SSL certificate status and details for a domain
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@DomainPilot MCP ServerCheck the health of domain example.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
DomainPilot MCP Server
A Model Context Protocol (MCP) server that connects AI assistants to your Domain Pilot account. Manage domains, DNS records, uptime monitoring, SSL status, and more through natural language in Claude Desktop, Claude Code, or any MCP-compatible client.
Quick Start
The server is published on npm, so there's nothing to install or build -- npx fetches and runs it on demand.
1. Get your API token
Generate an MCP API token from your Domain Pilot settings page at domainpilot.io/settings/mcp.
2. Configure your AI client
Claude Code (recommended)
One command -- no config file to edit:
claude mcp add domainpilot --env DOMAINPILOT_API_TOKEN=your-token-here -- npx -y domainpilot-mcpThe -- separates Claude's flags from the command it runs; everything after it is the launch command. Pin a version with domainpilot-mcp@1.0.2 if you prefer.
Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"domainpilot": {
"command": "npx",
"args": ["-y", "domainpilot-mcp"],
"env": {
"DOMAINPILOT_API_TOKEN": "your-token-here"
}
}
}
}ChatGPT (or other MCP clients)
Use the same pattern -- run npx -y domainpilot-mcp and set the DOMAINPILOT_API_TOKEN environment variable.
Running from source (development)
To run a local checkout instead of the published package:
git clone https://github.com/warunacds/domainpilot-mcp.git
cd domainpilot-mcp
npm install
npm run buildThen point your client's command/args at the built entry point -- "command": "node", "args": ["/absolute/path/to/domainpilot-mcp/dist/index.js"].
Remote HTTP development
The remote entrypoint serves stateless Streamable HTTP at /mcp:
# Development
npm run dev:http
# Built server
npm run build
npm run start:httpList tools without authentication:
curl http://localhost:3000/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'Tool calls require a bearer token on the request:
curl http://localhost:3000/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-H 'Authorization: Bearer your-token-here' \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"list_domains","arguments":{}}}'The HTTP entrypoint never uses DOMAINPILOT_API_TOKEN; each tool call uses only
the bearer token supplied with that request.
Related MCP server: Coolify MCP Server
Available Tools
Tool | Description |
| List all your domains with status, health grade, and monitoring state |
| Get detailed info about a specific domain (uptime, SSL, health, expiry) |
| Add a new domain to monitor |
| Get latest health check results including scores and grade |
| Trigger an on-demand health check for a domain |
| Get AI-powered analysis with findings and recommendations |
| Get uptime statistics for a domain (24h, 7d, or 30d) |
| List all DNS records for a domain |
| Add a DNS record (A, AAAA, CNAME, MX, TXT, NS) |
| Update an existing DNS record |
| Acknowledge detected DNS changes for a domain |
| Get SSL certificate status and details |
| List downtime incidents for a domain |
| Get portfolio overview (total domains, online count, alerts) |
| Enable or disable uptime monitoring for a domain |
Note: DNS records can be added and updated, but deletion is intentionally not exposed through this server. Removing a record is the highest-risk DNS operation and the hardest to undo, so it is left out by design. Delete records via the Domain Pilot web UI instead.
Environment Variables
Variable | Required | Default | Description |
| Stdio only | -- | Your Domain Pilot MCP API token |
| No |
| API base URL (override for development) |
| HTTP only |
| Port for the Streamable HTTP server |
| HTTP only |
| Bind address for the Streamable HTTP server |
Development
# Run in development mode (no build needed)
DOMAINPILOT_API_TOKEN=your-token npm run dev
# Build for production
npm run build
# Run the built server
DOMAINPILOT_API_TOKEN=your-token npm startTroubleshooting
"DOMAINPILOT_API_TOKEN is required"
Make sure the DOMAINPILOT_API_TOKEN environment variable is set in your MCP client configuration. Generate a token at your Domain Pilot settings page.
"Your Domain Pilot API token is invalid or expired"
Your token may have been revoked or expired. Generate a new one from your Domain Pilot settings page.
"Resource not found"
Double-check the domain name. It must match exactly as shown in your Domain Pilot account (e.g., example.com, not www.example.com or https://example.com).
Server not appearing in Claude Desktop
Make sure the path to
dist/index.jsis absolute (not relative)Restart Claude Desktop after editing the config
Check that
nodeis available in your PATH
Connection issues
If using a custom DOMAINPILOT_API_URL, verify the URL is correct and the server is reachable. The default URL points to the production Domain Pilot API.
License
MIT
Maintenance
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
- AlicenseAqualityFmaintenanceA Model Context Protocol server that allows AI agents to perform WHOIS lookups, enabling users to directly ask the AI about domain availability, ownership, registration details, and other domain information.422159MIT
- Alicense-qualityAmaintenanceA Model Context Protocol server that enables AI assistants to interact with Coolify instances through natural language, allowing management of servers, applications, databases, and deployments.10,421545MIT
- Alicense-qualityDmaintenanceA Model Context Protocol server that enables AI assistants to check domain name availability using WHOIS lookups.204ISC
- AlicenseAqualityDmaintenanceA Model Context Protocol (MCP) server for interacting with the DNSDumpster API, enabling AI assistants to perform detailed DNS reconnaissance through natural language requests.73MIT
Related MCP Connectors
Uptime, SSL, DNS and domain monitoring you can talk to from Claude or any MCP client.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/warunacds/domainpilot-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server