← Back to search

io.github.daedalus/mcp-numpy

daedalus Scanned 19d ago

An MCP server that exposes NumPy functionality

B
88 / 100

Versions

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

Tools 72

np_array
annotations: none low

Create a NumPy array from a list. Args: data: A Python list containing the array elements. dtype: The data type of the array (default: "float64"). Common values: "int32", "int64", "float32", "float64", "complex128". Returns: A list representation of the NumPy array. Example: >>> np_array([1, 2, 3, 4, 5]) [1.0, 2.0, 3.0, 4.0, 5.0] >>> np_array([[1, 2], [3, 4]], dtype="int32") [[1, 2], [3, 4]]

data list dtype str
np_zeros
annotations: none low

Create an array of zeros. Args: shape: An integer for 1D shape, or a list of integers for multi-dimensional. dtype: The data type of the array (default: "float64"). Returns: A list representation of the zeros array. Example: >>> np_zeros(5) [0.0, 0.0, 0.0, 0.0, 0.0] >>> np_zeros([2, 3]) [[0.0, 0.0, 0.0], [0.0, 0.0, 0.0]]

dtype str shape string
np_ones
annotations: none low

Create an array of ones. Args: shape: An integer for 1D shape, or a list of integers for multi-dimensional. dtype: The data type of the array (default: "float64"). Returns: A list representation of the ones array. Example: >>> np_ones(5) [1.0, 1.0, 1.0, 1.0, 1.0] >>> np_ones([2, 3]) [[1.0, 1.0, 1.0], [1.0, 1.0, 1.0]]

dtype str shape string
np_full
annotations: none low

Create an array filled with a constant value. Args: shape: An integer for 1D shape, or a list of integers for multi-dimensional. fill_value: The value to fill the array with. dtype: The data type of the array (default: "float64"). Returns: A list representation of the filled array. Example: >>> np_full(5, 7.0) [7.0, 7.0, 7.0, 7.0, 7.0] >>> np_full([2, 3], 5) [[5.0, 5.0, 5.0], [5.0, 5.0, 5.0]]

dtype str shape string fill_value float
np_arange
annotations: none low

Create an array with evenly spaced values within a given interval. Args: start: Start of interval. stop: End of interval (exclusive). step: Spacing between values (default: 1). dtype: The data type of the array (default: "float64"). Returns: A list representation of the array. Example: >>> np_arange(0, 5) [0.0, 1.0, 2.0, 3.0, 4.0] >>> np_arange(0, 10, 2) [0.0, 2.0, 4.0, 6.0, 8.0]

step float stop float dtype str start float
np_linspace
annotations: none low

Create an array with evenly spaced numbers over a specified interval. Args: start: Start of interval. stop: End of interval. num: Number of samples to generate (default: 50). dtype: The data type of the array (default: "float64"). Returns: A list representation of the array. Example: >>> np_linspace(0, 1, 5) [0.0, 0.25, 0.5, 0.75, 1.0]

num int stop float dtype str start float
np_eye
annotations: none low

Return a 2D identity array. Args: N: Number of rows. M: Number of columns (default: None, equals N). dtype: The data type of the array (default: "float64"). Returns: A list representation of the identity matrix. Example: >>> np_eye(3) [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]] >>> np_eye(2, 3) [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0]]

m string n int dtype str
np_diag
annotations: none low

Create a diagonal array or extract the diagonal of an array. Args: k: If a list, creates diagonal array from it. If an int, extracts that diagonal. dtype: The data type of the array (default: "float64"). Returns: A list representation of the diagonal array. Example: >>> np_diag([1, 2, 3]) [[1.0, 0.0, 0.0], [0.0, 2.0, 0.0], [0.0, 0.0, 3.0]] >>> np_diag(1) [[1.0]]

k string dtype str
np_reshape
annotations: none low

Give a new shape to an array without changing its data. Args: array: The input array to reshape. newshape: The new shape (int or list of ints). Returns: A list representation of the reshaped array. Example: >>> np_reshape([1, 2, 3, 4], [2, 2]) [[1.0, 2.0], [3.0, 4.0]]

