π Nobitex Market Data MCP Server
About
a Model Context Protocol (MCP) server that provides access to cryptocurrency market data from the Nobitex API.
Details
- Author
- xmannii
- GitHub stars
- 21
- Downloads
- 370
- Categories
- Search
Jump to
- Fetch market statistics for specific cryptocurrency pairs
- Retrieve global cryptocurrency market statistics
- Exposes two tools: getMarketStats and getGlobalStats
- Integrates with Claude Desktop via MCP configuration
- Simple npm-based setup and run
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
π Nobitex Market Data MCP ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install dependencies with npm install, then run the server with npm run start. To use with Claude Desktop, add the server configuration to your claude_desktop_config.json with the command npm --prefix /path/to/repo run start.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"\ud83d\udcca nobitex market data mcp server": {
"nobitex-mcp-server": {
"command": "npx",
"args": [
"mcp-eval",
"evals.ts",
"tools/market.tools.ts"
],
"env": {
"OPENAI_API_KEY": "your-key"
}
}
}
}
}
McpServers
{
"nobitex-mcp-server": {
"command": "npx",
"args": [
"mcp-eval",
"evals.ts",
"tools/market.tools.ts"
],
"env": {
"OPENAI_API_KEY": "your-key"
}
}
}
π Nobitex Market Data MCP Server
This is a Model Context Protocol (MCP) server that provides access to cryptocurrency market data from the Nobitex API.
β¨ Features
- Get market statistics for specific cryptocurrency pairs
- Get global cryptocurrency market statistics
π οΈ Tools
- getMarketStats: Fetch statistics for a specific cryptocurrency market pair
- getGlobalStats: Fetch global cryptocurrency market statistics
π Setup
1. Install dependencies:
npm install
2. Run the server:
npm run start
π Usage with Claude Desktop
To add this server to Claude Desktop:
1. Open Claude Desktop settings
2. Go to the "Developer" section and click "Edit Config"
3. Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"nobitex": {
"command": "npm",
"args": [
"--prefix",
"/path/to/this/repo",
"run",
"start"
]
}
}
}
Replace /path/to/this/repo with the actual path to this repository on your computer.
4. Restart Claude Desktop
Running evals
The evals package loads an mcp client that then runs the index.ts file, so there is no need to rebuild between tests. You can load environment variables by prefixing the npx command. Full documentation can be found here.
OPENAI_API_KEY=your-key npx mcp-eval evals.ts tools/market.tools.ts
Example Prompts
- "What are the current Bitcoin prices in rials?"
- "What is the current global cryptocurrency market status?"
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.

