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
Arguments
{
"isbn": "978-0-306-40615-7"
}
curl
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":{"isbn":"978-0-306-40615-7"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('convert_isbn', {
"isbn": "978-0-306-40615-7"
});
More examples
{
"isbn": "0306406152"
}
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.