array list newshape string
np_transpose
annotations: none low

Reverse or permute the axes of an array. Args: array: The input array. axes: By default, reverse the axes. Otherwise, permute the axes. Returns: A list representation of the transposed array. Example: >>> np_transpose([[1, 2], [3, 4]]) [[1.0, 3.0], [2.0, 4.0]]

axes string array list
np_concatenate
annotations: none low

Join a sequence of arrays along an existing axis. Args: arrays: A sequence of arrays to concatenate. axis: The axis along which to concatenate (default: 0). Returns: A list representation of the concatenated array. Example: >>> np_concatenate([[1, 2], [3, 4]], [[5, 6]]) [[1.0, 2.0], [3.0, 4.0], [5.0, 6.0]]

axis int arrays list
np_split
annotations: none low

Split an array into multiple sub-arrays. Args: array: The array to split. indices_or_sections: If an int, the number of equal sections. If a list, the indices at which to split. axis: The axis along which to split (default: 0). Returns: A list of sub-arrays. Example: >>> np_split([1, 2, 3, 4, 5], 2) [[1.0, 2.0], [3.0, 4.0, 5.0]]

axis int array list indices_or_sections string
np_tile
annotations: none low

Construct an array by repeating the input array the given number of times. Args: array: The input array to tile. reps: The number of repetitions along each axis. Returns: A list representation of the tiled array. Example: >>> np_tile([1, 2], 3) [1.0, 2.0, 1.0, 2.0, 1.0, 2.0]

reps string array list
np_repeat
annotations: none low

Repeat elements of an array. Args: array: The input array. repeats: The number of repetitions for each element. axis: The axis along which to repeat values (default: flattens). Returns: A list representation of the repeated array. Example: >>> np_repeat([1, 2], 3) [1.0, 1.0, 1.0, 2.0, 2.0, 2.0]

axis string array list repeats int
np_squeeze
annotations: none low

Remove single-dimensional entries from the shape of an array. Args: array: The input array. axis: Selects a subset of the length-1 dimensions (default: all). Returns: A list representation of the squeezed array. Example: >>> np_squeeze([[[1], [2], [3]]]) [1.0, 2.0, 3.0]

axis string array list
np_flatten
annotations: none low

Return a flattened copy of the array. Args: array: The input array. Returns: A flat list representation. Example: >>> np_flatten([[1, 2], [3, 4]]) [1.0, 2.0, 3.0, 4.0]

array list
np_sum
annotations: none low

Sum of array elements over given axis(es). Args: array: The input array. axis: Axis along which to sum (default: None, sums all). dtype: The type of the returned array (default: "float64"). Returns: The sum as a float or list. Example: >>> np_sum([1, 2, 3, 4]) 10.0 >>> np_sum([[1, 2], [3, 4]], axis=1) [3.0, 7.0]

axis string array list dtype str
np_mean
annotations: none low

Compute the arithmetic mean along the specified axis. Args: array: The input array. axis: Axis along which to compute mean (default: None, mean of all). Returns: The mean as a float or list. Example: >>> np_mean([1, 2, 3, 4]) 2.5 >>> np_mean([[1, 2], [3, 4]], axis=0) [2.0, 3.0]

axis string array list
np_std
annotations: none low

Compute the standard deviation along the specified axis. Args: array: The input array. axis: Axis along which to compute std (default: None, std of all). ddof: Delta degrees of freedom for normalization (default: 0). Returns: The std as a float or list. Example: >>> np_std([1, 2, 3, 4, 5]) 1.4142135623730951

axis string ddof int array list
np_var
annotations: none low

Compute the variance along the specified axis. Args: array: The input array. axis: Axis along which to compute variance (default: None, variance of all). ddof: Delta degrees of freedom for normalization (default: 0). Returns: The variance as a float or list. Example: >>> np_var([1, 2, 3, 4, 5]) 2.0

axis string ddof int array list
np_min
annotations: none low

