This repository provides a comprehensive implementation of the Bitpin cryptocurrency exchange API through an MCP (Model Context Protocol) server.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"bitpin-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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 executing various types of orders like limit orders, market orders, stop-limit orders, and OCO (One Cancels the Other) orders.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol server for building an investor agent
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
Remote MCP server to integrate and validate self-hosted PayRam deployments.
MCP Security Weekly
Get CVE alerts and security updates for Bitpin Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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 executing various types of orders like limit orders, market orders, stop-limit orders, and OCO (One Cancels the Other) orders.
Check out a live demo of the Bitpin MCP Server in action, showcasing LLM-powered crypto trading:
The MCP server provides the following tools:
BitpinClient NuGet packageInstall Dependencies
Ensure that your project references the required BitpinClient package and all necessary dependencies for MCP server tools.
Configure Bitpin API Settings
Set up your API Key and Secret for the Bitpin API in the BitpinClientSettings:
var settings = new BitpinClientSettings()
{
Key = "****", // Replace with your Bitpin API Key
Secret = "****", // Replace with your Bitpin API Secret
};
MCP Server Configuration
Add the MCP server configuration to your application settings:
{
"mcpServers": {
"BitpinExchange": {
"command": "dotnet",
"args": [
"run",
"--project",
"D:\\projects\\bitpin-mcp-server\\src\\MCPServer\\MCPServer.csproj",
"--no-build"
],
"env": {
"BITPIN_API_KEY": "****",
"BITPIN_API_SECRET": "****",
"BITPIN_API_URL": "https://api.bitpin.org/api/v1/"
}
}
}
}
Configure Services in Program.cs
Use the following configuration to add the BitpinClient service and set up the MCP server:
using BitpinClient;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
var builder = Host.CreateEmptyApplicationBuilder(settings: null);
var settings = new BitpinClientSettings()
{
Key = "****", // Replace with your API Key
Secret = "****", // Replace with your API Secret
};
builder.Services.AddBitpinCli