transactions
Pack: bitstamp · Endpoint: https://gateway.pipeworx.io/bitstamp/mcp
Recent transactions.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
currency_pair | string | yes | |
time | string | no |
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":"transactions","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
transactions | array | List of recent transactions |
Full JSON Schema
{
"type": "object",
"properties": {
"transactions": {
"type": "array",
"description": "List of recent transactions",
"items": {
"type": "object",
"properties": {
"date": {
"type": "string",
"description": "Transaction date"
},
"tid": {
"type": "string",
"description": "Transaction ID"
},
"price": {
"type": "string",
"description": "Transaction price"
},
"amount": {
"type": "string",
"description": "Transaction amount"
},
"type": {
"type": "string",
"description": "Buy or sell"
}
}
}
}
}
}
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.