← Back to search

io.github.daedalus/mcp-sympy

daedalus Scanned 20d ago

MCP server that exposes SymPy's symbolic mathematics functionality

B
76 / 100

Versions

0.1.0latest
first seen May 19, 2026
PermissionsTool SafetyAuthAnnotationsCode QualityStabilitySpecVuln HistoryAuthorTransparencyCommunity

Tools 171

sympy_fresnels
annotations: none low

Fresnel S.

expr str
sympy_primepi
annotations: none low

Prime counting function.

n str
sympy_simplify
annotations: none low

Simplify an expression. Args: expr: String expression to simplify Returns: Simplified expression as string

expr str
sympy_symbols
annotations: none low

Create symbolic variables. Args: names: Comma-separated symbol names (e.g., "x, y, z") Returns: String representation of created symbols

names str
sympy_symbol
annotations: none low

Create a single symbolic variable. Args: name: Symbol name Returns: String representation of the symbol

name str
sympy_sympify
annotations: none low

Convert a string to a SymPy expression. Args: expr: String expression to convert Returns: SymPy expression as string

expr str
sympy_trigsimp
annotations: none low

Simplify trigonometric expressions. Args: expr: String trigonometric expression Returns: Simplified expression

expr str
sympy_ratsimp
annotations: none low

Simplify rational expressions. Args: expr: String rational expression Returns: Simplified rational expression

expr str
sympy_powsimp
annotations: none low

Simplify powers in an expression. Args: expr: String expression with powers Returns: Simplified expression

expr str
sympy_factor
annotations: none low

Factor an expression. Args: expr: String expression to factor Returns: Factored expression

expr str
sympy_expand
annotations: none low

Expand an expression. Args: expr: String expression to expand Returns: Expanded expression

expr str
sympy_expand_trig
annotations: none low

Expand trigonometric expressions. Args: expr: String trigonometric expression Returns: Expanded expression Example: >>> sympy_expand_trig("sin(2*x)") "2*sin(x)*cos(x)"

expr str
sympy_expand_log
annotations: none low

Expand logarithmic expressions. Args: expr: String logarithmic expression Returns: Expanded expression Example: >>> sympy_expand_log("log(x*y)") "log(x) + log(y)"

expr str
sympy_together
annotations: none low

Combine terms into a single fraction. Args: expr: String expression Returns: Combined fraction Example: >>> sympy_together("1/x + 1/y") "(x + y)/(x*y)"

expr str
sympy_apart
annotations: none low

Perform partial fraction decomposition. Args: expr: String rational expression Returns: Partial fractions Example: >>> sympy_apart("1/(x**2 - 1)") "1/(2*(x - 1)) - 1/(2*(x + 1))"

expr str
sympy_cancel
annotations: none low

Cancel common factors in rational expression. Args: expr: String rational expression Returns: Canceled expression Example: >>> sympy_cancel("(x**2 - 1)/(x - 1)") "x + 1"

expr str
sympy_solve
annotations: none low

Solve an equation or system of equations. Args: equation: String equation variables: Comma-separated variables to solve for Returns: Solution(s) as string

equation str variables str
sympy_solveset
annotations: none low

Solve an equation using solveset. Args: equation: String equation variable: Variable to solve for Returns: Solution set as string

equation str variable str
sympy_nsolve
annotations: none low

Numerically solve an equation. Args: equation: String equation variables: Comma-separated variables guesses: Comma-separated initial guesses Returns: Numerical solution

guesses str equation str variables str
sympy_diff
annotations: none low

Differentiate an expression. Args: expr: String expression to differentiate variable: Variable to differentiate with respect to order: Order of derivative Returns: Derivative as string

expr str order int variable str
sympy_integrate
annotations: none low

Integrate an expression. Args: expr: String expression to integrate variable: Variable to integrate with respect to Returns: Integral as string

expr str variable str
sympy_limit
annotations: none low

Compute a limit. Args: expr: String expression variable: Variable approaching the limit point: Point to approach direction: Direction ("+", "-") Returns: Limit as string

expr str point str variable str direction str
sympy_series
annotations: none low

Compute series expansion. Args: expr: String expression variable: Variable to expand around point: Point to expand around order: Order of expansion Returns: Series expansion as string

expr str order int point str variable str
sympy_sum
annotations: none low

Compute a sum. Args: expr: String expression to sum variable: Summation variable lower: Lower bound upper: Upper bound Returns: Sum as string Example: >>> sympy_sum("k**2", "k", "1", "5") "55"

expr str lower str upper str variable str
sympy_product
annotations: none low

Compute a product. Args: expr: String expression to multiply variable: Product variable lower: Lower bound upper: Upper bound Returns: Product as string Example: >>> sympy_product("k", "k", "1", "5") "120"

expr str lower str upper str variable str
sympy_summation
annotations: none low

Compute an unevaluated sum (Sum object). Args: expr: String expression variable: Summation variable bounds: Lower and upper bound as "lower,upper" Returns: Sum object as string Example: >>> sympy_summation("k**2", "k", "1,5") "Sum(k**2, (k, 1, 5))"

expr str bounds str variable str
sympy_product_expr
annotations: none low

Compute an unevaluated product (Product object). Args: expr: String expression variable: Product variable bounds: Lower and upper bound as "lower,upper" Returns: Product object as string Example: >>> sympy_product_expr("k", "k", "1,5") "Product(k, (k, 1, 5))"

expr str bounds str variable str
sympy_derivative
annotations: none low

Create a Derivative object (unevaluated). Args: expr: String expression variable: Variable to differentiate order: Order of derivative Returns: Derivative object as string Example: >>> sympy_derivative("x**2", "x") "Derivative(x**2, x)"

expr str order int variable str
sympy_integral
annotations: none low

Create an Integral object (unevaluated). Args: expr: String expression variable: Variable to integrate Returns: Integral object as string Example: >>> sympy_integral("x**2", "x") "Integral(x**2, x)"

expr str variable str
sympy_matrix
annotations: none low

Create a matrix from rows. Args: rows: Semicolon-separated rows, e.g., "1,2; 3,4" Returns: Matrix as string Example: >>> sympy_matrix("1,2; 3,4") "Matrix([[1, 2], [3, 4]])"

rows str
sympy_matrix_add
annotations: none low

Add two matrices. Args: matrix1: First matrix string matrix2: Second matrix string Returns: Sum matrix as string Example: >>> sympy_matrix_add("Matrix([[1, 2], [3, 4]])", "Matrix([[5, 6], [7, 8]])") "Matrix([[6, 8], [10, 12]])"

matrix1 str matrix2 str
sympy_matrix_multiply
annotations: none low

