GitHub Stars
0
User Rating
Not Rated
Forks
0
Issues
0
Views
2
Favorites
0
README
MCP
Create Environment
# Create a new directory for our project
uv init sample
cd sample
# Create virtual environment and activate it
uv venv
source .venv/bin/activate
uv pip install fastmcp
Run MCP Server
fastmcp run server.py
python server.py
Run MCP Client
python client.py
Option Setup
# Install dependencies
uv add "mcp[cli]" httpx
Trying MCP with C#
ref: quick start
dotnet new console -n MinimalMcpServer