compliance_catalog
Pack: iso · Endpoint: https://gateway.pipeworx.io/iso/mcp
Curated catalogue of the compliance-relevant ISO standards (ISMS/27000, privacy, AI/42000, quality, continuity, risk) → ISO number, family and summary. Static name→number resolver; pass a number to get_standard for the live record.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Optional filter on number/name/summary/family. |
Example call
Arguments
{
"query": "ISMS"
}
curl
curl -X POST https://gateway.pipeworx.io/iso/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"compliance_catalog","arguments":{"query":"ISMS"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('compliance_catalog', {
"query": "ISMS"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"iso": {
"url": "https://gateway.pipeworx.io/iso/mcp"
}
}
}
See Getting Started for client-specific install steps.