SciMath MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| calculateA | Evaluate one arithmetic/scientific expression safely. Use explicit |
| convert_unitsA | Convert a dimensionful value such as |
| solveA | Solve up to eight algebraic equations for explicitly named variables. Each equation may
use |
| calculusA | Differentiate, integrate, take a limit, or expand a series symbolically. For definite
integrals provide both bounds; for limits and series provide point. |
| linear_algebraA | Perform exact matrix and linear-algebra operations on matrices up to 25x25. Supply
other_matrix for multiplication or as the right-hand side of solve. String entries such as
|
| statisticsA | Compute descriptive statistics, Pearson correlation, linear regression, a Student-t confidence interval for a mean, or an independent Welch t-test. Provide data_y for paired correlation/regression or the second t-test sample. |
| propagate_uncertaintyB | Propagate independent standard uncertainties through an expression. Each measurement has value, uncertainty, and optional unit. Returns nominal value, standard uncertainty, relative uncertainty, and a coverage interval; use output_unit when the result is dimensionful. |
| physical_constantA | Look up a physical constant from SciPy's bundled CODATA table by common alias or name. Returns its value, unit, standard uncertainty, source metadata, and an optional compatible unit conversion. Examples: c, G, hbar, Boltzmann constant, electron mass. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| scimath_guide | Compact syntax, tool-selection, and reliability guidance for SciMath. |
TDQS
Scored across 8 tools
Each tool has a clear, non-overlapping purpose: calculate evaluates expressions, solve handles equations, calculus does symbolic differentiation/integration, linear_algebra handles matrix operations, etc. Even superficially similar tools like calculate and calculus are distinct in scope.
All names use lowercase with underscores for multi-word tools, but the pattern is mixed: some are verbs (calculate, solve), some are noun phrases (linear_algebra, physical_constant). This is mostly consistent but deviates from a uniform verb_noun style.
With 8 tools, the set is well-scoped for scientific mathematical computation. Each tool covers a major area (arithmetic, units, equations, calculus, linear algebra, statistics, uncertainty, constants) without redundancy or bloat.
The tool surface covers the core scientific computing workflow: expression evaluation, unit conversion, equation solving, symbolic calculus, matrix operations, statistical analysis, uncertainty propagation, and constants lookup. Minor gaps like numeric root-finding or optimization exist, but the set is comprehensive for typical math/science use.