Used for cloning the repository as part of the installation process.
Hosts the repository at github.com/WaiYanNyeinNaing/mcp-dummy-server and the FastMCP framework at github.com/jlowin/fastmcp.
Required for running the MCP server with version 3.10+ specifically needed for FastMCP compatibility.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@FastMCP Dummy Servermultiply 14 by 11 to get the area of my room"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Simple MCP Server
Author: Dr. Wai Yan Nyein Naing
A simple example of an MCP server for beginners.
Quick Start
1. Install
2. Test
Option 1: Start server first (recommended for learning)
Option 2: Auto-start (client starts server automatically)
Example: Reasoning Calculation with LLM + MCP Tool
Suppose you ask an LLM:
"You're buying carpet for a rectangular room that's 14 feet by 11 feet. The carpet costs $4.25 per square foot. How much will the carpet cost, and if there's a 7.5% sales tax, what's your total cost?"
How the LLM solves it with MCP tools:
Calls the
multiplytool to compute the area: 14 × 11 = 154Calls the
multiplytool to get the carpet cost: 154 × 4.25 = 654.50Calls the
percentagetool to get the sales tax: 7.5% of 654.50 = 49.09Calls the
addtool to get the total: 654.50 + 49.09 = 703.59
Final answer:
Benefit:
By leveraging the MCP server's calculation tools, LLMs can solve real-world math and reasoning problems accurately, even for decimal and multi-step questions.
Related MCP server: Echo MCP Server
Integration
Cursor
Add to ~/.cursor/mcp.json:
VS Code
Create .vscode/mcp.json:
Claude Desktop
Add to claude_desktop_config.json:
Files
server.py- The MCP serverclient.py- Test clientrequirements.txt- Dependencies
Author: Dr. Wai Yan Nyein Naing