Back to the catalog

io.github.daedalus/mcp-number-theory

MCP server exposing number theory functions and factorization algorithms

Open source Open in the app JSON README (API)

About

MCP server exposing number theory functions and factorization algorithms

Details

Kind
MCP servers
Topic
No topic detected
Publisher
daedalus
Origin
official
Category
ferramentas
Transport
local
Version
0.1.0
Last push
2026-04-21T19:27:13Z
Repository state
ativo
Language
Python
License
MIT
Added
2026-08-29 03:02:40
Updated
2026-08-29 03:02:40
Origin id
io.github.daedalus/mcp-number-theory

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

More