eur_usd

Pack: bitstamp · Endpoint: https://gateway.pipeworx.io/bitstamp/mcp

Bitstamp’s own EUR↔USD conversion rate — the buy/sell prices Bitstamp applies when converting fiat balances on the exchange, quoted with the exchange’s retail markup (the two legs can differ by several percent). Use when you need the rate a Bitstamp account actually transacts at. For the market FX rate — “EURUSD spot”, “current euro to dollar rate”, anything macro or reporting-grade — use ecb_exchange_rate, which publishes the official euro reference rate.

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/bitstamp/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"eur_usd","arguments":{}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('eur_usd', {});

Response shape

FieldTypeDescription
pairstring
sourcestring
buynumberEUR/USD buy rate
sellnumberEUR/USD sell rate
midnumber
spread_pctnumber
notestring
Full JSON Schema
{
  "type": "object",
  "properties": {
    "pair": {
      "type": "string"
    },
    "source": {
      "type": "string"
    },
    "buy": {
      "type": "number",
      "description": "EUR/USD buy rate"
    },
    "sell": {
      "type": "number",
      "description": "EUR/USD sell rate"
    },
    "mid": {
      "type": "number"
    },
    "spread_pct": {
      "type": "number"
    },
    "note": {
      "type": "string"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "bitstamp": {
      "url": "https://gateway.pipeworx.io/bitstamp/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 21, 2026