BitOasis MCP Server
Enables AI assistants to interact with the BitOasis cryptocurrency exchange, including market data, account management, order placement, and deposit/withdrawal operations through natural language.
README
BitOasis MCP Server
An MCP (Model Context Protocol) server that exposes the BitOasis cryptocurrency exchange API as tools for AI assistants.
Quick Start
Prerequisites
- A verified BitOasis account with an API token (generate one at Settings > Security > Token Management)
Install via uvx (recommended)
Add to your MCP client config (Claude Desktop, VS Code, Cursor, etc.):
{
"mcpServers": {
"bitoasis": {
"command": "uvx",
"args": ["bitoasis-mcp"],
"env": {
"BITOASIS_API_KEY": "your-api-token-here"
}
}
}
}
That's it — restart your MCP client and you're ready to go.
Remote server (no install needed)
If your team hosts the BitOasis MCP server, just add the URL — nothing to install:
{
"mcpServers": {
"bitoasis": {
"url": "https://mcp.bitoasis.net/sse",
"headers": {
"Authorization": "Bearer your-api-token-here"
}
}
}
}
Install via Docker
{
"mcpServers": {
"bitoasis": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "BITOASIS_API_KEY", "bitoasis-mcp"],
"env": {
"BITOASIS_API_KEY": "your-api-token-here"
}
}
}
}
Available Tools
Market Data
- get_markets — List all tokens and trading pairs
- get_ticker — Current price for a pair (e.g.
BTC-AED) - get_order_book — Bids and asks for a pair
- get_trades — Recent public trade history
Account
- get_balances — Your balances across all currencies
- get_banks — Your registered bank accounts
Orders
- get_orders — List orders for a pair (filter by OPEN/DONE/CANCELED)
- get_order — Order details by ID
- place_order — Place a limit, market, stop, or stop_limit order
- cancel_order — Cancel an open order
Deposits
- get_coin_deposits / get_coin_deposit — Crypto deposit history/details
- new_coin_deposit_address — Generate a deposit address
- get_fiat_deposits / get_fiat_deposit — Fiat deposit history/details
Withdrawals
- get_coin_withdrawals / get_coin_withdrawal — Crypto withdrawal history/details
- new_coin_withdrawal — Withdraw crypto to an external address
- get_coin_withdrawal_fees — Withdrawal fees per currency
- get_fiat_withdrawals / get_fiat_withdrawal — Fiat withdrawal history/details
- new_fiat_withdrawal — Withdraw fiat to a registered bank
- cancel_fiat_withdrawal — Cancel a pending fiat withdrawal
Example Prompts
"What's the current price of BTC-AED?"
"Show my open orders for ETH-AED"
"Place a SOL-AED limit buy order: 2 SOL at 1000 AED"
"What are my balances?"
Development
git clone https://github.com/bit-oasis/bitoasis-mcp.git
cd bitoasis-mcp
uv sync
Run from source:
{
"mcpServers": {
"bitoasis": {
"command": "uv",
"args": ["run", "--directory", "/path/to/bitoasis-mcp", "bitoasis-mcp"],
"env": {
"BITOASIS_API_KEY": "your-api-token-here"
}
}
}
}
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.