An MCP (Model Context Protocol) server that gives Claude access to ForeverTools APIs: structured data extraction, SSL inspection, WHOIS lookup, email validation, and webpage screenshots.
| Tool | Description |
|---|---|
schema_markup |
Generate Schema.org JSON-LD for any URL (Article, Product, FAQ, Recipe, Event, LocalBusiness, HowTo, BreadcrumbList) |
ssl_inspect |
Check SSL certificate validity, expiry, issuer, protocol, cipher, and security grade |
whois_lookup |
WHOIS registration data: registrar, dates, name servers, registrant country |
email_validate |
Validate email: syntax, MX record check, disposable domain detection |
screenshot |
Capture a webpage screenshot (returns image URL) |
Sign up for a free API key at kiprio.com/signup.
Free tier: 100 requests/day per tool, no credit card required.
Add to your claude_desktop_config.json:
{
"mcpServers": {
"forevertools": {
"command": "uvx",
"args": ["forevertools-mcp"],
"env": {
"FOREVERTOOLS_API_KEY": "your_api_key_here"
}
}
}
}Or install manually:
pip install forevertools-mcpThen configure with python -m forevertools_mcp as the command.
claude mcp add forevertools -e FOREVERTOOLS_API_KEY=your_key -- uvx forevertools-mcpOnce connected, Claude can use these tools automatically. Example prompts:
- "Check the SSL certificate for example.com"
- "Generate Article schema markup for https://myblog.com/post/1"
- "Look up the WHOIS info for competitor.com"
- "Validate whether orders@company.co.uk is a real email address"
- "Take a screenshot of https://myapp.com/dashboard"
git clone https://github.com/ForeverTools/forevertools-mcp
cd forevertools-mcp
pip install -e ".[dev]"
export FOREVERTOOLS_API_KEY=your_key
python server.pyFull API documentation: kiprio.com/docs
MIT