get_coin_price
Retrieve the current price of a cryptocurrency in a specified currency using the Multi-MCPs server. Input the coin ID and target currency to fetch real-time pricing data.
Instructions
Get current price for a coin in a given currency
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coin_id | Yes | ||
vs_currency | Yes |
Input Schema (JSON Schema)
{
"properties": {
"coin_id": {
"type": "string"
},
"vs_currency": {
"type": "string"
}
},
"required": [
"coin_id",
"vs_currency"
],
"type": "object"
}