Development
Extract domain names from URLs. Supports various extraction options including subdomains and path analysis.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/domain-extractor' \
-H 'Content-Type: application/json' \
-d '{"urlInput":"Enter URLs to extract domains from, one per line:\nhttps://www.example.com/path\nhttp://subdomain.example.org\nhttps://api.example.com/v1/users\nwww.test-site.net","extractionMode":"auto","includeSubdomains":false,"includeProtocol":false,"includePath":false,"showDetails":false,"addLineNumbers":false}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/domain-extractor| Name | Type | Required | Description |
|---|---|---|---|
| urlInput | textarea | Yes | — |
| extractionMode | select | Yes | Choose what part of the domain to extract |
| includeSubdomains | checkbox | No | Include subdomains in the extraction |
| includeProtocol | checkbox | No | Show HTTP/HTTPS protocol information |
| includePath | checkbox | No |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-domain-extractor": {
"name": "domain-extractor",
"description": "Extract domain names from URLs. Supports various extraction options including subdomains and path analysis.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=domain-extractor",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "domain-extractor",
"arguments": {
"urlInput": "Enter URLs to extract domains from, one per line:\nhttps://www.example.com/path\nhttp://subdomain.example.org\nhttps://api.example.com/v1/users\nwww.test-site.net",
"extractionMode": "auto",
"includeSubdomains": false,
"includeProtocol": false,
"includePath": false,
"showDetails": false,
"addLineNumbers": false
}
}
}| Show URL path information |
| showDetails | checkbox | No | Display detailed domain analysis |
| addLineNumbers | checkbox | No | Number each extraction result |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]