convert_isbn
Pack: isbn · Endpoint: https://gateway.pipeworx.io/isbn/mcp
Convert an ISBN between ISBN-10 and ISBN-13 (recomputing the check digit). ISBN-10 -> ISBN-13 prefixes “978”; ISBN-13 -> ISBN-10 works only for the 978 prefix.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
isbn | string | yes | The ISBN to convert. |
Example call
curl -X POST https://gateway.pipeworx.io/isbn/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"convert_isbn","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"isbn": {
"url": "https://gateway.pipeworx.io/isbn/mcp"
}
}
}
See Getting Started for client-specific install steps.