binance-mcp

1.0.4 • Public • Published

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"
    }
  }
}

Package Sidebar

Install

npm i binance-mcp

Weekly Downloads

7

Version

1.0.4

License

ISC

Unpacked Size

3.38 kB

Total Files

3

Last publish

Collaborators

  • ferandreassi