CryptoExchanges.Net
Health Warn
- License — License: Apache-2.0
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Low visibility — Only 5 GitHub stars
Code Pass
- Code scan — Scanned 4 files during light audit, no dangerous patterns found
Permissions Pass
- Permissions — No dangerous permissions requested
No AI report is available for this listing yet.
A unified .NET 10 SDK for cryptocurrency exchanges — one typed interface across Binance, Bybit, OKX & Bitget, with a read-only MCP server for AI agents.
CryptoExchanges.Net
A unified .NET SDK for cryptocurrency exchanges — one typed interface across every exchange, with a read-only MCP server for AI agents.
Supported Exchanges
| Exchange | Status | Package |
|---|---|---|
| ✅ Supported | CryptoExchanges.Net.Binance |
|
| ✅ Supported | CryptoExchanges.Net.Bybit |
|
| ✅ Supported | CryptoExchanges.Net.Okx |
|
| ✅ Supported | CryptoExchanges.Net.Bitget |
|
| 🕓 Coming soon | — | |
| 🕓 Coming soon | — | |
| 🕓 Coming soon | — |
REST, spot market data and account — read and write.
60-Second Quick Start
Library
dotnet add package CryptoExchanges.Net.Binance
await using var exchange = BinanceExchangeClient.Create(new BinanceOptions
{
ApiKey = "your-api-key",
SecretKey = "your-secret-key",
});
var price = await exchange.MarketData.GetPriceAsync(new Symbol(Asset.Btc, Asset.Usdt));
Console.WriteLine($"BTC/USDT: ${price}");
MCP Server (AI agents)
dotnet tool install -g CryptoExchanges.Net.Mcp
claude mcp add crypto -- crypto-mcp
Your MCP-capable agent can now query live prices, order books, candles, and account balances across all four exchanges.
MCP Server
CryptoExchanges.Net.Mcp is a read-only Model Context Protocol stdio server.
It exposes 12 tools — six market-data tools (no credentials required) and six account tools (read-scoped API keys).
All four supported exchanges share the same tool vocabulary; no agent-side changes needed when switching exchanges.
- MCP server reference — tools, environment variables, error handling
- MCP client setup guides — Claude Desktop, Claude Code, Cursor, Windsurf, and more
Documentation
| Doc | Description |
|---|---|
| Getting started | Install, credentials, first call |
| Library usage | Full API reference with examples |
| Architecture | Project structure, layers, design principles |
| Exchanges | Per-exchange notes, credentials, supported operations |
| MCP server | MCP tool reference, env vars, error categories |
| MCP client setup | Per-client config (Claude, Cursor, Windsurf, VS Code…) |
Building
dotnet build
dotnet test
Requires .NET 10.0 SDK.
License
Apache-2.0 — see LICENSE.
Built by Morpheums.
Reviews (0)
Sign in to leave a review.
Leave a reviewNo results found