parse_user_agent
Pack: useragent · Endpoint: https://gateway.pipeworx.io/useragent/mcp
Parse a User-Agent string into browser, OS, device type (mobile/tablet/desktop/bot) and a bot flag (keyless, offline, heuristic).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
user_agent | string | yes | The User-Agent string. |
Example call
Arguments
{
"user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
}
curl
curl -X POST https://gateway.pipeworx.io/useragent/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"parse_user_agent","arguments":{"user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('parse_user_agent', {
"user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
});
More examples
{
"user_agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"useragent": {
"url": "https://gateway.pipeworx.io/useragent/mcp"
}
}
}
See Getting Started for client-specific install steps.