1. Conduid
  2. Developer Tools
  3. mcp_coingecko_price_ts
MCP server · Developer Tools

mcp_coingecko_price_ts

A simple Model Context Protocol (MCP) server that provides cryptocurrency pricing information using the CoinGecko API.

Unclaimed other
39Low

Scored 2 days ago · breakdown

About mcp_coingecko_price_ts

mcp_coingecko_price_ts is an MCP server published by git+marcosnunesmbs in the Developer Tools category: a simple Model Context Protocol (MCP) server that provides cryptocurrency pricing information using the CoinGecko API. It has been installed 0 times through Conduid.

The repository has 1 stars and 0 forks.

Install

Install
npx mcp_coingecko_price_ts
Claude Code
claude mcp add coingecko-price-ts -- npx -y mcp_coingecko_price_ts
npx
npx -y mcp_coingecko_price_ts

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about mcp_coingecko_price_ts

Powered by Claude · Grounded in docs

I know everything about mcp_coingecko_price_ts. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

CoinGecko Price MCP Server

A simple Model Context Protocol (MCP) server that provides cryptocurrency pricing information using the CoinGecko API.

Features

  • get_crypto_price: A tool to fetch the current price of a cryptocurrency in a specific currency.
    • Inputs:
      • crypto_id: The CoinGecko ID of the cryptocurrency (e.g., 'bitcoin', 'ethereum').
      • currency: The target currency for the price (e.g., 'usd', 'brl').

Prerequisites

  • Node.js (v18 or higher recommended)
  • npm

Installation

  1. Clone or navigate to the project repository.

  2. Install dependencies:

    npm install
    

Building the Project

Compile the TypeScript code to JavaScript:

npm run build

The compiled output will be in the dist directory.

Usage

Testing Locally with MCP Inspector (The npx Way)

You can test the server interactively using the MCP Inspector. This allows you to inspect tools and resources and make tool calls directly.

  1. Build the project first:

    npm run build
    
  2. Run the inspector using npx, pointing it to your built server script:

    npx @modelcontextprotocol/inspector node dist/index.js
    

    Note: On Windows, use a full path or ensuring valid path syntax if you encounter issues.

  3. Open the URL provided in the terminal (usually http://localhost:5173) to interact with your server.

Running Directly

You can run the server directly (it communicates via Stdio), but it is designed to be used by an MCP client (like Claude Desktop or the Inspector).

npm start

Developing

To run the server in development mode (using tsx):

npm run dev

Setup with Claude Desktop

To use this server with Claude Desktop apps:

  1. Locate your Claude Desktop configuration file:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  2. Add the server configuration:

    {
      "mcpServers": {
        "coingecko_price": {
          "command": "node",
          "args": ["/absolute/path/to/mcp_coingecko_price_ts/dist/index.js"]
        }
      }
    }
    

    Remember to run npm run build after making changes to the source code.

  3. You can run this mcp with stdio transport using npx command

    {
     "mcpServers": {
       "coingecko_price": {
         "command": "npx",
         "args": ["-y", "mcp_coingecko_price_ts"]
       }
     }
    }
    

README mirrored from the source repository 2 days ago. The original is authoritative.

Questions

About mcp_coingecko_price_ts

How do I install mcp_coingecko_price_ts?

Run npx mcp_coingecko_price_ts, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is mcp_coingecko_price_ts safe to use with an AI agent?

Its trust score is 39 out of 100 (low). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is mcp_coingecko_price_ts still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.