currency
Pack: brapi · Endpoint: https://gateway.pipeworx.io/brapi/mcp
brapi.dev — currency conversion rate for a pair (e.g. ‘USD-BRL’): current bid/ask rate and daily change. Covers major pairs against BRL and other currencies.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
currency | string | yes |
Example call
Arguments
{
"currency": "USD"
}
curl
curl -X POST https://gateway.pipeworx.io/brapi/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"currency","arguments":{"currency":"USD"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('currency', {
"currency": "USD"
});
More examples
{
"currency": "EUR"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Currency conversion data"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"brapi": {
"url": "https://gateway.pipeworx.io/brapi/mcp"
}
}
}
See Getting Started for client-specific install steps.