# mcp-number-theory [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/daedalus/mcp-number-theory  
**GitHub Stars:** 0  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/mcp-number-theory

## Description
MCP server exposing number theory functions and factorization algorithms

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `uvx` (confidence: high):

```json
"mcpServers": {
  "mcp-number-theory": {
    "command": "uvx",
    "args": ["mcp-number-theory"]
  }
}
```

## Documentation & README

# mcp-number-theory

> MCP server exposing number theory functions and factorization algorithms.

[![PyPI](https://img.shields.io/pypi/v/mcp-number-theory.svg)](https://pypi.org/project/mcp-number-theory/)
[![Python](https://img.shields.io/pypi/pyversions/mcp-number-theory.svg)](https://pypi.org/project/mcp-number-theory/)

## Install

```bash
pip install mcp-number-theory
```

## Usage

```python
from mcp_number_theory import number_theory as nt

# Compute GCD
result = nt.gcd(48, 18)  # Returns 6

# Factorize
from mcp_number_theory import algos
p, q = algos.fermat(1234567890123456789)
```

## MCP Server

This package provides an MCP server that exposes number theory functions. Run with:

```bash
mcp-number-theory
```

mcp-name: io.github.daedalus/mcp-number-theory

