Crypto_MCP_Server
Verified Safeby menorhge3556
Overview
Provides real-time and historical cryptocurrency market data via a Model Context Protocol (MCP) server.
Installation
python server/main.pySecurity Notes
The server uses stdin/stdout for inter-process communication, which is common for MCP servers. It dynamically calls registered Python functions based on incoming JSON requests. Input validation is performed within each tool handler (e.g., `get_ticker`, `get_ohclv`, `stream_ticker`), mitigating common injection risks for parameters. The `ccxt` library is used for external API calls. There are no explicit uses of `eval`, `exec`, or `subprocess` on arbitrary user input within the provided source code, nor any hardcoded API keys. The primary risk would be if the application consuming the server's output or providing its input via stdin is compromised or poorly secured.
Similar Servers
tradingview-mcp
Provides real-time cryptocurrency and stock market analysis for traders, analysts, and AI assistants via the Model Context Protocol (MCP).
mcp-aktools
This MCP server provides real-time and historical financial data for stocks and cryptocurrencies, offering search, detailed information retrieval, market overviews, news, and analysis capabilities.
crypto-indicators-mcp
Provides an MCP server with over 50 cryptocurrency technical analysis indicators and strategies to empower AI trading agents in analyzing market trends and developing quantitative strategies.
alpha_vantage_mcp
Enables LLMs and agentic workflows to seamlessly interact with real-time and historical stock market data through the Model Context Protocol (MCP).