eur_usd

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

Fetch the current Bitstamp EUR/USD conversion rate (bid and ask).

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
buystringEUR/USD buy rate
sellstringEUR/USD sell rate
Full JSON Schema
{
  "type": "object",
  "properties": {
    "buy": {
      "type": "string",
      "description": "EUR/USD buy rate"
    },
    "sell": {
      "type": "string",
      "description": "EUR/USD sell rate"
    }
  }
}

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 July 6, 2026