Return the minimum of an array or minimum along an axis. Args: array: The input array. axis: Axis along which to find minimum (default: None, min of all). Returns: The minimum as a float or list. Example: >>> np_min([3, 1, 4, 1, 5]) 1.0

axis string array list
np_max
annotations: none low

Return the maximum of an array or maximum along an axis. Args: array: The input array. axis: Axis along which to find maximum (default: None, max of all). Returns: The maximum as a float or list. Example: >>> np_max([3, 1, 4, 1, 5]) 5.0

axis string array list
np_argmin
annotations: none low

Return the indices of the minimum values along an axis. Args: array: The input array. axis: Axis along which to find argmin (default: None, flattened). Returns: The index of the minimum as an int or list. Example: >>> np_argmin([3, 1, 4, 1, 5]) 1

axis string array list
np_argmax
annotations: none low

Return the indices of the maximum values along an axis. Args: array: The input array. axis: Axis along which to find argmax (default: None, flattened). Returns: The index of the maximum as an int or list. Example: >>> np_argmax([3, 1, 4, 1, 5]) 4

axis string array list
np_dot
annotations: none low

Compute the dot product of two arrays. Args: a: First input array. b: Second input array. Returns: The dot product as a float or list. Example: >>> np_dot([1, 2], [3, 4]) 11.0

a list b list
np_matmul
annotations: none low

Matrix product of two arrays. Args: a: First input array (2D). b: Second input array (2D). Returns: The matrix product. Example: >>> np_matmul([[1, 2], [3, 4]], [[5, 6], [7, 8]]) [[19.0, 22.0], [43.0, 50.0]]

a list b list
np_cross
annotations: none low

Compute the cross product of two arrays. Args: a: First input array. b: Second input array. Returns: The cross product. Example: >>> np_cross([1, 2, 3], [4, 5, 6]) [-3.0, 6.0, -3.0]

a list b list
np_trace
annotations: none low

Return the sum along the main diagonal of the array. Args: array: The input array (must be at least 2D). offset: The diagonal offset (default: 0, main diagonal). Returns: The trace as a float. Example: >>> np_trace([[1, 2], [3, 4]]) 5.0

array list offset int
np_cumsum
annotations: none low

Return the cumulative sum of the array along a given axis. Args: array: The input array. axis: The axis along which to compute cumsum (default: None, flattened). Returns: The cumulative sum. Example: >>> np_cumsum([1, 2, 3]) [1.0, 3.0, 6.0]

axis string array list
np_cumprod
annotations: none low

Return the cumulative product of the array along a given axis. Args: array: The input array. axis: The axis along which to compute cumprod (default: None, flattened). Returns: The cumulative product. Example: >>> np_cumprod([1, 2, 3]) [1.0, 2.0, 6.0]

axis string array list
np_diff
annotations: none low

Calculate the n-th discrete difference along the given axis. Args: array: The input array. n: The number of times values are differenced (default: 1). axis: The axis along which to difference (default: 0). Returns: The n-th difference. Example: >>> np_diff([1, 4, 9, 16]) [3.0, 5.0, 7.0]

n int axis int array list
np_inv
annotations: none low

Compute the (multiplicative) inverse of a matrix. Args: array: The input matrix (must be square and invertible). Returns: The inverse matrix. Example: >>> np_inv([[1, 2], [3, 4]]) [[-2.0, 1.0], [1.5, -0.5]]

array list
np_det
annotations: none low

Compute the determinant of an array. Args: array: The input matrix (must be square). Returns: The determinant as a float. Example: >>> np_det([[1, 2], [3, 4]]) -2.0

array list
np_eig
annotations: none low

Compute the eigenvalues and eigenvectors of a square array. Args: array: The input square matrix. Returns: A dict with 'eigenvalues' and 'eigenvectors'. Example: >>> np_eig([[1, 0], [0, 1]]) {'eigenvalues': [1.0, 1.0], 'eigenvectors': [[1.0, 0.0], [0.0, 1.0]]}

