Development
Batch parse URL query parameters with output of key frequency, value samples, and encoding anomaly detection
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/url-query-analyzer' \
-H 'Content-Type: application/json' \
-d '{"urls":"Enter URLs (one per line):\nhttps://example.com/page?utm_source=google&utm_medium=cpc&campaign=spring\nhttps://example.com/product?id=123&ref=affiliate","extractKeys":true,"extractValues":true,"detectEncoding":true,"aggregateStats":true}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/url-query-analyzer| Name | Type | Required | Description |
|---|---|---|---|
| urls | textarea | Yes | — |
| extractKeys | checkbox | No | — |
| extractValues | checkbox | No | — |
| detectEncoding | checkbox | No | — |
| aggregateStats | 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-url-query-analyzer": {
"name": "url-query-analyzer",
"description": "Batch parse URL query parameters with output of key frequency, value samples, and encoding anomaly detection",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=url-query-analyzer",
"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": "url-query-analyzer",
"arguments": {
"urls": "Enter URLs (one per line):\nhttps://example.com/page?utm_source=google&utm_medium=cpc&campaign=spring\nhttps://example.com/product?id=123&ref=affiliate",
"extractKeys": true,
"extractValues": true,
"detectEncoding": true,
"aggregateStats": true
}
}
}Questions or issues? Contact [email protected]
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}