Metadata-Version: 2.4
Name: factorial_mcp_server
Version: 1.0.1
Summary: MCP server for factorial calculations with FastMCP
Author-email: Bob <bob@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/factorial-mcp-server
Project-URL: Repository, https://github.com/yourusername/factorial-mcp-server
Keywords: mcp,factorial,calculator,fastmcp,model-context-protocol
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: fastmcp>=3.0.0
Dynamic: requires-python

# Factorial MCP Server

A Model Context Protocol (MCP) server that provides factorial calculation tools.

## Tools

- **factorial_value**: Calculate and return the exact value of n! (factorial of n)
- **factorial_digits**: Return the number of decimal digits in n! without computing the full value

## Installation

```bash
pip install factorial_mcp_server
```

## Usage

Run the server:
```bash
python factorial_server.py
```

Or use as a module:
```python
from factorial_server import mcp
mcp.run()
```

## Version

1.0.1 - Fixed package name for proper module import
