BitOasis MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@BitOasis MCP ServerWhat's the current price of BTC-AED?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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"
}
}
}
}Related MCP server: MAX Exchange MCP Server
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 syncRun 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
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI assistants to interact with Bitget cryptocurrency exchange for spot and futures trading. Supports real-time market data, order management, account balances, leverage control, and position tracking with demo trading capabilities.175MIT
- FlicenseBqualityDmaintenanceEnables AI assistants to trade cryptocurrencies and manage accounts on MAX Exchange through natural language. Supports spot and margin trading, market data queries, order management, and wallet operations including deposits, withdrawals, and M-wallet lending.45
- AlicenseAqualityDmaintenanceEnables AI assistants to interact with the Bybit cryptocurrency exchange via the V5 API, supporting market data, trading, and account management with both local and remote OAuth-authenticated connections.281MIT
- AlicenseAqualityDmaintenanceEnables AI assistants to interact with the Bit2Me cryptocurrency ecosystem, including real-time market data, wallet management, trading, and products like Earn and Loans.48545MIT
Related MCP Connectors
Trade, monitor portfolios, and build Coinrule strategies by chat.
AI agent access to Asian crypto markets. Korean exchange routing and x402 paid APIs.
Connect AI agents to bank accounts, transactions, balances, and investments.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bit-oasis/bitoasis-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server