histo_minute
Pack: cryptocompare · Endpoint: https://gateway.pipeworx.io/cryptocompare/mcp
Minute OHLC.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
fsym | string | yes | |
tsym | string | yes | |
limit | number | no | |
aggregate | number | no | |
toTs | number | no | |
e | string | no |
Example call
curl -X POST https://gateway.pipeworx.io/cryptocompare/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"histo_minute","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
Response | string | Response status |
Type | string | Data type |
Aggregated | boolean | Whether data is aggregated |
Data | array | Array of OHLC candles |
TimeFrom | number | Start timestamp of data |
TimeTo | number | End timestamp of data |
Full JSON Schema
{
"type": "object",
"description": "Minute OHLC candlestick data",
"properties": {
"Response": {
"type": "string",
"description": "Response status"
},
"Type": {
"type": "string",
"description": "Data type"
},
"Aggregated": {
"type": "boolean",
"description": "Whether data is aggregated"
},
"Data": {
"type": "array",
"description": "Array of OHLC candles",
"items": {
"type": "object",
"properties": {
"time": {
"type": "number",
"description": "Unix timestamp"
},
"open": {
"type": "number",
"description": "Opening price"
},
"high": {
"type": "number",
"description": "Highest price"
},
"low": {
"type": "number",
"description": "Lowest price"
},
"close": {
"type": "number",
"description": "Closing price"
},
"volumefrom": {
"type": "number",
"description": "Volume in base coin"
},
"volumeto": {
"type": "number",
"description": "Volume in target coin"
}
}
}
},
"TimeFrom": {
"type": "number",
"description": "Start timestamp of data"
},
"TimeTo": {
"type": "number",
"description": "End timestamp of data"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"cryptocompare": {
"url": "https://gateway.pipeworx.io/cryptocompare/mcp"
}
}
}
See Getting Started for client-specific install steps.