Mathematica
БесплатноНе проверенEnables AI agents to run Mathematica code, control live notebooks, and verify results through natural language.
Описание
Enables AI agents to run Mathematica code, control live notebooks, and verify results through natural language.
README
A front-end / notebook automation layer for Mathematica, built for AI agents.
Your AI agent can write Mathematica code. This server lets it run that code in your live Mathematica session: create and edit notebooks, build interactive Manipulate panels, capture screenshots, verify derivations step by step, and read .nb files even without a kernel. Works with Claude, Cursor, VS Code, Codex, and Gemini.
It runs beside the official Wolfram Local MCP, not instead of it: Wolfram's server is the reference evaluator and documentation surface; this one owns the live notebook. See How it compares.
License: MIT Python 3.10+ Mathematica 14+ CI Repo Published
Upgrading from an earlier version? See the Migration Guide.
Watch it in action
An AI agent solving math, generating plots, and controlling a live Mathematica notebook. Errors are returned directly to the agent, no copy-pasting notebook output back into chat.
Why this exists
LLMs can write Wolfram Language, but they cannot run it, see the result, or fix their own mistakes. This server closes that loop:
- Live notebook control: the agent creates, edits, evaluates, and screenshots real notebooks in your running Mathematica front end. Interactive content (
Manipulate,Dynamic, sliders) renders as live panels. - Fast by default: computation runs on a persistent kernel session that starts warming the moment the server launches; calls return in milliseconds, not the ~13 seconds of a cold
wolframscriptstart per request. - Self-debugging agents: Mathematica errors flow back with a
suggested_fixand, when derivable, a ready-to-runretry_withcall. No copying red text from the notebook into chat. - Derivation checking:
verify_derivationvalidates a chain of mathematical steps and pinpoints the first invalid one. - Reads notebooks without a license:
read_notebook_fileparses.nbfiles in pure Python when no kernel is available (a kernel is used for higher fidelity when present). - Local and private: core execution stays on your machine. Cloud services are contacted only by opt-in tools like
wolfram_alpha.
What you can ask for
"Integrate x^2 sin(x) from 0 to pi, then verify the result."
evaluate("Integrate[x^2 Sin[x], {x, 0, Pi}]") => -4 + Pi^2
verify_derivation(steps=["Integrate[x^2 Sin[x], {x, 0, Pi}]", "-4 + Pi^2"])
=> Step 1 → 2: ✓ VALID
All steps are valid!
"Plot the sombrero function in a new notebook."
notebooks(action="create", title="Sombrero")
evaluate("Plot3D[Sinc[Sqrt[x^2+y^2]], {x,-4,4}, {y,-4,4}]", target="notebook")
=> [3D surface plot rendered in the live notebook]
"Give me a Chebyshev polynomial explorer with a degree slider."
evaluate("Manipulate[Plot[ChebyshevT[n, x], {x, -1, 1}], {n, 0, 30, 1}]", target="notebook")
=> [live slider panel in the notebook; interactive code is auto-routed to the front end]
Quick start
Prerequisites: Mathematica 14.0+ (15+ recommended) with wolframscript on your PATH, and the uv package manager.
# One command, pick your client:
uvx mathematica-mcp-full setup claude-desktop # or: cursor | vscode | codex | gemini | claude-code
Restart Mathematica (so the addon loads) and restart your editor. Then verify:
uvx mathematica-mcp-full doctor
Done - ask your agent for a plot.
The PyPI package and CLI are named
mathematica-mcp-full.
Manual installation, per-client configuration details, and troubleshooting live in the Installation Guide.
The lean default
Agents see a consolidated 12-tool surface (~2.9k tokens of schema) instead of the classic 82 tools (~15k tokens) - a 5x cut in the context an agent pays before doing any work, with the same engine underneath. Prefer everything? MATHEMATICA_PROFILE=classic restores the full pre-1.0 surface, and MATHEMATICA_TOOLSETS adds opt-in extras to lean.
- Tool reference: Technical Reference - Lean Profile Tools
- Profiles and toolsets: Technical Reference - Tool Profiles
- How it stays fast: Technical Reference - Architecture
How it compares
Runs alongside the official Wolfram Local MCP (setup <client> --with-official configures both side by side). The differentiator is live notebook / front-end automation:
| Capability | Official Wolfram Local MCP | This MCP |
|---|---|---|
| Wolfram-Language evaluation | WolframLanguageEvaluator |
evaluate (warm persistent kernel) |
| Wolfram Alpha | WolframAlpha |
wolfram_alpha (opt-in cloud) |
| Symbol docs / definitions | SymbolDefinition, CreateSymbolDoc |
symbols extra (get_symbol_info) |
| Read a notebook file | ReadNotebook (needs kernel) |
read_notebook_file - works with no kernel / license (Python fallback) |
| Write a notebook file | WriteNotebook |
notebooks, edit_cells (live front-end) |
| Live notebook control (create/edit/eval/screenshot) | No | Yes |
Interactive UIs (sliders, Manipulate) |
No | Yes, in the live front-end |
| Derivation verification | No | verify_derivation |
| Doc search / code inspection / test reports | CodeInspector, TestReport |
Deliberately not duplicated - use the official server |
Who this is for
| Audience | Use case |
|---|---|
| Researchers using LLM coding assistants | Run Mathematica from Claude/Cursor/VS Code without leaving your editor |
| Data scientists | Import, transform, and visualize data through natural language |
| Educators | Create interactive Mathematica notebooks through AI conversation |
| Not for | Production web services, untrusted multi-tenant environments |
Documentation
- Installation Guide: manual setup, per-client configs, troubleshooting
- Migration Guide: upgrading between versions
- Technical Reference: architecture, tools, and configuration
- Security Model: threat model, permissions, and vulnerability reporting
- Benchmarks: performance data and reproduction steps
- Examples: worked agent conversations (symbolic calculus, notebook analysis)
- Contributing: development setup, testing, and PR process
- Changelog: version history
License
MIT License
Установить Mathematica в Claude Desktop, Claude Code, Cursor
unyly install mathematica-mcpСтавит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.
Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh
Или настроить вручную
Выполни в терминале:
claude mcp add mathematica-mcp -- uvx mathematica-mcp-fullFAQ
Mathematica MCP бесплатный?
Да, Mathematica MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Mathematica?
Нет, Mathematica работает без API-ключей и переменных окружения.
Mathematica — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Mathematica в Claude Desktop, Claude Code или Cursor?
Открой Mathematica на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Mathematica with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