array list
np_svd
annotations: none low

Singular Value Decomposition. Args: array: The input array. full_matrices: Whether to compute full SVD (default: False). Returns: A dict with 'U', 'singular_values', and 'Vh'. Example: >>> result = np_svd([[1, 2], [3, 4]]) >>> result['singular_values'] [5.464985704219029, 0.36596618969622733]

array list full_matrices bool
np_solve
annotations: none low

Solve a linear matrix equation, or system of linear equations. Args: a: Coefficient matrix. b: Ordinate or "dependent variable" values. Returns: Solution to the system. Example: >>> np_solve([[1, 1], [1, 2]], [3, 5]) [1.0, 2.0]

a list b list
np_linalg_norm
annotations: none low

Matrix or vector norm. Args: array: The input array. ord: The order of the norm (default: "fro" for matrices, "2" for vectors). Common values: "fro", "nuc", "inf", "-inf", "0", "1", "2". Returns: The norm as a float. Example: >>> np_linalg_norm([3, 4]) 5.0

ord str array list
np_rand
annotations: none low

Random values in a given shape. Args: shape: The shape of the output (int or list of ints). Returns: Array of random values. Example: >>> len(np_rand(5)) 5 >>> len(np_rand([2, 3])) 2

shape string
np_randn
annotations: none low

Return a sample (or samples) from the "standard normal" distribution. Args: shape: The shape of the output (int or list of ints). Returns: Array of random normal values. Example: >>> len(np_randn(5)) 5

shape string
np_randint
annotations: none low

Return random integers from low (inclusive) to high (exclusive). Args: low: Lowest integers to be drawn (inclusive). If high is None, this is the upper bound. high: Upper bound (exclusive). If None, low=0 and this becomes high. size: Output shape (int or tuple of ints). Returns: Array of random integers. Example: >>> np_randint(0, 10, 5) [3, 5, 7, 2, 9]

low int high string size string
np_random_choice
annotations: none low

Generates a random sample from a given array. Args: a: 1-D array-like object from which to sample. size: Output shape (default: None, returns single value). replace: Whether sampling with replacement (default: True). Returns: Random sample(s). Example: >>> np_random_choice([1, 2, 3, 4, 5], size=3) [2, 5, 1]

a list size string replace bool
np_shuffle
annotations: none low

Modify a sequence in-place by shuffling its contents. Args: array: The array to shuffle. Returns: The shuffled array. Example: >>> np_shuffle([1, 2, 3, 4, 5]) [3, 1, 5, 2, 4]

array list
np_percentile
annotations: none low

Compute the q-th percentile of the array elements. Args: array: The input array. q: Percentile(s) to compute (0-100). Can be a float or list. Returns: The percentile value(s). Example: >>> np_percentile([1, 2, 3, 4, 5], 50) 3.0 >>> np_percentile([1, 2, 3, 4, 5], [25, 50, 75]) [1.5, 3.0, 4.5]

q string array list
np_quantile
annotations: none low

Compute the q-th quantile of the array elements. Args: array: The input array. q: Quantile(s) to compute (0-1). Can be a float or list. Returns: The quantile value(s). Example: >>> np_quantile([1, 2, 3, 4, 5], 0.5) 3.0

q string array list
np_histogram
annotations: none low

Compute the histogram of a set of data. Args: array: Input data. bins: Number of bins or bin edges (default: 10). range: The lower and upper range of the bins (default: [min, max]). Returns: A dict with 'histogram' (counts) and 'bin_edges'. Example: >>> result = np_histogram([1, 1, 2, 2, 3, 3, 4, 4]) >>> result['histogram'] [2, 2, 2, 2]

bins string array list range string
np_correlate
annotations: none low

Cross-correlation of two 1-dimensional sequences. Args: a: First input sequence. b: Second input sequence. mode: Computation mode (default: "full"). Options: "full", "same", "valid". Returns: The cross-correlation array. Example: >>> np_correlate([1, 2, 3], [0, 1, 0.5]) [0.5, 2.0, 4.0, 3.0, 0.0]

