Metadata-Version: 2.4
Name: muawyiya-math-mcp-server
Version: 1.0.0
Summary: MCP server providing basic math operations
Author-email: Your Name <your.email@example.com>
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: mcp>=0.1.0

# Math MCP Server

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

## Features

- **Add**: Add two numbers
- **Subtract**: Subtract two numbers  
- **Multiply**: Multiply two numbers
- **Divide**: Divide two numbers (with zero-check)

## Installation

### Development Install
```bash
pip install -e .
```

### From Built Package
```bash
pip install dist/math_mcp_server-1.0.0-py3-none-any.whl
```

## Usage

Run the server:
```bash
math-mcp-server
```

Or use with MCP clients by specifying the command.

## Testing
```bash
python mcp_client.py
```

## Development

Built with:
- Python 3.10+
- MCP SDK

## Build
```bash
python -m build
```

## License

MIT