Multiply two matrices. Args: matrix1: First matrix string matrix2: Second matrix string Returns: Product matrix as string Example: >>> sympy_matrix_multiply("Matrix([[1, 2], [3, 4]])", "Matrix([[5, 6], [7, 8]])") "Matrix([[19, 22], [43, 50]])"

matrix1 str matrix2 str
sympy_matrix_inverse
annotations: none low

Compute matrix inverse. Args: matrix: Matrix string Returns: Inverse matrix as string Example: >>> sympy_matrix_inverse("Matrix([[1, 2], [3, 4]])") "Matrix([[-2, 1], [1.5, -0.5]])"

matrix str
sympy_matrix_determinant
annotations: none low

Compute matrix determinant. Args: matrix: A SymPy matrix string, e.g., "Matrix([[1, 2], [3, 4]])" Returns: The determinant as a string. Example: >>> sympy_matrix_determinant("Matrix([[1, 2], [3, 4]])") "-2"

matrix str
sympy_matrix_transpose
annotations: none low

Transpose a matrix. Args: matrix: Matrix string Returns: Transposed matrix as string Example: >>> sympy_matrix_transpose("Matrix([[1, 2], [3, 4]])") "Matrix([[1, 3], [2, 4]])"

matrix str
sympy_matrix_eigenvals
annotations: none low

Compute eigenvalues of a matrix. Args: matrix: Matrix string Returns: Eigenvalues as string Example: >>> sympy_matrix_eigenvals("Matrix([[1, 2], [2, 1]])") "{5: 1, -3: 1}"

matrix str
sympy_matrix_eigenvects
annotations: none low

Compute eigenvectors of a matrix. Args: matrix: Matrix string Returns: Eigenvectors as string Example: >>> sympy_matrix_eigenvects("Matrix([[1, 0], [0, 2]])") "(1, 1, [Matrix([[1], [0]]), Matrix([[0], [1]])])"

matrix str
sympy_eye
annotations: none low

Create an identity matrix. Args: n: Size of the matrix Returns: Identity matrix as string Example: >>> sympy_eye(3) "Matrix([[1, 0, 0], [0, 1, 0], [0, 0, 1]])"

n int
sympy_zeros
annotations: none low

Create a zero matrix. Args: rows: Number of rows cols: Number of columns (default: same as rows) Returns: Zero matrix as string Example: >>> sympy_zeros(2, 3) "Matrix([[0, 0, 0], [0, 0, 0]])"

cols int rows int
sympy_ones
annotations: none low

Create a matrix of ones. Args: rows: Number of rows cols: Number of columns (default: same as rows) Returns: Matrix of ones as string Example: >>> sympy_ones(2, 3) "Matrix([[1, 1, 1], [1, 1, 1]])"

cols int rows int
sympy_diag
annotations: none low

Create a diagonal matrix. Args: elements: Comma-separated diagonal elements Returns: Diagonal matrix as string Example: >>> sympy_diag("1,2,3") "Matrix([[1, 0, 0], [0, 2, 0], [0, 0, 3]])"

elements str
sympy_latex
annotations: none low

Convert expression to LaTeX. Args: expr: SymPy expression string Returns: LaTeX string Example: >>> sympy_latex("x**2 + sin(y)") "x^{2} + \sin{\left(y\right)}"

expr str
sympy_python_code
annotations: none low

Convert expression to Python code. Args: expr: SymPy expression string Returns: Python code string Example: >>> sympy_python_code("x**2 + 1") "x**2 + 1"

expr str
sympy_mathml
annotations: none low

Convert expression to MathML. Args: expr: SymPy expression string Returns: MathML string Example: >>> sympy_mathml("x**2") "<math><apply><power/><ci>x</ci><cn>2</cn></apply></math>"

expr str
sympy_str
annotations: none low

Convert expression to string. Args: expr: SymPy expression string Returns: String representation Example: >>> sympy_str("x**2 + 1") "x**2 + 1"

expr str
sympy_repr_expr
annotations: none low

Get repr of expression. Args: expr: SymPy expression string Returns: repr string Example: >>> sympy_repr_expr("x**2") "Pow(Symbol('x'), Integer(2))"

expr str
sympy_interval
annotations: none low

Create an interval. Args: start: Start value end: End value left_open: Whether left is open right_open: Whether right is open Returns: Interval as string Example: >>> sympy_interval("0", "1", true, true) "(0, 1)"

end str start str left_open bool right_open bool
sympy_finite_set
annotations: none low

Create a finite set. Args: elements: Comma-separated elements Returns: Finite set as string Example: >>> sympy_finite_set("1,2,3,4,5") "{1, 2, 3, 4, 5}"

elements str
sympy_union
annotations: none low

Compute union of two sets. Args: set1: First set set2: Second set Returns: Union as string Example: >>> sympy_union("{1,2}", "{2,3}") "{1, 2, 3}"

set1 str set2 str
sympy_intersection
annotations: none low

Compute intersection of two sets. Args: set1: First set set2: Second set Returns: Intersection as string Example: >>> sympy_intersection("{1,2,3}", "{2,3,4}") "{2, 3}"

set1 str set2 str
sympy_complement
annotations: none low

Compute complement of set1 in set2. Args: set1: Subset set2: Universal set Returns: Complement as string Example: >>> sympy_complement("{1,2}", "{1,2,3,4}") "{3, 4}"

set1 str set2 str
sympy_evaluate
annotations: none low

Toggle evaluation globally.

flag bool
sympy_n
annotations: none low

Evaluate expression numerically. Args: expr: Expression to evaluate n: Number of digits Returns: Numerical result Example: >>> sympy_n("pi", 10) "3.141592654"

n int expr str
sympy_evalf
annotations: none low

Evaluate expression to floating point. Args: expr: Expression to evaluate n: Number of digits Returns: Float result Example: >>> sympy_evalf("sqrt(2)", 5) "1.4142"

n int expr str
sympy_exp
annotations: none low

Exponential function. Args: expr: Expression Returns: exp(expr) as string Example: >>> sympy_exp("1") "E"

expr str
sympy_log
annotations: none low

Natural logarithm. Args: expr: Expression Returns: log(expr) as string Example: >>> sympy_log("E") "1"

expr str
sympy_log_base
annotations: none low

Logarithm with specified base. Args: expr: Expression base: Logarithm base Returns: log_base(expr) as string Example: >>> sympy_log_base("100", "10") "2"

base str expr str
sympy_sin
annotations: none low

Sine function. Args: expr: Expression (in radians) Returns: sin(expr) as string Example: >>> sympy_sin("pi/2") "1"

expr str
sympy_cos
annotations: none low

Cosine function. Args: expr: Expression (in radians) Returns: cos(expr) as string Example: >>> sympy_cos("0") "1"

expr str
sympy_tan
annotations: none low

Tangent function. Args: expr: Expression (in radians) Returns: tan(expr) as string Example: >>> sympy_tan("pi/4") "1"

