Skip to main content
Glama
Stauffacher

MCP Server Deepdive Deployment

by Stauffacher
README.md
# MCP Server Deepdive Deployment

A Model Context Protocol (MCP) server example that provides basic mathematical operations.

## Features

- **add**: Add two numbers together

## Installation

### From GitHub

Add the following configuration to your MCP settings (e.g., Claude Desktop config):

```json
{
  "mcpServers": {
    "mcp-server-deepdive-deployment": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/Stauffacher/mcpserverexample.git",
        "mcp-server"
      ]
    }
  }
}
```

### Local Development

1. Clone the repository:

```bash
git clone https://github.com/Stauffacher/mcpserverexample.git
cd mcpserverexample
```

2. Install dependencies:

```bash
uv sync
```

3. Run the server:

```bash
uv run mcp-server
```

## Project Structure

```
├── src/
│   └── mcpserver/
│       ├── __init__.py
│       ├── __main__.py      # Entry point
│       └── deployment.py    # MCP tools
├── pyproject.toml           # Project configuration
└── README.md
```

## Requirements

- Python >= 3.11
- mcp[cli] >= 1.26.0

## License

See LICENSE file for details.

TDQS

B3.2/5.0

Scored across 1 tool

Disambiguation5/5

With only one tool, there is no possibility of ambiguity or overlap between tools. The tool 'add' has a clear and distinct purpose of adding two numbers, leaving no room for confusion or misselection by an agent.

Naming Consistency5/5

Since there is only a single tool, naming consistency is inherently perfect. The tool name 'add' follows a simple verb pattern, and with no other tools to compare against, there are no inconsistencies or deviations in naming conventions.

Tool Count2/5

A single tool is generally too few for a server's purpose, as it limits functionality and scope. While the tool 'add' is well-defined, a server with only one tool feels thin and under-scoped, lacking the breadth expected for meaningful agent interactions or domain coverage.

Completeness1/5

The server is severely incomplete, as it only provides a basic arithmetic operation (adding two numbers) without any related functions like subtraction, multiplication, or division. This leaves significant gaps in mathematical or computational workflows, making it inadequate for most practical purposes beyond trivial tasks.

Maintenance

ActivityInactive
ResponsivenessNo issues