Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

nobitex-mcp-server

MCP.Pizza Chef: xmannii

The nobitex-mcp-server is a Model Context Protocol server that provides structured, real-time access to cryptocurrency market data from the Nobitex API. It enables fetching detailed statistics for specific cryptocurrency pairs as well as global market statistics, facilitating integration with AI models and applications for up-to-date crypto market insights. This server supports seamless setup and integration with platforms like Claude Desktop, making it ideal for developers building crypto-aware AI workflows.

Use This MCP server To

Fetch real-time statistics for specific cryptocurrency pairs Retrieve global cryptocurrency market statistics Integrate Nobitex crypto data into AI-driven trading bots Provide live market data for crypto portfolio management apps Enable AI models to analyze current crypto market trends Automate crypto market alerts based on live data

README

📊 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.

  1. 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?"

nobitex-mcp-server FAQ

How do I install and start the nobitex-mcp-server?
Install dependencies with 'npm install' and start the server using 'npm run start'.
How can I integrate the nobitex-mcp-server with Claude Desktop?
Add the server configuration to Claude Desktop's 'claude_desktop_config.json' under 'mcpServers' with the appropriate command and args.
What kind of market data can I retrieve from this MCP server?
You can fetch statistics for specific cryptocurrency pairs and global market statistics from Nobitex.
Is the nobitex-mcp-server limited to Nobitex API data only?
Yes, it specifically provides market data sourced from the Nobitex cryptocurrency exchange API.
Can this MCP server be used to power AI models from providers like OpenAI, Claude, or Gemini?
Yes, it can feed real-time Nobitex market data into AI models from OpenAI, Claude, Gemini, and others for enhanced crypto analysis.
What programming environment is required to run this MCP server?
It requires a Node.js environment with npm to install dependencies and run the server.
Are there any built-in tools provided by this MCP server?
Yes, it includes 'getMarketStats' for specific pair stats and 'getGlobalStats' for overall market data.