expr str
sympy_sinh
annotations: none low

Hyperbolic sine. Args: expr: Expression Returns: sinh(expr) as string Example: >>> sympy_sinh("0") "0"

expr str
sympy_cosh
annotations: none low

Hyperbolic cosine. Args: expr: Expression Returns: cosh(expr) as string Example: >>> sympy_cosh("0") "1"

expr str
sympy_tanh
annotations: none low

Hyperbolic tangent. Args: expr: Expression Returns: tanh(expr) as string Example: >>> sympy_tanh("0") "0"

expr str
sympy_asin
annotations: none low

Arc sine. Args: expr: Expression (between -1 and 1) Returns: asin(expr) as string Example: >>> sympy_asin("0") "0"

expr str
sympy_acos
annotations: none low

Arc cosine. Args: expr: Expression (between -1 and 1) Returns: acos(expr) as string Example: >>> sympy_acos("1") "0"

expr str
sympy_atan
annotations: none low

Arc tangent. Args: expr: Expression Returns: atan(expr) as string Example: >>> sympy_atan("1") "pi/4"

expr str
sympy_sqrt
annotations: none low

Square root. Args: expr: Expression Returns: sqrt(expr) as string Example: >>> sympy_sqrt("4") "2"

expr str
sympy_cbrt
annotations: none low

Cube root. Args: expr: Expression Returns: cbrt(expr) as string Example: >>> sympy_cbrt("8") "2"

expr str
sympy_root
annotations: none low

N-th root. Args: expr: Expression n: Root degree Returns: Root as string Example: >>> sympy_root("8", "3") "2"

n int expr str
sympy_floor
annotations: none low

Floor function. Args: expr: Expression Returns: floor(expr) as string Example: >>> sympy_floor("3.7") "3"

expr str
sympy_ceiling
annotations: none low

Ceiling function. Args: expr: Expression Returns: ceiling(expr) as string Example: >>> sympy_ceiling("3.2") "4"

expr str
sympy_abs
annotations: none low

Absolute value. Args: expr: Expression Returns: abs(expr) as string Example: >>> sympy_abs("-5") "5"

expr str
sympy_factorial
annotations: none low

Factorial. Args: n: Non-negative integer Returns: n! as string Example: >>> sympy_factorial("5") "120"

n str
sympy_binomial
annotations: none low

Binomial coefficient. Args: n: Non-negative integer k: Non-negative integer Returns: C(n,k) as string Example: >>> sympy_binomial("5", "2") "10"

k str n str
sympy_gamma
annotations: none low

Gamma function. Args: expr: Expression Returns: Gamma(expr) as string Example: >>> sympy_gamma("5") "24"

expr str
sympy_zeta
annotations: none low

Riemann zeta function. Args: s: Expression Returns: zeta(s) as string Example: >>> sympy_zeta("2") "pi**2/6"

s str
sympy_erf
annotations: none low

Error function. Args: expr: Expression Returns: erf(expr) as string Example: >>> sympy_erf("0") "0"

expr str
sympy_dirichlet_eta
annotations: none low

Dirichlet eta function.

s str
sympy_polylog
annotations: none low

Polylogarithm.

s str z str
sympy_fibonacci
annotations: none low

Fibonacci number. Args: n: Non-negative integer Returns: F(n) as string Example: >>> sympy_fibonacci("10") "55"

n str
sympy_lucas
annotations: none low

Lucas number. Args: n: Non-negative integer Returns: L(n) as string Example: >>> sympy_lucas("10") "123"

n str
sympy_catalan
annotations: none low

Catalan number. Args: n: Non-negative integer Returns: C(n) as string Example: >>> sympy_catalan("5") "42"

n str
sympy_isprime
annotations: none low

Check if n is prime. Args: n: Integer Returns: "True" or "False" Example: >>> sympy_isprime("7") "True"

n str
sympy_prime
annotations: none low

Return the n-th prime. Args: n: Positive integer (1-indexed) Returns: n-th prime as string Example: >>> sympy_prime("10") "29"

n str
sympy_nextprime
annotations: none low

Return the next prime after n. Args: n: Integer Returns: Next prime as string Example: >>> sympy_nextprime("10") "11"

n str
sympy_prevprime
annotations: none low

Return the previous prime before n. Args: n: Integer > 2 Returns: Previous prime as string Example: >>> sympy_prevprime("10") "7"

n str
sympy_totient
annotations: none low

Euler's totient function. Args: n: Positive integer Returns: phi(n) as string Example: >>> sympy_totient("10") "4"

n str
sympy_divisors
annotations: none low

Return divisors of n. Args: n: Positive integer Returns: List of divisors Example: >>> sympy_divisors("12") "[1, 2, 3, 4, 6, 12]"

n str
sympy_gcd
annotations: none low

Greatest common divisor. Args: a: Integer b: Integer Returns: gcd(a, b) as string Example: >>> sympy_gcd("48", "18") "6"

a str b str
sympy_lcm
annotations: none low

Least common multiple. Args: a: Integer b: Integer Returns: lcm(a, b) as string Example: >>> sympy_lcm("4", "6") "12"

a str b str
sympy_factorint
annotations: none low

Integer factorization. Args: n: Integer Returns: Prime factorization as string Example: >>> sympy_factorint("12") "{2: 2, 3: 1}"

n str
sympy_poly
annotations: none low

Create a polynomial. Args: expr: Expression variable: Variable Returns: Polynomial as string Example: >>> sympy_poly("x**2 + 2*x + 1", "x") "x**2 + 2*x + 1"

expr str variable str
sympy_degree
annotations: none low

Degree of polynomial. Args: expr: Polynomial expression variable: Variable Returns: Degree as string Example: >>> sympy_degree("x**3 + x**2 + 1", "x") "3"

expr str variable str
sympy_roots
annotations: none low

Find roots of polynomial. Args: expr: Polynomial expression variable: Variable Returns: Roots as string Example: >>> sympy_roots("x**2 - 4", "x") "{2: 1, -2: 1}"

expr str variable str
sympy_coeff
annotations: none low

Get coefficient. Args: expr: Expression x: Variable n: Power of x Returns: Coefficient as string Example: >>> sympy_coeff("3*x**2 + 2*x + 1", "x", 2) "3"

n int x str expr str
sympy_subs
annotations: none low

Substitute in expression. Args: expr: Expression old_new: Substitutions as "old:new,old2:new2" Returns: Substituted expression Example: >>> sympy_subs("x**2 + y", "x:2,y:3") "7"

expr str old_new str
sympy_atoms
annotations: none low

Get atoms (atomic components) of expression. Args: expr: Expression Returns: Set of atoms Example: >>> sympy_atoms("x**2 + y") "{x, y}"

expr str
sympy_free_symbols
annotations: none low

