parse_semver
Pack: semver · Endpoint: https://gateway.pipeworx.io/semver/mcp
Parse a semantic-version string into major/minor/patch/prerelease/build (keyless, offline). Accepts an optional leading “v”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
version | string | yes | e.g. “1.2.3-beta.1+build.5”. |
Example call
Arguments
{
"version": "1.2.3"
}
curl
curl -X POST https://gateway.pipeworx.io/semver/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"parse_semver","arguments":{"version":"1.2.3"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('parse_semver', {
"version": "1.2.3"
});
More examples
{
"version": "v2.0.0-alpha.1+build.123"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"semver": {
"url": "https://gateway.pipeworx.io/semver/mcp"
}
}
}
See Getting Started for client-specific install steps.