{"schema_version":"verify.report.v1","generated_at":"2026-06-14T01:55:05.235184+00:00","snapshot_id":"trustsnap_533982c7feead118","server":{"namespace":"DomainKits","name":"domainkits","title":"DomainKits MCP - the domain name intelligence","description":"# DomainKits MCP\n\nDomain MCP server for AI assistants. DomainKits MCP connects Claude, GPT, Gemini, and other AI assistants to domain data, turning them into domain agents that can search, analyze, and act on market data through natural conversation.\n\n## What is this?\n\nCheck availability with pricing. Search newly registered, expired, and deleted domains. Analyze WHOIS, DNS, and keyword value. Track registration trends and market movements. Pair with [DomainKits Skills](https://github.com/ABTdomain/domainkits-skills) to give your AI agent domain industry workflows for deeper analysis.\n\n## Features\n\n### Search Tools\n| Tool | Description |\n|------|-------------|\n| `nrds` | Monitor newly registered domains, spot viral trends |\n| `aged` | Find established domains with 5-20+ years history |\n| `expired` | Discover domains entering deletion cycle |\n| `deleted` | Search just-dropped domains available for standard registration |\n| `active` | Scan live websites and acquisition targets |\n| `ns_reverse` | Reverse lookup by nameserver |\n| `unregistered_ai` | Find unregistered short .ai domains (3-letter, CVCV, VCVC, CCVV patterns) |\n| `domain_changes` | Domain change detection, actively monitors 4M+ domains for transfers, expirations, new registrations, and NS changes |\n| `price` | Registration and renewal prices by TLD |\n\n### Query Tools\n| Tool | Description |\n|------|-------------|\n| `dns` | Query DNS records (A, MX, NS, TXT, etc.) |\n| `whois` | Get registration details and dates |\n| `safety` | Check domain reputation via Google Safe Browsing |\n| `tld_check` | Check keyword availability across all TLDs |\n| `available` | Instant availability check with pricing |\n| `market_price` | Check secondary market listings and price estimates |\n\n### Analysis Tools ⚠️\n| Tool | Description |\n|------|-------------|\n| `keyword_data` | Google Ads keyword data: volume, CPC, competition |\n\n> ⚠️ Analysis tools require a registered account. [Sign up free](https://domainkits.com/login)\n\n### Trend Tools\n| Tool | Description |\n|------|-------------|\n| `keywords_trends` | Hot, emerging, and prefix keywords in domain registrations |\n| `tld_trends` | Historical registration trends by TLD |\n| `tld_rank` | TLD rankings by registration volume |\n\n### Bulk Tools\n| Tool | Description |\n|------|-------------|\n| `bulk_tld` | Check keyword popularity across TLDs |\n| `bulk_available` | Batch availability check with pricing (up to 10 per request) |\n\n### Workflow Guides\n| Tool | Description |\n|------|-------------|\n| `analyze` | Comprehensive domain analysis (WHOIS, DNS, safety, TLD distribution) |\n| `brand_match` | Brand conflict detection with trademark database links |\n| `plan_b` | Find alternatives when target domain is taken |\n| `domain_generator` | Generate creative domain ideas with availability check |\n| `expired_analysis` | Due diligence for expiring/expired domains |\n| `trend_hunter` | Spot trending keywords and find related opportunities |\n| `keyword_intel` | Deep keyword intelligence for domain investment |\n| `market_beat` | Domain market news briefing |\n| `name_advisor` | Professional domain naming consultation |\n| `valuation_cma` | Comparative Market Analysis valuation |\n\n### Personal Tools (Require Memory)\n| Tool | Action | Description |\n|------|--------|-------------|\n| `preferences` | `get` | Check memory status and retrieve saved preferences |\n| `preferences` | `set` | Save preferences (TLDs, budget, style, industry) |\n| `preferences` | `delete` | Delete all stored data (GDPR Article 17) |\n| `monitor` | `get` | Retrieve and auto-check all monitored domains |\n| `monitor` | `set` | Create domain monitoring task (WHOIS/DNS/page changes) |\n| `monitor` | `update` | Save web_fetch page results for a monitor |\n| `monitor` | `delete` | Remove a monitoring task |\n| `strategy` | `get` | Retrieve strategies with run status and available presets |\n| `strategy` | `set` | Create automated opportunity discovery strategy |\n| `strategy` | `update` | Save strategy execution results |\n| `strategy` | `delete` | Remove a strategy |\n| `usage` | — | Check current usage and remaining quota |\n\n---\n\n## Quick Start\n\n### Claude Code\n\n```bash\nclaude mcp add domainkits https://api.domainkits.com/v1/mcp\n```\n\nWith API key (higher limits):\n\n```bash\nclaude mcp add domainkits https://api.domainkits.com/v1/mcp --header \"X-API-Key: YOUR_KEY\"\n```\n\n### Claude.ai\n\nConnect DomainKits via **Settings → Connectors**. No manual configuration needed.\n\n### Claude Desktop\n\nEdit your config file:\n- **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`\n- **Windows**: `%APPDATA%\\Claude\\claude_desktop_config.json`\n\n**macOS / Linux:**\n```json\n{\n  \"mcpServers\": {\n    \"domainkits\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"mcp-remote\",\n        \"https://api.domainkits.com/v1/mcp\",\n        \"--transport\",\n        \"http-first\"\n      ]\n    }\n  }\n}\n```\n\n**Windows:**\n```json\n{\n  \"mcpServers\": {\n    \"domainkits\": {\n      \"command\": \"cmd\",\n      \"args\": [\n        \"/c\",\n        \"npx\",\n        \"mcp-remote\",\n        \"https://api.domainkits.com/v1/mcp\",\n        \"--transport\",\n        \"http-first\"\n      ]\n    }\n  }\n}\n```\n\n**With API key (higher limits):**\n\nmacOS / Linux:\n```json\n{\n  \"mcpServers\": {\n    \"domainkits\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"mcp-remote\",\n        \"https://api.domainkits.com/v1/mcp\",\n        \"--header\",\n        \"X-API-Key: your-api-key-here\",\n        \"--transport\",\n        \"http-first\"\n      ]\n    }\n  }\n}\n```\n\nWindows:\n```json\n{\n  \"mcpServers\": {\n    \"domainkits\": {\n      \"command\": \"cmd\",\n      \"args\": [\n        \"/c\",\n        \"npx\",\n        \"mcp-remote\",\n        \"https://api.domainkits.com/v1/mcp\",\n        \"--header\",\n        \"X-API-Key: your-api-key-here\",\n        \"--transport\",\n        \"http-first\"\n      ]\n    }\n  }\n}\n```\n\n### Gemini CLI\n\nEdit `~/.gemini/settings.json`:\n```json\n{\n  \"mcpServers\": {\n    \"domainkits\": {\n      \"url\": \"https://api.domainkits.com/v1/mcp\"\n    }\n  }\n}\n```\n\nWith API key:\n```json\n{\n  \"mcpServers\": {\n    \"domainkits\": {\n      \"url\": \"https://api.domainkits.com/v1/mcp\",\n      \"headers\": {\n        \"X-API-Key\": \"your-api-key-here\"\n      }\n    }\n  }\n}\n```\n\n### Cursor\n\nEdit `~/.cursor/mcp.json`:\n```json\n{\n  \"mcpServers\": {\n    \"domainkits\": {\n      \"url\": \"https://api.domainkits.com/v1/mcp\"\n    }\n  }\n}\n```\n\n### Other MCP Clients\n\nEndpoint: `https://api.domainkits.com/v1/mcp`\n\nOptional header: `X-API-Key: your-api-key-here`\n\n---\n\n## Access Tiers\n\n| Tier | Daily Limits | Rate/Min | Monitors | Strategies | SEO Tools |\n|------|-------------|----------|----------|------------|-----------|\n| **Guest** | ~5-20/day | 1-4 | ❌ | ❌ | ❌ |\n| **Member** (free) | 10-120/day | 2-10 | 5 | 1 | ✅ |\n| **AI Access** ($13.99/mo) | 100-500/day | 5-20 | 20 | 3 | ✅ |\n| **Premium** ($29.99/mo) | 200-1100/day | 10-50 | 50 | 6 | ✅ |\n| **Platinum** | Unlimited | Unlimited | Unlimited | Unlimited | ✅ |\n\nLimits vary by tool. AI Access is included with Premium.\n\nRegister a free account and get your API key at [domainkits.com](https://domainkits.com/register) · [View pricing](https://domainkits.com/pricing)\n\n---\n\n## Examples\n\n**Search & Discovery**\n- \"Find available 3-letter .ai domains\"\n- \"What domains with 'crypto' are expiring today?\"\n- \"Show me trending keywords in domain registrations\"\n- \"What short domains changed NS in the last 1 hour?\"\n\n**Analysis**\n- \"Analyze the domain domainkits.com\"\n- \"Check brand conflict risk for niceflow.com\"\n\n**Generation**\n- \"Find me a short .com domain for an AI startup\"\n- \"Generate domain ideas for a fintech company\"\n\n**Monitoring** (requires memory)\n- \"Monitor domainkits.com for any changes\"\n- \"Set up a strategy to find dropping AI domains daily\"\n\n---\n\n## Memory & Privacy\n\nDomainKits supports optional memory to remember your preferences:\n- Preferred TLDs\n- Budget range\n- Naming style\n- Industry\n\n**GDPR Compliant:**\n- Memory is OFF by default\n- Requires explicit user consent to enable\n- Users can delete all data anytime via `delete_preferences`\n\n---\n\n## Links\n\n- Website: [domainkits.com/mcp](https://domainkits.com/mcp)\n- API Endpoint: `https://api.domainkits.com/v1/mcp`\n- Skills: [github.com/ABTdomain/domainkits-skills](https://github.com/ABTdomain/domainkits-skills)\n- Developed by: [abtdomain.com](https://abtdomain.com)\n- Support: info@domainkits.com\n\n\n## License\n\nProprietary. The MCP interface specification is public, but the underlying domain data and gateway services are proprietary.\n\nFor commercial use and API access, visit [domainkits.com](https://domainkits.com).","homepage_url":"https://domainkits.com/","docs_url":null,"icon_url":"https://api.smithery.ai/servers/DomainKits/domainkits/icon","support_url":null,"remote_url":null,"server_card_url":null,"latest_version":null,"current_status":"failing","current_score":45.62,"transport_type":null,"has_oauth":false,"has_dcr":false,"has_prompts":false,"tool_count":0,"current_validation_schema_version":"16d1d270090d6c8f","last_validated_at":"2026-06-13T21:09:15.216888+00:00","registry_source":"smithery_registry","registry_identifier":"smithery_registry:ba15ad48-2992-47e8-aa15-1adb242181a1","canonical_identifier":null,"current_score_components":{"auth_operability_score":0.0,"error_contract_score":0.0,"rate_limit_semantics_score":2.0,"schema_completeness_score":0.0,"backward_compatibility_score":4.0,"slo_health_score":3.0,"security_hygiene_score":1.5,"task_success_score":1.67,"trust_confidence_score":2.0,"abuse_noise_ratio_score":3.0,"prompt_contract_score":2.0,"resource_contract_score":2.0,"discovery_metadata_score":3.0,"registry_consistency_score":3.0,"installability_score":2.0,"session_semantics_score":0.0,"tool_surface_design_score":0.0,"result_shape_stability_score":0.0,"oauth_interop_score":0.0,"recovery_semantics_score":0.0,"maintenance_signal_score":3.75,"adoption_signal_score":2.0,"freshness_confidence_score":3.0,"transport_fidelity_score":0.0,"spec_recency_score":2.0,"session_resume_score":0.0,"step_up_auth_score":3.0,"transport_compliance_score":1.0,"utility_coverage_score":2.0,"advanced_capability_coverage_score":2.0,"connector_publishability_score":0.0,"tool_snapshot_churn_score":0.0,"connector_replay_score":3.0,"request_association_score":3.0,"interactive_flow_safety_score":3.0,"action_safety_score":3.0,"official_registry_presence_score":3.0,"provenance_divergence_score":4.0,"safety_transparency_score":4.0,"tool_capability_clarity_score":0.0,"destructive_operation_safety_score":3.0,"egress_ssrf_resilience_score":3.0,"execution_sandbox_safety_score":4.0,"data_exfiltration_resilience_score":3.0,"least_privilege_scope_score":2.0,"secret_handling_hygiene_score":3.0,"dependency_supply_chain_signal_score":0.5,"input_sanitization_safety_score":0.0,"tool_namespace_clarity_score":0.0},"capability_taxonomy":[],"machine_summary":{},"taxonomy_tags":[],"score_decomposition":[],"validation_diff":null,"tool_snapshot_diff":null,"connector_replay":{},"request_association":{},"production_readiness":{"code":"evaluation_only","label":"Evaluation only","reason":"Fast report evidence is served while Verify protects web capacity."},"recommended_for":[],"history_summary":{},"validation_timeline":[],"evidence_confidence":{"score":50,"label":"warming","reason":"Full validation history and raw evidence will be rebuilt by the regular cache refresh path."},"incident_feed":[],"remediations":[],"client_remediation_modes":[],"client_profiles":[],"client_readiness_verdicts":[],"publishability_policy_profiles":[],"compatibility_fixtures":[],"install_snippets":{},"aliases":[],"raw_evidence":{},"active_alerts":[],"maintainer_analytics":{},"public_server_reputation":{},"maintainer_response_quality":{},"maintainer_annotations":[],"maintainer_rebuttals":[],"security_posture_summary":{},"tool_security_inventory":[],"transport_compliance":{},"utility_coverage":{},"write_action_governance":{},"provenance_divergence":{},"alias_consolidation":{},"alert_routing":{},"authenticated_validation":{},"hosted_runtime":{},"action_controls_diff":null,"benchmark_tasks":[],"latest_capability_counts":{},"point_loss_breakdown":[],"verdict_traces":{},"current_snapshot":{"schema_version":"verify.trust_snapshot.v1","snapshot_id":"trustsnap_533982c7feead118","generated_at":"2026-06-14T01:55:05.235149+00:00","source":"current_snapshot","server":"DomainKits/domainkits","last_validated_at":"2026-06-13T21:09:15.216888+00:00","validation_age_hours":4.76,"freshness":{"schema_version":"verify.freshness_profile.v1","last_validated_at":"2026-06-13T21:09:15.216888+00:00","age_hours":4.76,"bucket":"verified_last_24h","label":"Verified in last 24h","badges":["verified_last_24h"],"freshness_sla_hours":168.0,"freshness_sla_status":"met","stale_score_suppressed":false,"display_score":45.62,"raw_score":45.62,"confidence_score":50.0,"confidence_weighted_score":22.8,"tier_status":[{"tier":"community","label":"Community","freshness_sla_hours":720,"met":true,"priority_revalidation":false},{"tier":"pro","label":"Pro","freshness_sla_hours":168,"met":true,"priority_revalidation":true},{"tier":"enterprise","label":"Enterprise","freshness_sla_hours":24,"met":true,"priority_revalidation":true}]},"current_status":"failing","current_score":45.62,"display_score":45.62,"stale_score_suppressed":false,"production_trust_decision":{"schema_version":"verify.executive_verdict.v1","decision":"Block for production","why":"failing live status + score below evaluation threshold","next_action":"revalidate, add safeguards, export policy","reason_count":2},"production_readiness_class":{"code":null,"label":null,"reason":null},"evidence_confidence":{"score":null,"label":null,"validation_age_hours":null,"live_check_count":null},"active_alerts":[]},"trust_snapshot":{"schema_version":"verify.trust_snapshot.v1","snapshot_id":"trustsnap_533982c7feead118","generated_at":"2026-06-14T01:55:05.235149+00:00","source":"current_snapshot","server":"DomainKits/domainkits","last_validated_at":"2026-06-13T21:09:15.216888+00:00","validation_age_hours":4.76,"freshness":{"schema_version":"verify.freshness_profile.v1","last_validated_at":"2026-06-13T21:09:15.216888+00:00","age_hours":4.76,"bucket":"verified_last_24h","label":"Verified in last 24h","badges":["verified_last_24h"],"freshness_sla_hours":168.0,"freshness_sla_status":"met","stale_score_suppressed":false,"display_score":45.62,"raw_score":45.62,"confidence_score":50.0,"confidence_weighted_score":22.8,"tier_status":[{"tier":"community","label":"Community","freshness_sla_hours":720,"met":true,"priority_revalidation":false},{"tier":"pro","label":"Pro","freshness_sla_hours":168,"met":true,"priority_revalidation":true},{"tier":"enterprise","label":"Enterprise","freshness_sla_hours":24,"met":true,"priority_revalidation":true}]},"current_status":"failing","current_score":45.62,"display_score":45.62,"stale_score_suppressed":false,"production_trust_decision":{"schema_version":"verify.executive_verdict.v1","decision":"Block for production","why":"failing live status + score below evaluation threshold","next_action":"revalidate, add safeguards, export policy","reason_count":2},"production_readiness_class":{"code":null,"label":null,"reason":null},"evidence_confidence":{"score":null,"label":null,"validation_age_hours":null,"live_check_count":null},"active_alerts":[]},"agent_commerce":{},"latest_claim":null,"maintainer_profile_slug":null,"watch_summary":{}},"latest_validation":null,"current_snapshot":{"schema_version":"verify.trust_snapshot.v1","snapshot_id":"trustsnap_533982c7feead118","generated_at":"2026-06-14T01:55:05.235149+00:00","source":"current_snapshot","server":"DomainKits/domainkits","last_validated_at":"2026-06-13T21:09:15.216888+00:00","validation_age_hours":4.76,"freshness":{"schema_version":"verify.freshness_profile.v1","last_validated_at":"2026-06-13T21:09:15.216888+00:00","age_hours":4.76,"bucket":"verified_last_24h","label":"Verified in last 24h","badges":["verified_last_24h"],"freshness_sla_hours":168.0,"freshness_sla_status":"met","stale_score_suppressed":false,"display_score":45.62,"raw_score":45.62,"confidence_score":50.0,"confidence_weighted_score":22.8,"tier_status":[{"tier":"community","label":"Community","freshness_sla_hours":720,"met":true,"priority_revalidation":false},{"tier":"pro","label":"Pro","freshness_sla_hours":168,"met":true,"priority_revalidation":true},{"tier":"enterprise","label":"Enterprise","freshness_sla_hours":24,"met":true,"priority_revalidation":true}]},"current_status":"failing","current_score":45.62,"display_score":45.62,"stale_score_suppressed":false,"production_trust_decision":{"schema_version":"verify.executive_verdict.v1","decision":"Block for production","why":"failing live status + score below evaluation threshold","next_action":"revalidate, add safeguards, export policy","reason_count":2},"production_readiness_class":{"code":null,"label":null,"reason":null},"evidence_confidence":{"score":null,"label":null,"validation_age_hours":null,"live_check_count":null},"active_alerts":[]},"trust_snapshot":{"schema_version":"verify.trust_snapshot.v1","snapshot_id":"trustsnap_533982c7feead118","generated_at":"2026-06-14T01:55:05.235149+00:00","source":"current_snapshot","server":"DomainKits/domainkits","last_validated_at":"2026-06-13T21:09:15.216888+00:00","validation_age_hours":4.76,"freshness":{"schema_version":"verify.freshness_profile.v1","last_validated_at":"2026-06-13T21:09:15.216888+00:00","age_hours":4.76,"bucket":"verified_last_24h","label":"Verified in last 24h","badges":["verified_last_24h"],"freshness_sla_hours":168.0,"freshness_sla_status":"met","stale_score_suppressed":false,"display_score":45.62,"raw_score":45.62,"confidence_score":50.0,"confidence_weighted_score":22.8,"tier_status":[{"tier":"community","label":"Community","freshness_sla_hours":720,"met":true,"priority_revalidation":false},{"tier":"pro","label":"Pro","freshness_sla_hours":168,"met":true,"priority_revalidation":true},{"tier":"enterprise","label":"Enterprise","freshness_sla_hours":24,"met":true,"priority_revalidation":true}]},"current_status":"failing","current_score":45.62,"display_score":45.62,"stale_score_suppressed":false,"production_trust_decision":{"schema_version":"verify.executive_verdict.v1","decision":"Block for production","why":"failing live status + score below evaluation threshold","next_action":"revalidate, add safeguards, export policy","reason_count":2},"production_readiness_class":{"code":null,"label":null,"reason":null},"evidence_confidence":{"score":null,"label":null,"validation_age_hours":null,"live_check_count":null},"active_alerts":[]},"snapshot_invariant":{"schema_version":"verify.snapshot_invariant.v1","server":"DomainKits/domainkits","ok":true,"surface_snapshot_ids":{"page":"trustsnap_533982c7feead118","badge":null,"report":"trustsnap_533982c7feead118","policy":null},"checked_at":"2026-06-14T01:55:05.235310+00:00"},"history":{},"production_readiness":{"code":"evaluation_only","label":"Evaluation only","reason":"Fast report evidence is served while Verify protects web capacity."},"agent_commerce_readiness":{},"evidence_confidence":{"score":50,"label":"warming","reason":"Full validation history and raw evidence will be rebuilt by the regular cache refresh path."},"recommended_for":[],"active_alerts":[],"remediations":[],"cache_note":"Fast fallback response; full report evidence is deferred to protect web capacity.","publisher_claim":{"verified":false,"status":"unclaimed","claim_url":"https://verify.sentinelsignal.io/claim?server=DomainKits%2Fdomainkits&source=report_json","reason_code":"claim_to_publish_metadata","reason":"Claim this profile to verify publisher identity, add evidence, and manage trust metadata.","score_neutral":true},"observed_attention":{"schema":"verify.observed_attention.v1","window_days":30,"level":"none","label":"No observed attention","summary":"No recent machine-readable trust or discovery activity observed for this server.","segments":{"useful_ai_user":{"level":"none","observed":false,"description":"AI-assisted user sessions such as ChatGPT/User or Claude/User."},"machine_trust_evaluator":{"level":"none","observed":false,"description":"Synthetic sessions inspecting multiple trust surfaces such as report, policy, ledger, badge, trust-summary, or compare."},"possible_agent_or_script":{"level":"none","observed":false,"description":"Structured direct sessions with rapid profile, compare, report, policy, badge, or trust-surface fan-out."},"isolated_machine_surface":{"level":"none","observed":false,"description":"Aged-out direct synthetic singleton sessions that touched a machine-readable trust surface without becoming a broader evaluator."},"ai_crawler":{"level":"none","observed":false,"description":"Known AI crawler activity such as ClaudeBot, GPTBot, or similar crawlers."},"search_crawler":{"level":"none","observed":false,"description":"Search and SEO crawler activity."},"browser_like_automation":{"level":"none","observed":false,"description":"Browser-like synthetic sessions with rapid structured endpoint activity."},"confirmed_human":{"level":"none","observed":false,"description":"Confirmed browser-session human activity."}},"surfaces_observed":{"server_profile":false,"compare":false,"compare_json":false,"compare_api":false,"report_json":false,"policy":false,"ledger":false,"badge_metadata":false,"badge_svg":false,"trust_summary":false,"mcp_tool":false},"claim_prompt":{"recommended":false,"reason":"No claim prompt is recommended from observed attention in the current window."},"notes":["Observed attention is based on segmented first-party telemetry.","Crawler and evaluator activity is not treated as confirmed human demand.","Public levels are bucketed to avoid exposing raw traffic counts."]},"owner_activation":{"claim_recommended":false,"reason":"no_observed_attention"},"related_machine_surfaces":{"compare_index":"/compare.json","compare_api":"/v1/compare?server=DomainKits%2Fdomainkits","trust_summary":"/v1/servers/DomainKits/domainkits/trust-summary","ledger":"/v1/servers/DomainKits/domainkits/ledger","policy":"/v1/servers/DomainKits/domainkits/policy","report":"/v1/servers/DomainKits/domainkits/report"},"intelligence_api":{"available":true,"signup_url":"https://verify.sentinelsignal.io/verify-intelligence-api","use_case":"Programmatic MCP server trust, comparison, policy, and evidence enrichment."}}