parse_url
Pack: url · Endpoint: https://gateway.pipeworx.io/url/mcp
Parse a URL into its components (keyless, offline): protocol, host, hostname, port, path, query (as an object), fragment, origin, and any userinfo.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | A full URL, e.g. “https://[email protected]:8443/a/b?x=1&y=2#frag”. |
Example call
Arguments
{
"url": "https://[email protected]:8443/a/b?x=1&y=2#frag"
}
curl
curl -X POST https://gateway.pipeworx.io/url/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"parse_url","arguments":{"url":"https://[email protected]:8443/a/b?x=1&y=2#frag"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('parse_url', {
"url": "https://[email protected]:8443/a/b?x=1&y=2#frag"
});
More examples
{
"url": "https://api.example.com/search?q=test"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"url": {
"url": "https://gateway.pipeworx.io/url/mcp"
}
}
}
See Getting Started for client-specific install steps.