eur_usd
Pack: bitstamp · Endpoint: https://gateway.pipeworx.io/bitstamp/mcp
EUR/USD rate.
Example call
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":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
buy | string | EUR/USD buy rate |
sell | string | EUR/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.