MCP Domain Checker Price

MCP Domain Checker Price

Provides domain registration pricing from Joker.com and generates affiliate purchase links. Supports both static pricing data for instant responses and optional real-time API pricing with smart caching.

Category
访问服务器

README

MCP Domain Checker Price

Model Context Protocol server for domain pricing and affiliate purchase links from Joker.com

This MCP server provides domain registration pricing via the official Joker.com DMAPI and generates affiliate purchase links with automatic browser integration.

License: MIT Version

Features

  • Two-Tier Pricing System - Static JSON (default, zero-config) + optional real-time API
  • 🚀 Zero Configuration - Works immediately with bundled pricing data
  • 💰 Comprehensive Pricing - Registration, renewal, and transfer prices
  • 💾 Smart Caching - 6-hour TTL cache reduces API load
  • 🔗 Affiliate Links - Optional affiliate tracking for purchase links
  • 🌐 Browser Integration - Works with mcp-opener for automatic Firefox opening
  • 🔒 Optional Real-Time Pricing - Use Joker.com DMAPI for current prices (requires credentials)
  • 📦 Lightweight - No browser automation, pure API integration

Quick Start

1. Installation

# Navigate to package directory
cd /var/home/viky/Code/packages/src/@mcp/mcp-domain-checker-price

# Run setup script
./setup.sh

2. Configuration (Optional)

The server works immediately with built-in pricing data. Configuration is only needed for:

  • Real-time pricing updates (requires Joker.com credentials)
  • Affiliate commission tracking
# Copy environment template (optional)
cp .env.example .env

# Edit .env with your credentials (optional)
nano .env

Optional - For Real-Time Pricing: Set Joker.com authentication:

Optional - For Affiliate Tracking: Set affiliate ID for commission tracking

3. Add to Claude Code

Add to .claude/settings.json or global MCP configuration:

{
  "mcpServers": {
    "domain-checker-price": {
      "command": "node",
      "args": ["/var/home/viky/Code/packages/src/@mcp/mcp-domain-checker-price/dist/index.js"]
    }
  }
}

Available Tools

1. get_version

Get server version and capabilities

Parameters: None

Example:

mcp__mcp-domain-checker-price__get_version()

2. get_domain_pricing

Fetch domain pricing from Joker.com (static data by default, real-time DMAPI optional)

Parameters:

  • domain (string, required) - Domain name to check (e.g., "example.com")
  • force_refresh (boolean, optional) - Bypass cache, default: false
  • use_api (boolean, optional) - Use real-time DMAPI instead of static data (requires credentials), default: false

Response:

{
  "domain": "example.com",
  "pricing": {
    "registration_1yr": 12.36,
    "renewal_1yr": 14.50,
    "transfer": 12.36,
    "currency": "EUR"
  },
  "special_offers": [
    {
      "description": "create discount until 12/31/2024",
      "discount_price": 10.00
    }
  ],
  "source_url": "https://dmapi.joker.com/request/query-price-list",
  "last_updated": "2025-12-11T14:30:00.000Z",
  "from_cache": false
}

Example:

// Static pricing (default, fast, no auth required)
mcp__mcp-domain-checker-price__get_domain_pricing({ domain: "myapp.com" })

// Real-time pricing (requires Joker.com credentials)
mcp__mcp-domain-checker-price__get_domain_pricing({
  domain: "myapp.com",
  use_api: true
})

// Force refresh from cache
mcp__mcp-domain-checker-price__get_domain_pricing({
  domain: "myapp.com",
  force_refresh: true
})

3. open_purchase_link

Generate purchase links with optional affiliate tracking

Parameters:

  • domain (string) - Single domain to purchase (mutually exclusive with domains)
  • domains (array) - Multiple domains to purchase (mutually exclusive with domain)
  • open_all (boolean, optional) - Open all URLs (true) or just first (false), default: false

Response (Single Domain):

{
  "message": "Purchase link generated",
  "link": {
    "registrar": "joker",
    "domain": "example.com",
    "url": "https://joker.com/domain/registration?domain=example.com&aff=YOUR_ID",
    "is_affiliate": true,
    "price_estimate": 12.36,
    "currency": "EUR"
  },
  "suggestion": "Use mcp__opener__open_browser to open this URL in Firefox"
}

Response (Multiple Domains):

{
  "message": "Purchase links generated for 3 domain(s)",
  "links": [...],
  "urls_to_open": ["https://joker.com/..."],
  "open_all": false,
  "total_estimate": {
    "total": 37.08,
    "currency": "EUR",
    "domains_with_pricing": 3,
    "domains_without_pricing": 0
  },
  "suggestion": "Use mcp__opener__open_browser to open 1 URL(s) in Firefox"
}

Examples:

// Single domain
mcp__mcp-domain-checker-price__open_purchase_link({ domain: "myapp.com" })

// Multiple domains (open first only)
mcp__mcp-domain-checker-price__open_purchase_link({
  domains: ["app.com", "app.io", "app.dev"]
})

// Multiple domains (open all in separate tabs)
mcp__mcp-domain-checker-price__open_purchase_link({
  domains: ["app.com", "app.io", "app.dev"],
  open_all: true
})

Integration with Opener MCP

Recommended Workflow:

// Step 1: Get pricing
const pricing = await mcp__mcp-domain-checker-price__get_domain_pricing({
  domain: "myapp.com"
});

// Step 2: Generate purchase link
const purchase = await mcp__mcp-domain-checker-price__open_purchase_link({
  domain: "myapp.com"
});

// Step 3: Open in Firefox
await mcp__opener__open_browser({
  url: purchase.link.url
});

Pricing System

Two-Tier Architecture

