binance-mcp
v1.0.4
Published
This is a POC of MCP server implementation that integrates the Binance data vision API, providing crypto prices capabilities.
Maintainers
Readme
Crypto currency data MCP Server from Binance
This is a POC of MCP server implementation that integrates the Binance data vision API, providing crypto prices capabilities.
Tools
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)
Prompt examples
- Get bitcoin current price
- What is the ethereum bid price?
- What is the current price of bitcoin?
Configuration
Usage with Claude Desktop
Add this to your claude_desktop_config.json:
NPX
{
"mcpServers": {
"binance-mcp": {
"command": "npx",
"args": [
"-y",
"binance-mcp"
]
}
}
}This server can be used with any MCP client that supports the MCP protocol.
Usage with Genkit
...
import { mcpClient } from 'genkitx-mcp';
const helloMcpClient = mcpClient({
name: 'binance-mcp',
serverProcess: {
command: 'npx',
args: [
'-y',
'binance-mcp'
],
},
});
...Full example (coming soon)
Cline config
{
"mcpServers": {
"binance-mcp": {
"disabled": false,
"timeout": 60,
"command": "npx",
"args": [
"-y",
"binance-mcp"
],
"transportType": "stdio"
}
}
}