An MCP server that tracks real-time data for major crypto-related stocks to help AI agents analyze blockchain investment opportunities. - List Crypto Stocks: Retrieve a list of crypto-related stocks (e.g., Coinbase, MicroStrategy) in a table format. - Real-Time Prices: Fetch the latest price for a specific stock, including ticker, company name, price, and timestamp. - Historical Data: Access histo
Add this skill
npx mdskills install kukapay/crypto-stocks-mcpWell-documented MCP server providing real-time and historical crypto stock data with clear setup instructions
1# Crypto Stocks MCP23An MCP server that tracks real-time data for major crypto-related stocks to help AI agents analyze blockchain investment opportunities.456789## Features1011- **List Crypto Stocks**: Retrieve a list of crypto-related stocks (e.g., Coinbase, MicroStrategy) in a table format.12- **Real-Time Prices**: Fetch the latest price for a specific stock, including ticker, company name, price, and timestamp.13- **Historical Data**: Access historical stock prices and trading volumes for a specified number of days.14- **Query Prompts**: Generate natural language prompts for querying stock information.1516## Installation1718### Prerequisites1920- Python 3.10 or higher21- [uv](https://docs.astral.sh/uv/) (recommended) or `pip` for dependency management2223### Setup24251. **Clone the Repository**:2627 ```bash28 git clone https://github.com/kukapay/crypto-stocks-mcp.git29 cd crypto-stocks-mcp30 ```31322. **Install Dependencies**:3334 Using `uv` (recommended):3536 ```bash37 uv sync38 ```39403. **Install to Claude Desktop**:4142 Install the server as a Claude Desktop application:43 ```bash44 uv run mcp install main.py --name "Crypto Stocks"45 ```4647 Configuration file as a reference:4849 ```json50 {51 "mcpServers": {52 "Crypto Stocks": {53 "command": "uv",54 "args": [ "--directory", "/path/to/crypto-stocks-mcp", "run", "main.py" ]55 }56 }57 }58 ```59 Replace `/path/to/crypto-stocks-mcp` with your actual installation path.6061## Usage6263### Example Interactions6465Using an MCP-compatible client (e.g., Claude Desktop or MCP Inspector):6667- **List All Stocks**:6869 Prompt:70 > Show me all crypto-related stocks.7172 Result:73 ```74 +----------+-------------------------------------+75 | Ticker | Name |76 +==========+=====================================+77 | COIN | Coinbase Global Inc. |78 | MSTR | MicroStrategy Incorporated |79 | MARA | Marathon Digital Holdings |80 | ... | ... |81 +----------+-------------------------------------+82 ```8384- **Get Real-Time Price**:8586 Prompt:87 > What's the latest price for Coinbase?8889 Result:90 ```91 +----------+-----------------------+---------+----------------------------+92 | Ticker | Name | Price | Timestamp |93 +==========+=======================+=========+============================+94 | COIN | Coinbase Global Inc. | 200.50 | 2025-08-07T17:15:00.123456|95 +----------+-----------------------+---------+----------------------------+96 ```9798- **Fetch Historical Data**:99100 Prompt:101 > Show me the historical prices for MicroStrategy over the past 30 days.102103 Result:104 ```105 +------------+---------+----------+106 | Date | Close | Volume |107 +============+=========+==========+108 | 2025-07-08 | 195.20 | 1200000 |109 | 2025-07-09 | 198.50 | 1300000 |110 | ... | ... | ... |111 +------------+---------+----------+112 ```113114- **Use Query Prompt**:115116 Call the `stock_query` prompt with `COIN`:117118 ```119 Get the latest price and historical data for Coinbase Global Inc. (COIN).120 ```121122123## License124125This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.126127
Full transparency — inspect the skill content before installing.