
- Production-ready MCP server for Name Cheap API integration - Domain management (registration, renewal, availability checking) - DNS management (records, nameserver configuration) - SSL certificate management and monitoring - Account information and balance checking - Smart identifier resolution for improved UX - Comprehensive error handling with specific exception types - 80%+ test coverage with unit, integration, and MCP tests - CLI and MCP server interfaces - FastMCP 2.10.5+ implementation with full MCP spec compliance 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
545 B
Plaintext
24 lines
545 B
Plaintext
# Include important files in source distribution
|
|
include README.md
|
|
include CLAUDE.md
|
|
include LICENSE
|
|
include pyproject.toml
|
|
include ruff.toml
|
|
include .env.example
|
|
|
|
# Include source code
|
|
recursive-include src *.py
|
|
recursive-include tests *.py
|
|
|
|
# Include GitHub templates
|
|
recursive-include .github *.md *.yml *.yaml
|
|
|
|
# Exclude development files
|
|
exclude run_tests.py
|
|
exclude .pre-commit-config.yaml
|
|
global-exclude *.pyc
|
|
global-exclude __pycache__
|
|
global-exclude .pytest_cache
|
|
global-exclude .coverage
|
|
global-exclude coverage.xml
|
|
global-exclude .env |