MCP.so
Sign In

ZKOM MCP Server for Cryptocurrency Prices

@cryptonerdcn

About ZKOM MCP Server for Cryptocurrency Prices

No overview available yet

Basic information

Category

Other

Runtime

python

Transports

stdio

Publisher

cryptonerdcn

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "zkom_mcp_server": {
      "command": "python",
      "args": [
        "-m",
        "app.main"
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is ZKOM MCP Server for Cryptocurrency Prices?

A Model Context Protocol (MCP) server implementation that retrieves real‑time cryptocurrency exchange rates from Coinbase. It is designed for developers who want to integrate crypto price data into MCP‑compatible applications.

How to use ZKOM MCP Server for Cryptocurrency Prices?

Clone the repository, install dependencies with pip install -r requirements.txt, create a .env file with the required environment variables (PORT, HOST, COINBASE_API_URL), and run the server with python -m app.main. Then send GET requests to the endpoint GET /v1/crypto/price?symbol=BTC&currency=USD.

Key features of ZKOM MCP Server for Cryptocurrency Prices

  • Real‑time exchange rates for cryptocurrencies
  • MCP‑compliant API responses
  • Support for querying prices in various currencies
  • Caching mechanism to reduce API calls

Use cases of ZKOM MCP Server for Cryptocurrency Prices

  • Display current cryptocurrency prices in MCP‑powered chat interfaces
  • Automate price checks for trading bots or portfolio trackers
  • Integrate live crypto rates into financial dashboards
  • Provide multi‑currency price data for educational or research tools

FAQ from ZKOM MCP Server for Cryptocurrency Prices

What data source does the server use?

It retrieves exchange rates from the Coinbase API (v2 exchange‑rates endpoint).

How do I configure the server?

Create a .env file with PORT, HOST, and COINBASE_API_URL. The default values are PORT=8000, HOST=0.0.0.0, and COINBASE_API_URL=https://api.coinbase.com/v2/exchange-rates.

What is the API endpoint for querying prices?

The endpoint is GET /v1/crypto/price?symbol=BTC&currency=USD. Replace BTC and USD with the desired cryptocurrency symbol and currency code.

Does the server cache responses?

Yes, it includes a caching mechanism to reduce the number of API calls to Coinbase.

What are the runtime requirements?

Python and the packages listed in requirements.txt (installed via pip install -r requirements.txt).

Comments

More Other MCP servers