MCP Hub
Back to servers

Binance TypeScript MCP

Provides a tool to fetch real-time cryptocurrency prices from the Binance API and logs server activity to file resources. It allows users to query crypto symbols and monitor MCP interactions through natural language interfaces.

Updated
Feb 7, 2026

TypeScript MCP Project

This project implements a Model Context Protocol server using TypeScript.

Getting Started

  1. Build:
npm install
  1. Add to .vscode/mcp.json:
{
	"servers": {
		"binance-ts-mcp": {
			"command": "npx",
			"args": [
				"-y",
				"/FULL_PATH_GOES_HERE/typescript_mcp"
			]
		}
	},
	"inputs": []
}
  1. Type "what's the BTC price now" into Copilot, and you'll see it use this mcp to answer

  2. Debug with npx @modelcontextprotocol/inspector node /home/presence/AndroidStudioProjects/mcp-course/typescript_mcp/src/binance_mcp.ts

  3. Optionally, publish it to npmjs.com

Tools, resources

This project has a tool that connects to the Binance API to give the price of a given crypto symbol.

MCP resources provide easy access to files, database tables, API results, e.g. this project writes MCP activity log to a file resource.

Dependencies

  • @modelcontextprotocol/sdk: Core MCP functionality
  • zod: Runtime type checking
  • typescript: Development dependency for TypeScript compilation
  • @types/node: Type definitions for Node.js

Reviews

No reviews yet

Sign in to write a review