loading…
Search for a command to run...
loading…
An example Model Context Protocol (MCP) server that provides basic mathematical operations such as adding two numbers together. It serves as a demonstration for
An example Model Context Protocol (MCP) server that provides basic mathematical operations such as adding two numbers together. It serves as a demonstration for deploying and configuring MCP servers using Python and the uv package manager.
A Model Context Protocol (MCP) server example that provides basic mathematical operations.
Add the following configuration to your MCP settings (e.g., Claude Desktop config):
{
"mcpServers": {
"mcp-server-deepdive-deployment": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/Stauffacher/mcpserverexample.git",
"mcp-server"
]
}
}
}
git clone https://github.com/Stauffacher/mcpserverexample.git
cd mcpserverexample
uv sync
uv run mcp-server
├── src/
│ └── mcpserver/
│ ├── __init__.py
│ ├── __main__.py # Entry point
│ └── deployment.py # MCP tools
├── pyproject.toml # Project configuration
└── README.md
See LICENSE file for details.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"mcp-server-deepdive-deployment": {
"command": "npx",
"args": []
}
}
}