Prepare the server locally
Run this once before adding it to Claude Code.
git clone https://github.com/ber4444/typescript-mcp
cd typescript-mcpThen follow the repository README for any remaining dependency or build steps.
Add it to Claude Code
Paste the maintainer's config below, then edit any placeholder values.
{
"servers": {
"binance-ts-mcp": {
"command": "npx",
"args": [
"-y",
"/FULL_PATH_GOES_HERE/typescript_mcp"
]
}
}
}See the typescript-mcp README for full setup instructions.
Make your agent remember this setup
binance-mcp's config, env vars, and the gotchas you hit — recalled in every future Claude Code, Cursor, and Codex session.
npx conare@latestFree · one command · indexes the sessions already on disk. Set up in the browser instead →
What it does
- Real-time cryptocurrency price retrieval from Binance
- Logs MCP server activity to local file resources
- Built with TypeScript and the Model Context Protocol SDK
- Supports natural language queries for crypto market data
Tools 1
get_crypto_priceFetches the current price of a specified cryptocurrency symbol from the Binance API.Try it
Original README from ber4444/typescript-mcp
TypeScript MCP Project
This project implements a Model Context Protocol server using TypeScript.
Getting Started
- Build:
npm install
- Add to
.vscode/mcp.json:
{
"servers": {
"binance-ts-mcp": {
"command": "npx",
"args": [
"-y",
"/FULL_PATH_GOES_HERE/typescript_mcp"
]
}
},
"inputs": []
}
Type "what's the BTC price now" into Copilot, and you'll see it use this mcp to answer
Debug with
npx @modelcontextprotocol/inspector node /home/presence/AndroidStudioProjects/mcp-course/typescript_mcp/src/binance_mcp.tsOptionally, publish it to npmjs.com
npm loginnpm publish- results: https://www.npmjs.com/package/gaborb-binancemcp
- the mcp will still run locally when using npmjs, but it will be downloaded
- remotely running MCPs would mean going along the lines of https://github.com/cloudflare/ai/tree/main/demos/remote-mcp-auth0
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 functionalityzod: Runtime type checkingtypescript: Development dependency for TypeScript compilation@types/node: Type definitions for Node.js