a list b list mode str
np_corrcoef
annotations: none low

Return Pearson product-moment correlation coefficients. Args: array: A 1-D or 2-D array containing multiple variables and observations. rowvar: If True, each row represents a variable (default: True). Returns: The correlation coefficient matrix. Example: >>> np_corrcoef([[1, 2, 3], [1, 1, 1]]) [[1.0, 0.0], [0.0, nan]]

array list rowvar bool
np_add
annotations: none low

Element-wise addition of two arrays. Args: a: First input array. b: Second input array. Returns: The element-wise sum. Example: >>> np_add([1, 2, 3], [4, 5, 6]) [5.0, 7.0, 9.0]

a list b list
np_subtract
annotations: none low

Element-wise subtraction of two arrays. Args: a: First input array. b: Second input array. Returns: The element-wise difference. Example: >>> np_subtract([4, 5, 6], [1, 2, 3]) [3.0, 3.0, 3.0]

a list b list
np_multiply
annotations: none low

Element-wise multiplication of two arrays. Args: a: First input array. b: Second input array. Returns: The element-wise product. Example: >>> np_multiply([1, 2, 3], [4, 5, 6]) [4.0, 10.0, 18.0]

a list b list
np_divide
annotations: none low

Element-wise division of two arrays. Args: a: First input array (dividend). b: Second input array (divisor). Returns: The element-wise quotient. Example: >>> np_divide([6, 12, 18], [2, 3, 6]) [3.0, 4.0, 3.0]

a list b list
np_power
annotations: none low

Element-wise exponentiation of array elements. Args: a: The base array. b: The exponent (can be array or scalar). Returns: The element-wise result. Example: >>> np_power([1, 2, 3], 2) [1.0, 4.0, 9.0]

a list b string
np_mod
annotations: none low

Element-wise modulo of two arrays. Args: a: First input array (dividend). b: Second input array (divisor). Returns: The element-wise remainder. Example: >>> np_mod([7, 8, 9], [3, 4, 5]) [1.0, 0.0, 4.0]

a list b list
np_sqrt
annotations: none low

Return the non-negative square root of an array element-wise. Args: array: The input array. Returns: The square root of each element. Example: >>> np_sqrt([1, 4, 9, 16]) [1.0, 2.0, 3.0, 4.0]

array list
np_abs
annotations: none low

Calculate the absolute value of array elements. Args: array: The input array. Returns: The absolute values. Example: >>> np_abs([-1, -2, 3]) [1.0, 2.0, 3.0]

array list
np_exp
annotations: none low

Calculate the exponential of all elements in the array. Args: array: The input array. Returns: The exponential of each element. Example: >>> np_exp([0, 1, 2]) [1.0, 2.718281828459045, 7.38905609893065]

array list
np_log
annotations: none low

Natural logarithm, element-wise. Args: array: The input array. Returns: The natural logarithm of each element. Example: >>> np_log([1, np.e, np.e**2]) [0.0, 1.0, 2.0]

array list
np_log10
annotations: none low

Base-10 logarithm, element-wise. Args: array: The input array. Returns: The base-10 logarithm of each element. Example: >>> np_log10([1, 10, 100]) [0.0, 1.0, 2.0]

array list
np_sin
annotations: none low

Trigonometric sine, element-wise. Args: array: The input array (in radians). Returns: The sine of each element. Example: >>> np_sin([0, np.pi/2, np.pi]) [0.0, 1.0, 1.2246467991473532e-16]

array list
np_cos
annotations: none low

Trigonometric cosine, element-wise. Args: array: The input array (in radians). Returns: The cosine of each element. Example: >>> np_cos([0, np.pi/2, np.pi]) [1.0, 6.123233995736766e-17, -1.0]

array list
np_tan
annotations: none low

Trigonometric tangent, element-wise. Args: array: The input array (in radians). Returns: The tangent of each element. Example: >>> np_tan([0, np.pi/4, np.pi]) [0.0, 0.9999999999999999, -1.2246467991473532e-16]

