Query domain expiration data from domain-monitor.io via AI assistants like Claude.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"domain-monitor": {
"env": {
"DOMAIN_MONITOR_EMAIL": "your@email.com",
"DOMAIN_MONITOR_PASSWORD": "yourpassword"
},
"args": [
"/absolute/path/to/domain-monitor-mcp/server.py"
],
"command": "python"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An unofficial MCP (Model Context Protocol) server for domain-monitor.io, enabling AI assistants like Claude to query your domain expiration data directly — no browser required.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops / data
Query and manage PostgreSQL databases directly from AI assistants
MCP server for using the GitLab API
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Manage Supabase projects — databases, auth, storage, and edge functions
MCP Security Weekly
Get CVE alerts and security updates for io.github.jasoncbraatz/domain-monitor-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An unofficial MCP (Model Context Protocol) server for domain-monitor.io, enabling AI assistants like Claude to query your domain expiration data directly — no browser required.
Note: This is a community project, not officially supported by domain-monitor.io. It uses the internal API discovered by inspecting browser network traffic. If you're the domain-monitor.io developer and would like to collaborate on an official MCP server or public API, please open an issue — we'd love to work with you!
Once installed, you can ask Claude things like:
No more digging through emails that landed in spam or SMS alerts that got filtered. Just ask.
| Tool | Description |
|---|---|
domain_monitor_get_expiring_soon | Quick check — domains expiring within your alert window |
domain_monitor_list_domains | Full paginated list with optional filter by days-until-expiry |
domain_monitor_check_domain | Look up a specific domain by name |
domain_monitor_get_account_summary | Account stats, subscription status, and active alerts |
domain_monitor_add_domain | Add a new domain to monitoring with configurable alert period and monitoring toggles |
git clone https://github.com/jasoncbraatz/domain-monitor-mcp.git
cd domain-monitor-mcp
pip install -r requirements.txt
Or with uv (faster):
uv pip install -r requirements.txt
Add the following to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"domain-monitor": {
"command": "python",
"args": ["/absolute/path/to/domain-monitor-mcp/server.py"],
"env": {
"DOMAIN_MONITOR_EMAIL": "your@email.com",
"DOMAIN_MONITOR_PASSWORD": "yourpassword"
}
}
}
}
Replace
/absolute/path/to/domain-monitor-mcp/server.pywith the actual path where you cloned this repo.
After saving the config, fully quit and relaunch Claude Desktop. The domain-monitor tools will appear in Claude's tool list.
This server authenticates using your domain-monitor.io email and password via Laravel Sanctum session auth — the same mechanism the website uses under the hood. Sessions are maintained in memory and automatically refreshed if they expire.
Your credentials are never stored to disk — they live only in the environment variables you configure above, and only in memory while the server is running.
domain-monitor.io is a Nuxt.js SPA backed by a Laravel API. The API lives at https://api.domain-monitor.io/. Authentication follows the standard Laravel Sanctum CSRF + session cookie flow:
GET https://api.domain-monitor.io/sanctum/csrf-cookie → sets XSRF-TOKEN + domain_monitor_session cookiesPOST https://api.domain-monitor.io/login with {email, password} + X-XSRF-TOKEN header → authenticateshttps://api.domain-monitor.io/api/* use the session cookies + refreshed XSRF tokenKey endpoints used:
GET /api/account — account info + user IDGET /api/account-dashboard — summary with expiring domains and alertsGET /api/account/{user_id}/domains — paginated domain list with expiry dataPOST /api/account/{user_id}/domains