Get free symbols in expression. Args: expr: Expression Returns: Set of free symbols Example: >>> sympy_free_symbols("x**2 + y") "{x, y}"

expr str
sympy_args
annotations: none low

Get arguments of expression. Args: expr: Expression Returns: Tuple of arguments Example: >>> sympy_args("x + y") "(x, y)"

expr str
sympy_func
annotations: none low

Get head function of expression. Args: expr: Expression Returns: Function head Example: >>> sympy_func("x + y") "Add"

expr str
sympy_expr_type
annotations: none low

Get type of expression. Args: expr: Expression Returns: Type as string Example: >>> sympy_expr_type("x + 1") "<class 'sympy.core.add.Add'>"

expr str
sympy_eq
annotations: none low

Create equality. Args: lhs: Left-hand side rhs: Right-hand side Returns: Equality as string Example: >>> sympy_eq("x", "y") "Eq(x, y)"

lhs str rhs str
sympy_ne
annotations: none low

Create inequality (not equal). Args: lhs: Left-hand side rhs: Right-hand side Returns: Neq as string Example: >>> sympy_ne("x", "y") "Ne(x, y)"

lhs str rhs str
sympy_lt
annotations: none low

Create less than. Args: lhs: Left-hand side rhs: Right-hand side Returns: Less than as string Example: >>> sympy_lt("x", "y") "x < y"

lhs str rhs str
sympy_le
annotations: none low

Create less than or equal. Args: lhs: Left-hand side rhs: Right-hand side Returns: Less than or equal as string Example: >>> sympy_le("x", "y") "x <= y"

lhs str rhs str
sympy_gt
annotations: none low

Create greater than. Args: lhs: Left-hand side rhs: Right-hand side Returns: Greater than as string Example: >>> sympy_gt("x", "y") "x > y"

lhs str rhs str
sympy_ge
annotations: none low

Create greater than or equal. Args: lhs: Left-hand side rhs: Right-hand side Returns: Greater than or equal as string Example: >>> sympy_ge("x", "y") "x >= y"

lhs str rhs str
sympy_And
annotations: none low

Logical AND. Args: args: Comma-separated expressions Returns: And as string Example: >>> sympy_And("True, False") "False"

args str
sympy_Or
annotations: none low

Logical OR. Args: args: Comma-separated expressions Returns: Or as string Example: >>> sympy_Or("True, False") "True"

args str
sympy_Not
annotations: none low

Logical NOT. Args: expr: Boolean expression Returns: Not as string Example: >>> sympy_Not("True") "False"

expr str
sympy_Xor
annotations: none low

Logical XOR. Args: args: Comma-separated expressions Returns: Xor as string Example: >>> sympy_Xor("True, False") "True"

args str
sympy_Nand
annotations: none low

Logical NAND. Args: args: Comma-separated expressions Returns: Nand as string Example: >>> sympy_Nand("True, True") "False"

args str
sympy_Nor
annotations: none low

Logical NOR. Args: args: Comma-separated expressions Returns: Nor as string Example: >>> sympy_Nor("False, False") "True"

args str
sympy_Implies
annotations: none low

Logical implication. Args: lhs: Antecedent rhs: Consequent Returns: Implies as string Example: >>> sympy_Implies("True", "False") "False"

lhs str rhs str
sympy_satisfiable
annotations: none low

Check if expression is satisfiable. Args: expr: Boolean expression Returns: Solution or False Example: >>> sympy_satisfiable("x & y") "{x: True, y: True}"

expr str
sympy_Point
annotations: none low

Create a 2D point. Args: x: x-coordinate y: y-coordinate Returns: Point as string Example: >>> sympy_Point("1", "2") "(1, 2)"

x str y str
sympy_Point3D
annotations: none low

Create a 3D point. Args: x: x-coordinate y: y-coordinate z: z-coordinate Returns: Point3D as string Example: >>> sympy_Point3D("1", "2", "3") "(1, 2, 3)"

x str y str z str
sympy_Line
annotations: none low

Create a line through two points. Args: point1: First point point2: Second point Returns: Line as string Example: >>> sympy_Line("(0, 0)", "(1, 1)") "Line2D(Point2D(0, 0), Point2D(1, 1))"

point1 str point2 str
sympy_Circle
annotations: none low

Create a circle. Args: center: Center point radius: Radius Returns: Circle as string Example: >>> sympy_Circle("(0, 0)", "1") "Circle(Point2D(0, 0), 1)"

center str radius str
sympy_Triangle
annotations: none low

Create a triangle. Args: point1: First vertex point2: Second vertex point3: Third vertex Returns: Triangle as string Example: >>> sympy_Triangle("(0, 0)", "(1, 0)", "(0, 1)") "Triangle(Point2D(0, 0), Point2D(1, 0), Point2D(0, 1))"

point1 str point2 str point3 str
sympy_Polygon
annotations: none low

Create a polygon (comma-separated points).

points str
sympy_perfect_power
annotations: none low

Check if n is a perfect power.

n str
sympy_is_square
annotations: none low

Check if n is a perfect square.

n str
sympy_integer
annotations: none low

Create Integer.

n str
sympy_float
annotations: none low

Create Float.

n str
sympy_rational
annotations: none low

Create Rational.

den str num str
sympy_conjugate
annotations: none low

Complex conjugate.

expr str
sympy_im
annotations: none low

Imaginary part.

expr str
sympy_re
annotations: none low

Real part.

expr str
sympy_arg
annotations: none low

Argument of complex number.

expr str
sympy_piecewise
annotations: none low

Create piecewise function (format: "expr,condition; expr2,condition2").

pairs str
sympy_fresnelc
annotations: none low

Fresnel C.

expr str
sympy_diohyp
annotations: none low

Solve a Diophantine equation. Args: expr: A SymPy expression equal to zero, e.g., "x**2 + y**2 - 25" (not "x**2 + y**2 = 25") Returns: Set of integer solutions as a string. Example: >>> sympy_diohyp("x**2 + y**2 - 25") "{(5, 0), (0, 5), (-5, 0), (0, -5), (3, 4), ...}"

expr str
sympy_dsolve
annotations: none low

Solve ordinary differential equation.

eq str func str
sympy_checkodesol
annotations: none low

Check ODE solution.

eq str sol str
sympy_classify_ode
annotations: none low

Classify ODE.

eq str func str
sympy_complexes
annotations: none low

The set of complex numbers.

sympy_reals
annotations: none low

The set of real numbers.

sympy_integers
annotations: none low

The set of integers.

sympy_naturals
annotations: none low

The set of natural numbers.

sympy_naturals0
annotations: none low

The set of natural numbers (including 0).

sympy_emptyset
annotations: none low

Empty set.

sympy_universalset
annotations: none low

Universal set.

sympy_randMatrix
annotations: none low