array list
np_arcsin
annotations: none low

Inverse sine, element-wise. Args: array: The input array (must be in [-1, 1]). Returns: The inverse sine of each element (in radians). Example: >>> np_arcsin([0, 0.5, 1]) [0.0, 0.5235987755982988, 1.5707963267948966]

array list
np_arccos
annotations: none low

Inverse cosine, element-wise. Args: array: The input array (must be in [-1, 1]). Returns: The inverse cosine of each element (in radians). Example: >>> np_arccos([1, 0.5, 0]) [0.0, 1.0471975511965976, 1.5707963267948966]

array list
np_arctan
annotations: none low

Inverse tangent, element-wise. Args: array: The input array. Returns: The inverse tangent of each element (in radians). Example: >>> np_arctan([0, 1, np.inf]) [0.0, 0.7853981633974483, 1.5707963267948966]

array list
np_sinh
annotations: none low

Hyperbolic sine, element-wise. Args: array: The input array. Returns: The hyperbolic sine of each element. Example: >>> np_sinh([0, 1]) [0.0, 1.1752011936438014]

array list
np_cosh
annotations: none low

Hyperbolic cosine, element-wise. Args: array: The input array. Returns: The hyperbolic cosine of each element. Example: >>> np_cosh([0, 1]) [1.0, 1.5430806348152437]

array list
np_tanh
annotations: none low

Hyperbolic tangent, element-wise. Args: array: The input array. Returns: The hyperbolic tangent of each element. Example: >>> np_tanh([0, 1]) [0.0, 0.7615941559557649]

array list
np_shape
annotations: none low

Return the shape of an array. Args: array: The input array. Returns: The shape as a list of integers. Example: >>> np_shape([[1, 2, 3], [4, 5, 6]]) [2, 3]

array list
np_ndim
annotations: none low

Return the number of dimensions of an array. Args: array: The input array. Returns: The number of dimensions. Example: >>> np_ndim([[1, 2, 3], [4, 5, 6]]) 2

array list
np_size
annotations: none low

Return the total number of elements in an array. Args: array: The input array. Returns: The total number of elements. Example: >>> np_size([[1, 2, 3], [4, 5, 6]]) 6

array list
np_dtype
annotations: none low

Return the dtype of an array. Args: array: The input array. Returns: The dtype as a string. Example: >>> np_dtype([1, 2, 3]) 'float64' >>> np_dtype([1, 2, 3], dtype="int32") 'int32'

array list
npastype
annotations: none low

Copy of the array, cast to a specified type. Args: array: The input array. dtype: The target dtype. Returns: The array with the specified dtype. Example: >>> npastype([1.5, 2.7, 3.9], "int32") [1, 2, 3]

array list dtype str

Permissions 0

No permissions indexed yet.

Scan Findings 149

