Random MCP
Generate random values and probability distribution samples.
От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноТолько чтение
Что умеет
- Random Int: Generate one or more integer results from the selected probability distribution. distribution defaults to uniform when omitted. uniform: {min,max}, with both endpoints inclusive. bernoulli
- Random Double: Generate one or more floating-point results from the selected probability distribution. distribution defaults to uniform when omitted. uniform: {min,max}, using the half-open interval [
- Random Choice: Select strings from choices. Optional weights select proportionally to nonnegative weights. Set with_replacement to false to prevent the same choice position from being selected more th
Какие данные видит
Нужен ли аккаунт
Не нужен: сервер работает без входа
Generate random values and probability distribution samples.
Список инструментов сервера (3)
Технические названия из tools/list. Нужны только разработчикам.
| random_int | Generate one or more integer results from the selected probability distribution. distribution defaults to uniform when omitted. uniform: {min,max}, with both endpoints inclusive. bernoulli: {probability}. binomial: {trials,probability}. poisson: {lambda}. count is the number of values to generate and defaults to 1. |
| random_double | Generate one or more floating-point results from the selected probability distribution. distribution defaults to uniform when omitted. uniform: {min,max}, using the half-open interval [min,max). normal: {mean,standard_deviation}. lognormal: {mu,sigma}, where log(X) is normal(mu,sigma); overflow is clamped to the largest finite double. exponential: {rate}. count is the number of values to generate and defaults to 1. |
| random_choice | Select strings from choices. Optional weights select proportionally to nonnegative weights. Set with_replacement to false to prevent the same choice position from being selected more than once. |