Random matrix.

n int
sympy_Wild
annotations: none low

Create Wild pattern.

pattern str
sympy_WildFunction
annotations: none low

Create Wild function.

name str
sympy_match
annotations: none low

Match expression to pattern.

expr str pattern str
sympy_replace
annotations: none low

Replace in expression (format: "old,new").

expr str old_new str
sympy_xreplace
annotations: none low

Exact replacement without simplification.

expr str mapping str
sympy_nsimplify
annotations: none low

Numerical simplification.

expr str
sympy_radsimp
annotations: none low

Simplify radicals.

expr str
sympy_rationalize
annotations: none low

Rationalize denominator.

expr str
sympy_count_ops
annotations: none low

Count operations.

expr str
sympy_symbols_create
annotations: none low

Create multiple symbols.

names str
sympy_Range
annotations: none low

Range.

stop str start str
sympy_Identity
annotations: none low

Identity matrix.

n int
sympy_matrix_rank
annotations: none low

Matrix rank.

matrix str
sympy_matrix_nullspace
annotations: none low

Nullspace.

matrix str
sympy_matrix_LU
annotations: none low

LU decomposition.

matrix str
sympy_expand_complex
annotations: none low

Expand complex.

expr str
sympy_as_real_imag
annotations: none low

As real and imaginary parts.

expr str
sympy_as_numer_denom
annotations: none low

As numerator and denominator.

expr str
sympy_groebner
annotations: none low

Groebner basis.

exprs str variable str
sympy_horner
annotations: none low

Horner form.

expr str variable str
sympy_divisor_sigma
annotations: none low

Divisor function.

k str n str
sympy_symbolic_power
annotations: none low

Symbolic power.

n str expr str
sympy_symbolic_mul
annotations: none low

Symbolic multiplication (comma-separated).

factors str
sympy_symbolic_add
annotations: none low

Symbolic addition (comma-separated).

terms str
sympy_finiteset
annotations: none low

Create finite set (comma-separated).

elements str
sympy_product_set
annotations: none low

Product of sets (comma-separated).

sets str
sympy_image_set
annotations: none low

Image set.

expr str variable str

Permissions 0

No permissions indexed yet.

Scan Findings 361

