rvmosquera/MCP-Server-Demo
If you are the rightful owner of MCP-Server-Demo and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
Building a simple MCP server using KD nuggets.
The MCP Server Demo is a project that guides users through the process of building a simple Model Context Protocol (MCP) server. The tutorial is based on a guide from KD Nuggets and involves using the UV tool to manage and run the server. The server is designed to handle specific tasks, such as fetching stock prices, and can be installed and run on various platforms. The project includes instructions for installation, running the server, and testing its functionality. The use of UV simplifies the process of managing the server and its dependencies, making it accessible for users with varying levels of technical expertise.
Features
- Easy installation and setup using UV.
- Capability to fetch and serve stock prices.
- Integration with yfinance for financial data.
- Cross-platform compatibility.
- Comprehensive testing with visual results.
Usages
usage with UV
bash # Install UV globally (On Windows) powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" # Clone the repository git clone https://github.com/your-username/mcp-server-demo.git # Navigate to the project directory cd mcp-server-demo # Inspect server uv run mcp dev stock_price_server.py # Install server in claude desktop uv run mcp install stock_price_server.py --name "Stock Price Server" --with yfinance