low
Tool 'np_diag' has no annotations annotation_checker · 100%
low
Tool 'np_reshape' has no annotations annotation_checker · 100%
low
Tool 'np_array' has no annotations annotation_checker · 100%
low
Tool 'np_zeros' has no annotations annotation_checker · 100%
low
Tool 'np_ones' has no annotations annotation_checker · 100%
low
Tool 'np_full' has no annotations annotation_checker · 100%
low
Tool 'np_arange' has no annotations annotation_checker · 100%
low
Tool 'np_linspace' has no annotations annotation_checker · 100%
low
Tool 'np_eye' has no annotations annotation_checker · 100%
low
Tool 'np_transpose' has no annotations annotation_checker · 100%
low
Tool 'np_concatenate' has no annotations annotation_checker · 100%
low
Tool 'np_split' has no annotations annotation_checker · 100%
low
Tool 'np_tile' has no annotations annotation_checker · 100%
low
Tool 'np_repeat' has no annotations annotation_checker · 100%
low
Tool 'np_squeeze' has no annotations annotation_checker · 100%
low
Tool 'np_flatten' has no annotations annotation_checker · 100%
low
Tool 'np_sum' has no annotations annotation_checker · 100%
low
Tool 'np_mean' has no annotations annotation_checker · 100%
low
Tool 'np_std' has no annotations annotation_checker · 100%
low
Tool 'np_var' has no annotations annotation_checker · 100%
low
Tool 'np_min' has no annotations annotation_checker · 100%
low
Tool 'np_max' has no annotations annotation_checker · 100%
low
Tool 'np_argmin' has no annotations annotation_checker · 100%
low
Tool 'np_argmax' has no annotations annotation_checker · 100%
low
Tool 'np_dot' has no annotations annotation_checker · 100%
low
Tool 'np_matmul' has no annotations annotation_checker · 100%
low
Tool 'np_cross' has no annotations annotation_checker · 100%
low
Tool 'np_trace' has no annotations annotation_checker · 100%
low
Tool 'np_cumsum' has no annotations annotation_checker · 100%
low
Tool 'np_cumprod' has no annotations annotation_checker · 100%
low
Tool 'np_diff' has no annotations annotation_checker · 100%
low
Tool 'np_inv' has no annotations annotation_checker · 100%
low
Tool 'np_det' has no annotations annotation_checker · 100%
low
Tool 'np_eig' has no annotations annotation_checker · 100%
low
Tool 'np_svd' has no annotations annotation_checker · 100%
low
Tool 'np_solve' has no annotations annotation_checker · 100%
low
Tool 'np_linalg_norm' has no annotations annotation_checker · 100%
low
Tool 'np_rand' has no annotations annotation_checker · 100%
low
Tool 'np_randn' has no annotations annotation_checker · 100%
low
Tool 'np_randint' has no annotations annotation_checker · 100%
low
Tool 'np_random_choice' has no annotations annotation_checker · 100%
low
Tool 'np_shuffle' has no annotations annotation_checker · 100%
low
Tool 'np_percentile' has no annotations annotation_checker · 100%
low
Tool 'np_quantile' has no annotations annotation_checker · 100%
low
Tool 'np_histogram' has no annotations annotation_checker · 100%
low
Tool 'np_correlate' has no annotations annotation_checker · 100%
low
Tool 'np_corrcoef' has no annotations annotation_checker · 100%
low
Tool 'np_add' has no annotations annotation_checker · 100%
low
Tool 'np_subtract' has no annotations annotation_checker · 100%
low
Tool 'np_multiply' has no annotations annotation_checker · 100%
low
Tool 'np_divide' has no annotations annotation_checker · 100%
low
Tool 'np_power' has no annotations annotation_checker · 100%
low
Tool 'np_mod' has no annotations annotation_checker · 100%
low
Tool 'np_sqrt' has no annotations annotation_checker · 100%
low
Tool 'np_abs' has no annotations annotation_checker · 100%
low
Tool 'np_exp' has no annotations annotation_checker · 100%
low
Tool 'np_log' has no annotations annotation_checker · 100%
low
Tool 'np_log10' has no annotations annotation_checker · 100%
low
Tool 'np_sin' has no annotations annotation_checker · 100%
low
Tool 'np_cos' has no annotations annotation_checker · 100%
low
Tool 'np_tan' has no annotations annotation_checker · 100%
low
Tool 'np_arcsin' has no annotations annotation_checker · 100%
low
Tool 'np_arccos' has no annotations annotation_checker · 100%
low
Tool 'np_arctan' has no annotations annotation_checker · 100%
low
Tool 'np_sinh' has no annotations annotation_checker · 100%
low
Tool 'np_cosh' has no annotations annotation_checker · 100%
low
Tool 'np_tanh' has no annotations annotation_checker · 100%
low
Tool 'np_shape' has no annotations annotation_checker · 100%
low
Tool 'np_ndim' has no annotations annotation_checker · 100%
low
Tool 'np_size' has no annotations annotation_checker · 100%
low
Tool 'np_dtype' has no annotations annotation_checker · 100%
low
Tool 'npastype' has no annotations annotation_checker · 100%
info
Sandbox failed to start for behavioral verification behavioral_verifier · 100%
info
pyproject.toml metadata manifest_parser · 100%
info
Tool: np_array manifest_parser · 90%
info
Tool: np_zeros manifest_parser · 90%
info
Tool: np_ones manifest_parser · 90%
info
Tool: np_full manifest_parser · 90%
info
Tool: np_arange manifest_parser · 90%
info
Tool: np_linspace manifest_parser · 90%
info
Tool: np_eye manifest_parser · 90%
info
Tool: np_diag manifest_parser · 90%
info
Tool: np_reshape manifest_parser · 90%
info
Tool: np_transpose manifest_parser · 90%
info
Tool: np_concatenate manifest_parser · 90%
info
Tool: np_split manifest_parser · 90%
info
Tool: np_tile manifest_parser · 90%
info
Tool: np_repeat manifest_parser · 90%
info
Tool: np_squeeze manifest_parser · 90%
info
Tool: np_flatten manifest_parser · 90%
info
Tool: np_sum manifest_parser · 90%
info
Tool: np_mean manifest_parser · 90%
info
Tool: np_std manifest_parser · 90%
info
Tool: np_shuffle manifest_parser · 90%
info
Tool: np_var manifest_parser · 90%
info
Tool: np_min manifest_parser · 90%
info
Tool: np_max manifest_parser · 90%
info
Tool: np_argmin manifest_parser · 90%
info
Tool: np_argmax manifest_parser · 90%
info
Tool: np_dot manifest_parser · 90%
info
Tool: np_matmul manifest_parser · 90%
info
Tool: np_cross manifest_parser · 90%
info
Tool: np_trace manifest_parser · 90%
info
Tool: np_cumsum manifest_parser · 90%
info
Tool: np_cumprod manifest_parser · 90%
info
Tool: np_diff manifest_parser · 90%
info
Tool: np_inv manifest_parser · 90%
info
Tool: np_det manifest_parser · 90%
info
Tool: np_eig manifest_parser · 90%
info
Tool: np_svd manifest_parser · 90%
info
Tool: np_solve manifest_parser · 90%
info
Tool: np_linalg_norm manifest_parser · 90%
info
Tool: np_rand manifest_parser · 90%
info
Tool: np_randn manifest_parser · 90%
info
Tool: np_randint manifest_parser · 90%
info
Tool: np_random_choice manifest_parser · 90%
info
Tool: np_percentile manifest_parser · 90%
info
Tool: np_quantile manifest_parser · 90%
info
Tool: np_histogram manifest_parser · 90%
info
Tool: np_correlate manifest_parser · 90%
info
Tool: np_corrcoef manifest_parser · 90%
info
Tool: np_add manifest_parser · 90%
info
Tool: np_subtract manifest_parser · 90%
info
Tool: np_multiply manifest_parser · 90%
info
Tool: np_divide manifest_parser · 90%
info
Tool: np_power manifest_parser · 90%
info
Tool: np_mod manifest_parser · 90%
info
Tool: np_sqrt manifest_parser · 90%
info
Tool: np_abs manifest_parser · 90%
info
Tool: np_exp manifest_parser · 90%
info
Tool: np_log manifest_parser · 90%
info
Tool: np_log10 manifest_parser · 90%
info
Tool: np_sin manifest_parser · 90%
info
Tool: np_cos manifest_parser · 90%
info
Tool: np_tan manifest_parser · 90%
info
Tool: np_arcsin manifest_parser · 90%
info
Tool: np_arccos manifest_parser · 90%
info
Tool: np_arctan manifest_parser · 90%
info
Tool: np_sinh manifest_parser · 90%
info
Tool: np_cosh manifest_parser · 90%
info
Tool: np_tanh manifest_parser · 90%
info
Tool: np_shape manifest_parser · 90%
info
Tool: np_ndim manifest_parser · 90%
info
Tool: np_size manifest_parser · 90%
info
Tool: np_dtype manifest_parser · 90%
info
Tool: npastype 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%