Static Pricing (Default):

  • ✅ Zero configuration required
  • ✅ Instant response (no API calls)
  • ✅ No authentication needed
  • ⚠️ Data may be slightly outdated (refresh with ./update-pricing.sh)
  • 📊 Covers 10+ common TLDs by default (com, net, org, io, app, dev, etc.)

Real-Time DMAPI (Optional):

  • ✅ Current prices directly from Joker.com
  • ✅ Automatically updated
  • ⚠️ Requires Joker.com credentials
  • ⚠️ Slower (API call per request)

Updating Static Pricing

# Option 1: Use the shell script (recommended)
./update-pricing.sh

# Option 2: Use pnpm script
pnpm fetch-pricing

This fetches current pricing from Joker.com DMAPI and updates data/pricing.json. The MCP server will automatically use the updated data on next restart.

Note: Requires Joker.com credentials configured in .env

Configuration Reference

Environment Variables

# ============================================================================
# Joker.com DMAPI Authentication (OPTIONAL - for real-time pricing)
# ============================================================================

# Option 1: API Key (Recommended)
# Create at: Joker.com → My Profile → Manage API access keys
MCP_JOKER_API_KEY="your-api-key-here"

# Option 2: Username & Password (Alternative)
MCP_JOKER_USERNAME="your-username"
MCP_JOKER_PASSWORD="your-password"

# ============================================================================
# Joker.com Affiliate Configuration (OPTIONAL - for commission tracking)
# ============================================================================

# Sign up: https://joker.com/affiliate
# Leave empty for non-affiliate links
MCP_AFFILIATE_JOKER_ID="your-affiliate-id"

# ============================================================================
# Pricing Cache Configuration
# ============================================================================

# Cache duration in hours (default: 6)
# Set to 0 to disable caching (not recommended)
MCP_DOMAIN_PRICING_CACHE_TTL_HOURS=6

API Key vs Username/Password

Method Security Features Recommended
API Key ✅ Higher (revocable) Can be read-only ✅ Yes
Username/Password ⚠️ Lower Full account access ⚠️ Only if needed

API Key Advantages:

  • Don't expose main credentials
  • Can be restricted to read-only mode
  • Can be revoked without changing password
  • Can create multiple keys for different uses

Architecture

mcp-domain-checker-price/
├── src/
│   ├── index.ts                 # MCP server entry point
│   ├── dmapi-client.ts          # Joker.com API authentication
│   ├── pricing-fetcher.ts       # Two-tier pricing system
│   ├── static-pricing.ts        # Static JSON loader (default)
│   ├── affiliate-links.ts       # Purchase URL generation
│   ├── price-cache.ts           # LRU cache with TTL
│   └── tools/
│       ├── get-version.ts       # Version info tool
│       ├── get-domain-pricing.ts    # Pricing tool
│       └── open-purchase-link.ts    # Purchase link tool
├── scripts/
│   └── fetch-pricing.ts         # DMAPI pricing fetcher
├── data/
│   └── pricing.json             # Static pricing database (optional)
├── dist/                        # Compiled JavaScript
├── package.json
├── tsconfig.json
├── .env.example                 # Configuration template
├── setup.sh                     # Setup script
└── update-pricing.sh            # Update static pricing data

How It Works

Pricing Fetch Flow (Default - Static)

  1. Check cache for domain pricing
  2. If cache miss → Load from data/pricing.json (or use bundled defaults)
  3. Extract pricing for domain's TLD
  4. Cache result for 6 hours
  5. Return pricing data

Pricing Fetch Flow (Real-Time - use_api=true)

  1. Check if DMAPI credentials configured
  2. If not configured → Fall back to static pricing
  3. Authenticate with Joker.com DMAPI (session valid 1 hour)
  4. Call query-price-list API
  5. Parse TSV response (tab-separated values)
  6. Extract pricing for domain's TLD
  7. Cache result for 6 hours
  8. Return pricing data

Affiliate Link Flow

  1. Load affiliate ID from environment
  2. Generate Joker.com registration URL
  3. Append &aff=YOUR_ID if affiliate configured
  4. Return URL with price estimate (if available)

Troubleshooting

❌ "No pricing data found for TLD .xyz"

Solution:

  • Using static pricing: TLD not in bundled data. Run ./update-pricing.sh to fetch all Joker.com TLDs
  • Using real-time pricing: TLD might not be available through Joker.com or not in your reseller account's price list

⚠️ "DMAPI requested but not configured, using static pricing"

Info: You requested use_api=true but credentials not set. Server automatically falls back to static pricing. To use real-time pricing, set MCP_JOKER_API_KEY or MCP_JOKER_USERNAME + MCP_JOKER_PASSWORD in .env

❌ "DMAPI login failed (HTTP 401)"

Solution: Check credentials - API key may be expired or invalid

⚠️ Cache always returns from_cache: false

Solution: Check MCP_DOMAIN_PRICING_CACHE_TTL_HOURS is > 0 in .env

⚠️ Affiliate links show is_affiliate: false

Solution: Set MCP_AFFILIATE_JOKER_ID in .env and restart server

Development

# Install dependencies
pnpm install

# Build TypeScript
pnpm build

# Watch mode
pnpm dev

# Update static pricing data (requires .env)
./update-pricing.sh

# Run tests (if available)
pnpm test

API Reference

Joker.com DMAPI Endpoints Used

  • /request/login - Authentication
  • /request/query-price-list - Complete TLD pricing list

Documentation: https://dmapi.joker.com/docs/

License

MIT © Victoria Lackey

Sources

Contributing

This package is part of the @3viky/mcp monorepo ecosystem.

For issues and contributions, please visit the GitHub repository.


Built with Model Context Protocol | Powered by Joker.com DMAPI

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选