Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@codespar/mcp-bitso

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codespar/mcp-bitso - npm Package Compare versions

Comparing version
0.2.0
to
0.2.1
+2
-2
dist/index.js

@@ -62,3 +62,3 @@ #!/usr/bin/env node

}
const server = new Server({ name: "mcp-bitso", version: "0.2.0" }, { capabilities: { tools: {} } });
const server = new Server({ name: "mcp-bitso", version: "0.2.1" }, { capabilities: { tools: {} } });
server.setRequestHandler(ListToolsRequestSchema, async () => ({

@@ -434,3 +434,3 @@ tools: [

transports.delete(t.sessionId); };
const s = new Server({ name: "mcp-bitso", version: "0.2.0" }, { capabilities: { tools: {} } });
const s = new Server({ name: "mcp-bitso", version: "0.2.1" }, { capabilities: { tools: {} } });
server._requestHandlers.forEach((v, k) => s._requestHandlers.set(k, v));

@@ -437,0 +437,0 @@ server._notificationHandlers?.forEach((v, k) => s._notificationHandlers.set(k, v));

{
"name": "@codespar/mcp-bitso",
"version": "0.2.0",
"description": "MCP server for Bitso — Latin American crypto exchange, trading, funding, withdrawals",
"version": "0.2.1",
"description": "MCP server for Bitso \u2014 Latin American crypto exchange, trading, funding, withdrawals",
"type": "module",

@@ -6,0 +6,0 @@ "main": "./dist/index.js",

@@ -54,6 +54,6 @@ # @codespar/mcp-bitso

## Tools
## Tools (20)
| Tool | Description |
|------|-------------|
| Tool | Purpose |
|---|---|
| `get_ticker` | Get ticker data for a trading pair (price, volume, VWAP, etc.) |

@@ -69,2 +69,12 @@ | `list_orderbook` | Get order book (bids and asks) for a trading pair |

| `create_withdrawal` | Create a withdrawal request (crypto or fiat) |
| `list_ledger` | List account ledger entries (trades, fees, fundings, withdrawals) |
| `list_open_orders` | List currently open orders for the authenticated user |
| `lookup_order` | Look up one or more orders by origin_id (client_id) |
| `cancel_all_orders` | Cancel all open orders for the authenticated user |
| `list_fundings` | List account fundings (deposits) |
| `list_withdrawals` | List account withdrawals |
| `get_withdrawal` | Retrieve a specific withdrawal by its ID |
| `list_fees` | List applicable fees for the authenticated user across trading pairs |
| `get_account_status` | Retrieve account KYC and verification status (tier, limits, required docs) |
| `list_funding_destinations` | Get funding destination details (address/CLABE) for a given currency |

@@ -71,0 +81,0 @@ ## Authentication

@@ -10,3 +10,3 @@ {

},
"version": "0.2.0",
"version": "0.2.1",
"packages": [

@@ -16,3 +16,3 @@ {

"identifier": "@codespar/mcp-bitso",
"version": "0.2.0",
"version": "0.2.1",
"transport": {

@@ -19,0 +19,0 @@ "type": "stdio"

@@ -72,3 +72,3 @@ #!/usr/bin/env node

const server = new Server(
{ name: "mcp-bitso", version: "0.2.0" },
{ name: "mcp-bitso", version: "0.2.1" },
{ capabilities: { tools: {} } }

@@ -419,3 +419,3 @@ );

t.onclose = () => { if (t.sessionId) transports.delete(t.sessionId); };
const s = new Server({ name: "mcp-bitso", version: "0.2.0" }, { capabilities: { tools: {} } }); (server as any)._requestHandlers.forEach((v: any, k: any) => (s as any)._requestHandlers.set(k, v)); (server as any)._notificationHandlers?.forEach((v: any, k: any) => (s as any)._notificationHandlers.set(k, v)); await s.connect(t);
const s = new Server({ name: "mcp-bitso", version: "0.2.1" }, { capabilities: { tools: {} } }); (server as any)._requestHandlers.forEach((v: any, k: any) => (s as any)._requestHandlers.set(k, v)); (server as any)._notificationHandlers?.forEach((v: any, k: any) => (s as any)._notificationHandlers.set(k, v)); await s.connect(t);
await t.handleRequest(req, res, req.body); return;

@@ -422,0 +422,0 @@ }