This repository provides an MCP server implementation for the Bitpin cryptocurrency exchange. The server exposes several tools for interacting with
Connect Bitpin to Claude, Cursor or any other MCP client and it stops being a tab you switch to. This repository provides an MCP server implementation for the Bitpin cryptocurrency exchange. The server exposes several tools for interacting with the Bitpin API, such as retrieving wallet balances, market data, order details, and. The bitpin mcp server is what makes that connection.
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
GetWalletsListAsync — Retrieve a list of wallet balances for various cryptocurrenciesGetMarketsListAsync — Retrieve a list of all supported trading marketsGetTickersListAsync — Retrieve the current price list of Bitpin's marketsGetCurrenciesAsync — Retrieve a list of supported cryptocurrencies with details such as symbol, name, and tradability statusGetOrderbooksAsync — Retrieve the open orders in a specific trading marketGetMatchesAsync — Retrieve the latest executed trades for a specific marketCreateLimitOrderAsync — Place a limit order to buy or sell a cryptocurrency at a specified priceCreateMarketOrderAsync — Place a market order to instantly buy or sell at the best available priceCreateStopLimitOrderAsync — Place a stop-limit order to buy or sell once a specific stop price is reachedCreateOcoOrderAsync — Place an OCO (One Cancels the Other) order to manage both limit and stop-limit orders simultaneouslyGetOrdersAsync — Retrieve your list of ordersGetCompeletedOrdersAsync — Retrieve details of your completed orders (executed trades)Configuration is passed through the environment: BITPIN_API_KEY, BITPIN_API_SECRET, BITPIN_API_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
BitpinClient NuGet package - Access to the Bitpin API (API Key and Secret)Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.
Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Bitpin's toolset — GetWalletsListAsync, GetMarketsListAsync, GetTickersListAsync and 11 more — is a fair guide to whether it matches your workflow. It is maintained by Kamyab7; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| GetWalletsListAsync | Retrieve a list of wallet balances for various cryptocurrencies. |
| GetMarketsListAsync | Retrieve a list of all supported trading markets. |
| GetTickersListAsync | Retrieve the current price list of Bitpin's markets. |
| GetCurrenciesAsync | Retrieve a list of supported cryptocurrencies with details such as symbol, name, and tradability status. |
| GetOrderbooksAsync | Retrieve the open orders in a specific trading market. |
| GetMatchesAsync | Retrieve the latest executed trades for a specific market. |
| CreateLimitOrderAsync | Place a limit order to buy or sell a cryptocurrency at a specified price. |
| CreateMarketOrderAsync | Place a market order to instantly buy or sell at the best available price. |
| CreateStopLimitOrderAsync | Place a stop-limit order to buy or sell once a specific stop price is reached. |
| CreateOcoOrderAsync | Place an OCO (One Cancels the Other) order to manage both limit and stop-limit orders simultaneously. |
| GetOrdersAsync | Retrieve your list of orders. |
| GetCompeletedOrdersAsync | Retrieve details of your completed orders (executed trades). |
| GetOrderByIdAsync | Retrieve a specific order by its order ID. |
| CancelOrderByIdAsync | Cancel a specific order by its order ID. |
BitpinClient NuGet package - Access to the Bitpin API (API Key and Secret)| Variable | Description | Required |
|---|---|---|
| BITPIN_API_KEY | Credential the server authenticates with. | Yes |
| BITPIN_API_SECRET | Credential the server authenticates with. | Yes |
| BITPIN_API_URL | Endpoint or connection string the server talks to. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.