Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-daedalus-mcp-number-theory": {
"args": [
"mcp-number-theory"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server exposing number theory functions and factorization algorithms.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'mcp-number-theory' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-number-theory against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in education
A Model Context Protocol server for searching and analyzing arXiv papers
ARIS ⚔️ (Auto-Research-In-Sleep) — Lightweight Markdown-only skills for autonomous ML research: cross-model review loops, idea discovery, and experiment automation. No framework, no lock-in — works with Claude Code, Codex, OpenClaw, or any LLM agent.
MCP server for NotebookLM - Let your AI agents (Claude Code, Codex) research documentation directly with grounded, citation-backed answers from Gemini. Persistent auth, library management, cross-client sharing. Zero hallucinations, just your knowledge base.
Daofy for Delphi — MCP Server that compiles Delphi projects and queries knowledge base for AI assistants.
MCP Security Weekly
Get CVE alerts and security updates for io.github.daedalus/mcp-number-theory and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server exposing number theory functions and factorization algorithms.
pip install mcp-number-theory
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)
This package provides an MCP server that exposes number theory functions. Run with:
mcp-number-theory
mcp-name: io.github.daedalus/mcp-number-theory