crypto
Pack: brapi · Endpoint: https://gateway.pipeworx.io/brapi/mcp
Crypto quote.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
coin | string | yes | |
currency | string | no |
Example call
Arguments
{
"coin": "BTC",
"currency": "BRL"
}
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":"crypto","arguments":{"coin":"BTC","currency":"BRL"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('crypto', {
"coin": "BTC",
"currency": "BRL"
});
More examples
{
"coin": "ETH",
"currency": "USD"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Cryptocurrency quote 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.