This is a POC of MCP server implementation that integrates the Binance data vision API, providing crypto prices capabilities.
-
crypto-price
Execute a request to get price information in USDT about a specific crypto currency in the last 24 hours.
Inputs:
-
currency
(string): Crypto currency symbol (e.g., BTC, ETH) or name (e.g., Bitcoin, Ethereum)
-
- Get bitcoin current price
- What is the ethereum bid price?
- What is the current price of bitcoin?
Add this to your claude_desktop_config.json
:
{
"mcpServers": {
"binance-mcp": {
"command": "npx",
"args": [
"-y",
"binance-mcp"
]
}
}
}
This server can be used with any MCP client that supports the MCP protocol.
...
import { mcpClient } from 'genkitx-mcp';
const helloMcpClient = mcpClient({
name: 'binance-mcp',
serverProcess: {
command: 'npx',
args: [
'-y',
'binance-mcp'
],
},
});
...
Full example (coming soon)
{
"mcpServers": {
"binance-mcp": {
"disabled": false,
"timeout": 60,
"command": "npx",
"args": [
"-y",
"binance-mcp"
],
"transportType": "stdio"
}
}
}