This repository provides a comprehensive implementation of the Bitpin cryptocurrency exchange API through an MCP (Model Context Protocol) server.
{
"mcpServers": {
"bitpin-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This repository provides a comprehensive implementation of the Bitpin cryptocurrency exchange API through an MCP (Model Context Protocol) server.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 287 days ago. 3 stars.
Will it work with my client?
Transport: stdio, sse. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
The full-stack TypeScript framework to build, test, and deploy production-ready MCP servers and AI-native apps.
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