Back to MCP Directory
CMCP
Model Context Protocol low risk

Coin

The Coin MCP Server fetches cryptocurrency prices from Bitget's API, offering token price lookups and announcements with Zod validation for parameter checks.

Connections & Capabilities

Connects To

GitHub

Capabilities

read

Quickstart

Config

{
  "mcpServers": {
    "coin-mcp": {
      "command": "deno",
      "args": [
        "run",
        "--allow-net",
        "--allow-read",
        "--allow-env",
        "https://deno.land/x/coin_mcp_server/main.ts"
      ]
    }
  }
}

Exposed MCP Tools (3)

safe
getTokenPrice

Fetches the latest price of a specified cryptocurrency token in USDT.

Read-only operation; retrieves data without modifying any system state.

safe
getAnnoucements

Retrieves announcements related to cryptocurrencies.

Read-only operation; retrieves data without modifying any system state.

safe
getCoinInfo

Retrieves detailed information about a specified cryptocurrency token.

Read-only operation; retrieves data without modifying any system state.

Safety Assessment

This server is relatively safe for fetching cryptocurrency prices due to its read-only nature and input validation. However, it's crucial to ensure the underlying Deno environment is securely configured and to monitor the reliability of the external Bitget API.

  • Read-only access to cryptocurrency prices and announcements.
  • Uses Zod for input validation, reducing injection risks.
  • No API keys required for public endpoints.
  • Operates within the Deno environment, which has built-in security features.
  • Relies on the security of the Bitget API.
  • Potential for network vulnerabilities if Deno is not configured securely.
  • Exposure to external data sources introduces a risk of data integrity issues.
  • Lack of authentication mechanisms could allow unrestricted access within the local network.