Poloniex MCP
A local MCP server that exposes the Poloniex spot exchange to MCP clients, providing market data tools (ticker, order book) and authenticated account balance queries.
README
poloniex-mcp
A local Model Context Protocol (MCP) server that
exposes the Poloniex spot exchange to any MCP client
(e.g. Claude Desktop). Built in TypeScript on the official
@modelcontextprotocol/sdk high-level McpServer API, communicating over
stdio.
Tools
| Tool | Auth | Description |
|---|---|---|
get_ticker |
No | 24h ticker (price, high, low, volume) for a symbol. |
get_orderbook |
No | Order book depth (bids/asks) for a symbol. |
get_balances |
Yes | Account balances, signed with your Poloniex API key. |
get_open_orders |
Yes | Active (open) orders, with optional filters. |
Symbols use Poloniex format, e.g. BTC_USDT (input is normalized, so
btc_usdt also works).
Requirements
- Node.js 24+ (uses global
fetch,AbortSignal.timeout, andnode:crypto).
Project structure
src/
index.ts # entry point: loads config, starts stdio transport
server.ts # builds the McpServer and registers tools
config.ts # env configuration, validated with Zod
tools.ts # tool definitions (Zod input schemas + handlers)
poloniex/
client.ts # typed HTTP client (timeout + error handling)
auth.ts # HMAC-SHA256 request signing
test/
unit.test.ts # auth signing + HTTP client unit tests
server.test.ts # in-memory MCP integration tests
Install & build
npm install
npm run build
Scripts
| Script | Purpose |
|---|---|
npm run build |
Compile TypeScript to dist/. |
npm start |
Run the compiled server (dist/index.js). |
npm run dev |
Run the server from source via tsx. |
npm test |
Run the Vitest suite. |
npm run test:coverage |
Run tests with a coverage report. |
npm run typecheck |
Type-check without emitting. |
npm run format |
Format the codebase with Prettier. |
Credentials
The public tools (get_ticker, get_orderbook) need no credentials. For
get_balances, set your Poloniex API key and secret:
POLONIEX_API_KEYPOLONIEX_API_SECRET
Optional overrides: POLONIEX_BASE_URL (default https://api.poloniex.com),
POLONIEX_TIMEOUT_MS (default 10000). Copy .env.example to .env for local
development.
Requests are signed with HMAC-SHA256 (base64), per the Poloniex
api.poloniex.com REST specification, using the key / signature /
signTimestamp headers.
Security: never commit your API key/secret. Keep them in the MCP client's
envblock (below) or a git-ignored.env. A read-only API key is recommended since this server never places trades.
Use with Claude Desktop
Build first (npm run build), then add the following to
claude_desktop_config.json
(macOS: ~/Library/Application Support/Claude/claude_desktop_config.json) and
restart Claude Desktop:
{
"mcpServers": {
"poloniex": {
"command": "node",
"args": ["/absolute/path/to/poloniex-mcp/dist/index.js"],
"env": {
"POLONIEX_API_KEY": "your-api-key-here",
"POLONIEX_API_SECRET": "your-api-secret-here"
}
}
}
}
Omit the env block if you only want the public tools.
Versioning
This project follows Semantic Versioning
(MAJOR.MINOR.PATCH), starting at 0.1.0. While on 0.x, the API is
considered unstable and minor versions may include breaking changes.
- PATCH — backwards-compatible bug fixes.
- MINOR — backwards-compatible functionality (e.g. a new tool).
- MAJOR — incompatible changes (reserved for
1.0.0and beyond).
Record every change in CHANGELOG.md under [Unreleased], then on
release bump the version with npm version <patch|minor|major> (which updates
package.json and creates a vX.Y.Z git tag) and move the notes under the new
version heading.
License
MIT © Sallehuddin Abdul Latif
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.