low
Tool 'sympy_solveset' has no annotations annotation_checker · 100%
low
Tool 'sympy_symbols' has no annotations annotation_checker · 100%
low
Tool 'sympy_symbol' has no annotations annotation_checker · 100%
low
Tool 'sympy_sympify' has no annotations annotation_checker · 100%
low
Tool 'sympy_simplify' has no annotations annotation_checker · 100%
low
Tool 'sympy_trigsimp' has no annotations annotation_checker · 100%
low
Tool 'sympy_ratsimp' has no annotations annotation_checker · 100%
low
Tool 'sympy_powsimp' has no annotations annotation_checker · 100%
low
Tool 'sympy_factor' has no annotations annotation_checker · 100%
low
Tool 'sympy_expand' has no annotations annotation_checker · 100%
low
Tool 'sympy_expand_trig' has no annotations annotation_checker · 100%
low
Tool 'sympy_expand_log' has no annotations annotation_checker · 100%
low
Tool 'sympy_together' has no annotations annotation_checker · 100%
low
Tool 'sympy_apart' has no annotations annotation_checker · 100%
low
Tool 'sympy_cancel' has no annotations annotation_checker · 100%
low
Tool 'sympy_solve' has no annotations annotation_checker · 100%
low
Tool 'sympy_nsolve' has no annotations annotation_checker · 100%
low
Tool 'sympy_diff' has no annotations annotation_checker · 100%
low
Tool 'sympy_integrate' has no annotations annotation_checker · 100%
low
Tool 'sympy_limit' has no annotations annotation_checker · 100%
low
Tool 'sympy_series' has no annotations annotation_checker · 100%
low
Tool 'sympy_sum' has no annotations annotation_checker · 100%
low
Tool 'sympy_product' has no annotations annotation_checker · 100%
low
Tool 'sympy_summation' has no annotations annotation_checker · 100%
low
Tool 'sympy_product_expr' has no annotations annotation_checker · 100%
low
Tool 'sympy_derivative' has no annotations annotation_checker · 100%
low
Tool 'sympy_integral' has no annotations annotation_checker · 100%
low
Tool 'sympy_matrix' has no annotations annotation_checker · 100%
low
Tool 'sympy_matrix_add' has no annotations annotation_checker · 100%
low
Tool 'sympy_matrix_multiply' has no annotations annotation_checker · 100%
low
Tool 'sympy_matrix_inverse' has no annotations annotation_checker · 100%
low
Tool 'sympy_matrix_determinant' has no annotations annotation_checker · 100%
low
Tool 'sympy_matrix_transpose' has no annotations annotation_checker · 100%
low
Tool 'sympy_matrix_eigenvals' has no annotations annotation_checker · 100%
low
Tool 'sympy_matrix_eigenvects' has no annotations annotation_checker · 100%
low
Tool 'sympy_eye' has no annotations annotation_checker · 100%
low
Tool 'sympy_zeros' has no annotations annotation_checker · 100%
low
Tool 'sympy_ones' has no annotations annotation_checker · 100%
low
Tool 'sympy_diag' has no annotations annotation_checker · 100%
low
Tool 'sympy_latex' has no annotations annotation_checker · 100%
low
Tool 'sympy_python_code' has no annotations annotation_checker · 100%
low
Tool 'sympy_mathml' has no annotations annotation_checker · 100%
low
Tool 'sympy_str' has no annotations annotation_checker · 100%
low
Tool 'sympy_repr_expr' has no annotations annotation_checker · 100%
low
Tool 'sympy_interval' has no annotations annotation_checker · 100%
low
Tool 'sympy_finite_set' has no annotations annotation_checker · 100%
low
Tool 'sympy_union' has no annotations annotation_checker · 100%
low
Tool 'sympy_intersection' has no annotations annotation_checker · 100%
low
Tool 'sympy_complement' has no annotations annotation_checker · 100%
low
Tool 'sympy_evaluate' has no annotations annotation_checker · 100%
low
Tool 'sympy_n' has no annotations annotation_checker · 100%
low
Tool 'sympy_evalf' has no annotations annotation_checker · 100%
low
Tool 'sympy_exp' has no annotations annotation_checker · 100%
low
Tool 'sympy_log' has no annotations annotation_checker · 100%
low
Tool 'sympy_log_base' has no annotations annotation_checker · 100%
low
Tool 'sympy_sin' has no annotations annotation_checker · 100%
low
Tool 'sympy_cos' has no annotations annotation_checker · 100%
low
Tool 'sympy_tan' has no annotations annotation_checker · 100%
low
Tool 'sympy_sinh' has no annotations annotation_checker · 100%
low
Tool 'sympy_cosh' has no annotations annotation_checker · 100%
low
Tool 'sympy_tanh' has no annotations annotation_checker · 100%
low
Tool 'sympy_asin' has no annotations annotation_checker · 100%
low
Tool 'sympy_acos' has no annotations annotation_checker · 100%
low
Tool 'sympy_atan' has no annotations annotation_checker · 100%
low
Tool 'sympy_sqrt' has no annotations annotation_checker · 100%
low
Tool 'sympy_cbrt' has no annotations annotation_checker · 100%
low
Tool 'sympy_root' has no annotations annotation_checker · 100%
low
Tool 'sympy_floor' has no annotations annotation_checker · 100%
low
Tool 'sympy_ceiling' has no annotations annotation_checker · 100%
low
Tool 'sympy_abs' has no annotations annotation_checker · 100%
low
Tool 'sympy_factorial' has no annotations annotation_checker · 100%
low
Tool 'sympy_binomial' has no annotations annotation_checker · 100%
low
Tool 'sympy_gamma' has no annotations annotation_checker · 100%
low
Tool 'sympy_zeta' has no annotations annotation_checker · 100%
low
Tool 'sympy_erf' has no annotations annotation_checker · 100%
low
Tool 'sympy_dirichlet_eta' has no annotations annotation_checker · 100%
low
Tool 'sympy_polylog' has no annotations annotation_checker · 100%
low
Tool 'sympy_fibonacci' has no annotations annotation_checker · 100%
low
Tool 'sympy_lucas' has no annotations annotation_checker · 100%
low
Tool 'sympy_catalan' has no annotations annotation_checker · 100%
low
Tool 'sympy_isprime' has no annotations annotation_checker · 100%
low
Tool 'sympy_prime' has no annotations annotation_checker · 100%
low
Tool 'sympy_nextprime' has no annotations annotation_checker · 100%
low
Tool 'sympy_prevprime' has no annotations annotation_checker · 100%
low
Tool 'sympy_totient' has no annotations annotation_checker · 100%
low
Tool 'sympy_divisors' has no annotations annotation_checker · 100%
low
Tool 'sympy_gcd' has no annotations annotation_checker · 100%
low
Tool 'sympy_lcm' has no annotations annotation_checker · 100%
low
Tool 'sympy_factorint' has no annotations annotation_checker · 100%
low
Tool 'sympy_poly' has no annotations annotation_checker · 100%
low
Tool 'sympy_degree' has no annotations annotation_checker · 100%
low
Tool 'sympy_roots' has no annotations annotation_checker · 100%
low
Tool 'sympy_coeff' has no annotations annotation_checker · 100%
low
Tool 'sympy_subs' has no annotations annotation_checker · 100%
low
Tool 'sympy_atoms' has no annotations annotation_checker · 100%
low
Tool 'sympy_free_symbols' has no annotations annotation_checker · 100%
low
Tool 'sympy_args' has no annotations annotation_checker · 100%
low
Tool 'sympy_func' has no annotations annotation_checker · 100%
low
Tool 'sympy_expr_type' has no annotations annotation_checker · 100%
low
Tool 'sympy_eq' has no annotations annotation_checker · 100%
low
Tool 'sympy_ne' has no annotations annotation_checker · 100%
low
Tool 'sympy_lt' has no annotations annotation_checker · 100%
low
Tool 'sympy_le' has no annotations annotation_checker · 100%
low
Tool 'sympy_gt' has no annotations annotation_checker · 100%
low
Tool 'sympy_ge' has no annotations annotation_checker · 100%
low
Tool 'sympy_And' has no annotations annotation_checker · 100%
low
Tool 'sympy_Or' has no annotations annotation_checker · 100%
low
Tool 'sympy_Not' has no annotations annotation_checker · 100%
low
Tool 'sympy_Xor' has no annotations annotation_checker · 100%
low
Tool 'sympy_Nand' has no annotations annotation_checker · 100%
low
Tool 'sympy_Nor' has no annotations annotation_checker · 100%
low
Tool 'sympy_Implies' has no annotations annotation_checker · 100%
low
Tool 'sympy_satisfiable' has no annotations annotation_checker · 100%
low
Tool 'sympy_Point' has no annotations annotation_checker · 100%
low
Tool 'sympy_Point3D' has no annotations annotation_checker · 100%
low
Tool 'sympy_Line' has no annotations annotation_checker · 100%
low
Tool 'sympy_Circle' has no annotations annotation_checker · 100%
low
Tool 'sympy_Triangle' has no annotations annotation_checker · 100%
low
Tool 'sympy_Polygon' has no annotations annotation_checker · 100%
low
Tool 'sympy_perfect_power' has no annotations annotation_checker · 100%
low
Tool 'sympy_is_square' has no annotations annotation_checker · 100%
low
Tool 'sympy_integer' has no annotations annotation_checker · 100%
low
Tool 'sympy_float' has no annotations annotation_checker · 100%
low
Tool 'sympy_rational' has no annotations annotation_checker · 100%
low
Tool 'sympy_conjugate' has no annotations annotation_checker · 100%
low
Tool 'sympy_im' has no annotations annotation_checker · 100%
low
Tool 'sympy_re' has no annotations annotation_checker · 100%
low
Tool 'sympy_arg' has no annotations annotation_checker · 100%
low
Tool 'sympy_piecewise' has no annotations annotation_checker · 100%
low
Tool 'sympy_fresnelc' has no annotations annotation_checker · 100%
low
Tool 'sympy_fresnels' has no annotations annotation_checker · 100%
low
Tool 'sympy_diohyp' has no annotations annotation_checker · 100%
low
Tool 'sympy_dsolve' has no annotations annotation_checker · 100%
low
Tool 'sympy_checkodesol' has no annotations annotation_checker · 100%
low
Tool 'sympy_classify_ode' has no annotations annotation_checker · 100%
low
Tool 'sympy_complexes' has no annotations annotation_checker · 100%
low
Tool 'sympy_reals' has no annotations annotation_checker · 100%
low
Tool 'sympy_integers' has no annotations annotation_checker · 100%
low
Tool 'sympy_naturals' has no annotations annotation_checker · 100%
low
Tool 'sympy_naturals0' has no annotations annotation_checker · 100%
low
Tool 'sympy_emptyset' has no annotations annotation_checker · 100%
low
Tool 'sympy_universalset' has no annotations annotation_checker · 100%
low
Tool 'sympy_randMatrix' has no annotations annotation_checker · 100%
low
Tool 'sympy_Wild' has no annotations annotation_checker · 100%
low
Tool 'sympy_WildFunction' has no annotations annotation_checker · 100%
low
Tool 'sympy_match' has no annotations annotation_checker · 100%
low
Tool 'sympy_replace' has no annotations annotation_checker · 100%
low
Tool 'sympy_xreplace' has no annotations annotation_checker · 100%
low
Tool 'sympy_nsimplify' has no annotations annotation_checker · 100%
low
Tool 'sympy_radsimp' has no annotations annotation_checker · 100%
low
Tool 'sympy_rationalize' has no annotations annotation_checker · 100%
low
Tool 'sympy_count_ops' has no annotations annotation_checker · 100%
low
Tool 'sympy_symbols_create' has no annotations annotation_checker · 100%
low
Tool 'sympy_Range' has no annotations annotation_checker · 100%
low
Tool 'sympy_Identity' has no annotations annotation_checker · 100%
low
Tool 'sympy_matrix_rank' has no annotations annotation_checker · 100%
low
Tool 'sympy_matrix_nullspace' has no annotations annotation_checker · 100%
low
Tool 'sympy_matrix_LU' has no annotations annotation_checker · 100%
low
Tool 'sympy_expand_complex' has no annotations annotation_checker · 100%
low
Tool 'sympy_as_real_imag' has no annotations annotation_checker · 100%
low
Tool 'sympy_as_numer_denom' has no annotations annotation_checker · 100%
low
Tool 'sympy_groebner' has no annotations annotation_checker · 100%
low
Tool 'sympy_horner' has no annotations annotation_checker · 100%
low
Tool 'sympy_divisor_sigma' has no annotations annotation_checker · 100%
low
Tool 'sympy_primepi' has no annotations annotation_checker · 100%
low
Tool 'sympy_symbolic_power' has no annotations annotation_checker · 100%
low
Tool 'sympy_symbolic_mul' has no annotations annotation_checker · 100%
low
Tool 'sympy_symbolic_add' has no annotations annotation_checker · 100%
low
Tool 'sympy_finiteset' has no annotations annotation_checker · 100%
low
Tool 'sympy_product_set' has no annotations annotation_checker · 100%
low
Tool 'sympy_image_set' has no annotations annotation_checker · 100%
info
Sandbox failed to start for behavioral verification behavioral_verifier · 100%
medium
Vulnerable dependency: fastmcp@2.0 (GHSA-5h2m-4q8j-pqpj) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0 (GHSA-c2jp-c369-7pvx) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0 (GHSA-m8x7-r2rg-vh5g) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0 (GHSA-mxxr-jv3v-6pgc) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0 (GHSA-rcfx-77hg-w2wv) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0 (GHSA-rj5c-58rq-j5g5) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0 (GHSA-rww4-4w9c-7733) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0 (GHSA-vv7q-7jx5-f767) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0 (PYSEC-2026-1364) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0 (PYSEC-2026-1365) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0 (PYSEC-2026-2474) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0 (PYSEC-2026-2475) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0 (PYSEC-2026-2476) dependency_analyzer · 95%
medium
Vulnerable dependency: fastmcp@2.0 (PYSEC-2026-338) dependency_analyzer · 95%
info
pyproject.toml metadata manifest_parser · 100%
info
Tool: sympy_symbols manifest_parser · 90%
info
Tool: sympy_symbol manifest_parser · 90%
info
Tool: sympy_sympify manifest_parser · 90%
info
Tool: sympy_simplify manifest_parser · 90%
info
Tool: sympy_trigsimp manifest_parser · 90%
info
Tool: sympy_ratsimp manifest_parser · 90%
info
Tool: sympy_powsimp manifest_parser · 90%
info
Tool: sympy_factor manifest_parser · 90%
info
Tool: sympy_expand manifest_parser · 90%
info
Tool: sympy_expand_trig manifest_parser · 90%
info
Tool: sympy_expand_log manifest_parser · 90%
info
Tool: sympy_together manifest_parser · 90%
info
Tool: sympy_apart manifest_parser · 90%
info
Tool: sympy_cancel manifest_parser · 90%
info
Tool: sympy_solve manifest_parser · 90%
info
Tool: sympy_solveset manifest_parser · 90%
info
Tool: sympy_nsolve manifest_parser · 90%
info
Tool: sympy_diff manifest_parser · 90%
info
Tool: sympy_integrate manifest_parser · 90%
info
Tool: sympy_limit manifest_parser · 90%
info
Tool: sympy_series manifest_parser · 90%
info
Tool: sympy_sum manifest_parser · 90%
info
Tool: sympy_product manifest_parser · 90%
info
Tool: sympy_summation manifest_parser · 90%
info
Tool: sympy_product_expr manifest_parser · 90%
info
Tool: sympy_derivative manifest_parser · 90%
info
Tool: sympy_integral manifest_parser · 90%
info
Tool: sympy_matrix manifest_parser · 90%
info
Tool: sympy_matrix_add manifest_parser · 90%
info
Tool: sympy_matrix_multiply manifest_parser · 90%
info
Tool: sympy_matrix_inverse manifest_parser · 90%
info
Tool: sympy_matrix_determinant manifest_parser · 90%
info
Tool: sympy_matrix_transpose manifest_parser · 90%
info
Tool: sympy_matrix_eigenvals manifest_parser · 90%
info
Tool: sympy_asin manifest_parser · 90%
info
Tool: sympy_matrix_eigenvects manifest_parser · 90%
info
Tool: sympy_eye manifest_parser · 90%
info
Tool: sympy_zeros manifest_parser · 90%
info
Tool: sympy_ones manifest_parser · 90%
info
Tool: sympy_diag manifest_parser · 90%
info
Tool: sympy_latex manifest_parser · 90%
info
Tool: sympy_python_code manifest_parser · 90%
info
Tool: sympy_mathml manifest_parser · 90%
info
Tool: sympy_str manifest_parser · 90%
info
Tool: sympy_repr_expr manifest_parser · 90%
info
Tool: sympy_interval manifest_parser · 90%
info
Tool: sympy_finite_set manifest_parser · 90%
info
Tool: sympy_union manifest_parser · 90%
info
Tool: sympy_intersection manifest_parser · 90%
info
Tool: sympy_complement manifest_parser · 90%
info
Tool: sympy_evaluate manifest_parser · 90%
info
Tool: sympy_n manifest_parser · 90%
info
Tool: sympy_evalf manifest_parser · 90%
info
Tool: sympy_exp manifest_parser · 90%
info
Tool: sympy_log manifest_parser · 90%
info
Tool: sympy_log_base manifest_parser · 90%
info
Tool: sympy_sin manifest_parser · 90%
info
Tool: sympy_cos manifest_parser · 90%
info
Tool: sympy_tan manifest_parser · 90%
info
Tool: sympy_sinh manifest_parser · 90%
info
Tool: sympy_cosh manifest_parser · 90%
info
Tool: sympy_tanh manifest_parser · 90%
info
Tool: sympy_acos manifest_parser · 90%
info
Tool: sympy_atan manifest_parser · 90%
info
Tool: sympy_sqrt manifest_parser · 90%
info
Tool: sympy_cbrt manifest_parser · 90%
info
Tool: sympy_root manifest_parser · 90%
info
Tool: sympy_floor manifest_parser · 90%
info
Tool: sympy_ceiling manifest_parser · 90%
info
Tool: sympy_abs manifest_parser · 90%
info
Tool: sympy_factorial manifest_parser · 90%
info
Tool: sympy_binomial manifest_parser · 90%
info
Tool: sympy_gamma manifest_parser · 90%
info
Tool: sympy_zeta manifest_parser · 90%
info
Tool: sympy_erf manifest_parser · 90%
info
Tool: sympy_dirichlet_eta manifest_parser · 90%
info
Tool: sympy_polylog manifest_parser · 90%
info
Tool: sympy_fibonacci manifest_parser · 90%
info
Tool: sympy_lucas manifest_parser · 90%
info
Tool: sympy_catalan manifest_parser · 90%
info
Tool: sympy_isprime manifest_parser · 90%
info
Tool: sympy_prime manifest_parser · 90%
info
Tool: sympy_nextprime manifest_parser · 90%
info
Tool: sympy_prevprime manifest_parser · 90%
info
Tool: sympy_totient manifest_parser · 90%
info
Tool: sympy_divisors manifest_parser · 90%
info
Tool: sympy_gcd manifest_parser · 90%
info
Tool: sympy_lcm manifest_parser · 90%
info
Tool: sympy_factorint manifest_parser · 90%
info
Tool: sympy_poly manifest_parser · 90%
info
Tool: sympy_degree manifest_parser · 90%
info
Tool: sympy_roots manifest_parser · 90%
info
Tool: sympy_coeff manifest_parser · 90%
info
Tool: sympy_subs manifest_parser · 90%
info
Tool: sympy_atoms manifest_parser · 90%
info
Tool: sympy_free_symbols manifest_parser · 90%
info
Tool: sympy_args manifest_parser · 90%
info
Tool: sympy_func manifest_parser · 90%
info
Tool: sympy_expr_type manifest_parser · 90%
info
Tool: sympy_eq manifest_parser · 90%
info
Tool: sympy_ne manifest_parser · 90%
info
Tool: sympy_lt manifest_parser · 90%
info
Tool: sympy_le manifest_parser · 90%
info
Tool: sympy_gt manifest_parser · 90%
info
Tool: sympy_ge manifest_parser · 90%
info
Tool: sympy_And manifest_parser · 90%
info
Tool: sympy_Or manifest_parser · 90%
info
Tool: sympy_Not manifest_parser · 90%
info
Tool: sympy_Xor manifest_parser · 90%
info
Tool: sympy_Nand manifest_parser · 90%
info
Tool: sympy_Nor manifest_parser · 90%
info
Tool: sympy_Implies manifest_parser · 90%
info
Tool: sympy_satisfiable manifest_parser · 90%
info
Tool: sympy_Point manifest_parser · 90%
info
Tool: sympy_Point3D manifest_parser · 90%
info
Tool: sympy_Line manifest_parser · 90%
info
Tool: sympy_Circle manifest_parser · 90%
info
Tool: sympy_checkodesol manifest_parser · 90%
info
Tool: sympy_Triangle manifest_parser · 90%
info
Tool: sympy_Polygon manifest_parser · 90%
info
Tool: sympy_perfect_power manifest_parser · 90%
info
Tool: sympy_is_square manifest_parser · 90%
info
Tool: sympy_integer manifest_parser · 90%
info
Tool: sympy_float manifest_parser · 90%
info
Tool: sympy_rational manifest_parser · 90%
info
Tool: sympy_conjugate manifest_parser · 90%
info
Tool: sympy_im manifest_parser · 90%
info
Tool: sympy_re manifest_parser · 90%
info
Tool: sympy_arg manifest_parser · 90%
info
Tool: sympy_piecewise manifest_parser · 90%
info
Tool: sympy_fresnelc manifest_parser · 90%
info
Tool: sympy_fresnels manifest_parser · 90%
info
Tool: sympy_diohyp manifest_parser · 90%
info
Tool: sympy_dsolve manifest_parser · 90%
info
Tool: sympy_Range manifest_parser · 90%
info
Tool: sympy_classify_ode manifest_parser · 90%
info
Tool: sympy_complexes manifest_parser · 90%
info
Tool: sympy_reals manifest_parser · 90%
info
Tool: sympy_integers manifest_parser · 90%
info
Tool: sympy_naturals manifest_parser · 90%
info
Tool: sympy_naturals0 manifest_parser · 90%
info
Tool: sympy_emptyset manifest_parser · 90%
info
Tool: sympy_universalset manifest_parser · 90%
info
Tool: sympy_randMatrix manifest_parser · 90%
info
Tool: sympy_Wild manifest_parser · 90%
info
Tool: sympy_WildFunction manifest_parser · 90%
info
Tool: sympy_match manifest_parser · 90%
info
Tool: sympy_replace manifest_parser · 90%
info
Tool: sympy_xreplace manifest_parser · 90%
info
Tool: sympy_nsimplify manifest_parser · 90%
info
Tool: sympy_radsimp manifest_parser · 90%
info
Tool: sympy_rationalize manifest_parser · 90%
info
Tool: sympy_count_ops manifest_parser · 90%
info
Tool: sympy_symbols_create manifest_parser · 90%
info
Tool: sympy_Identity manifest_parser · 90%
info
Tool: sympy_matrix_rank manifest_parser · 90%
info
Tool: sympy_matrix_nullspace manifest_parser · 90%
info
Tool: sympy_matrix_LU manifest_parser · 90%
info
Tool: sympy_expand_complex manifest_parser · 90%
info
Tool: sympy_as_real_imag manifest_parser · 90%
info
Tool: sympy_as_numer_denom manifest_parser · 90%
info
Tool: sympy_groebner manifest_parser · 90%
info
Tool: sympy_horner manifest_parser · 90%
info
Tool: sympy_divisor_sigma manifest_parser · 90%
info
Tool: sympy_primepi manifest_parser · 90%
info
Tool: sympy_symbolic_power manifest_parser · 90%
info
Tool: sympy_symbolic_mul manifest_parser · 90%
info
Tool: sympy_symbolic_add manifest_parser · 90%
info
Tool: sympy_finiteset manifest_parser · 90%
info
Tool: sympy_product_set manifest_parser · 90%
info
Tool: sympy_image_set manifest_parser · 90%
info
Sandbox failed to start for output poisoning scan output_poisoning · 100%
info
No dependency files found for SBOM generation sbom_generator · 100%
medium
No build provenance detected (SLSA L0) slsa_assessor · 90%