veriphone_credits
Pack: veriphone · Endpoint: https://gateway.pipeworx.io/veriphone/mcp
Check the remaining verification credits / quota for your Veriphone API key — usage counter, plan limit, and pay-as-you-go balance. Example: veriphone_credits({ _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Your Veriphone API key (free signup at https://veriphone.io/signup). |
Example call
Arguments
{
"_apiKey": "your-veriphone-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/veriphone/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"veriphone_credits","arguments":{"_apiKey":"your-veriphone-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('veriphone_credits', {
"_apiKey": "your-veriphone-api-key"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"veriphone": {
"url": "https://gateway.pipeworx.io/veriphone/mcp"
}
}
}
See Getting Started for client-specific install steps.