Occam
Server Details
Finds the simplest equation consistent with your data. SINDy and PySR symbolic regression via MCP.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Each tool has a clearly distinct purpose: feature_request handles capability requests, pysr_run does algebraic symbolic regression, sindy_run handles differential equation discovery, and pysr_uncertainty provides bootstrap confidence intervals for pysr results. The descriptions explicitly cross-reference each other to prevent confusion.
The compute tools follow a consistent 'method_run' pattern (pysr_run, sindy_run), and pysr_uncertainty shares the pysr prefix. feature_request deviates from this pattern but is a distinctly different kind of tool, so the naming is largely predictable with only minor inconsistency.
Four tools is a well-scoped set for a symbolic regression server. Each tool fills a necessary role: two core methods, one uncertainty analysis follow-up, and one feedback channel. No redundancy or bloat.
The domain covers algebraic regression, dynamical system identification, and post-hoc uncertainty quantification for pysr. A minor gap is the lack of a sindy_uncertainty tool, but the feature_request mechanism compensates for missing capabilities, and the core workflows are fully supported.
Available Tools
4 toolsfeature_requestAInspect
Request a feature that Occam doesn't support yet.
Use this when you need a capability that Occam doesn't currently
offer. Requests are logged and used to prioritize development.
Rate limit: 5 requests/hour per IP, 50/hour global — stricter than
the compute tools' 10/hour to prevent log flooding. Descriptions
longer than 500 characters are truncated.
| Name | Required | Description | Default |
|---|---|---|---|
| description | Yes | A short description of the feature you need. Examples: 'LaTeX output for equations', 'support for ODE constraints', 'GPU-accelerated search', 'larger dataset limits'. Helps prioritize development. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | Yes | |
| message | Yes | |
| description | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description provides significant behavioral context beyond the sparse annotations. It discloses that requests are logged and used for prioritization, implying a write side effect. It also details rate limits (5/hour per IP, 50/hour global) and the 500-character truncation rule, which are concrete constraints not derivable from annotations. This goes well beyond what structured fields offer.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is tight and front-loaded, leading with the purpose and then providing essential constraints. Every sentence adds value (usage condition, logging, rate limits, truncation). It uses clear line breaks for readability without fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter tool with an output schema, the description fully covers use case, side effects, limitations, and rate limits. The parameters are well-documented, and the behavior is transparent. No critical information is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description covers 100% of the single parameter, including examples and purpose. The tool description adds the truncation limit, which is also parameter-relevant. Since the schema already does the heavy lifting, the extra note earns a score above baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function with a specific verb and resource: "Request a feature that Occam doesn't support yet." It distinguishes itself from the sibling compute tools (pysr_run, etc.) by being focused on feature requests rather than scientific computation. The action is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use the tool: "Use this when you need a capability that Occam doesn't currently offer." While it doesn't name alternative tools or exclusions, the context is clear given the unrelated siblings. It also adds practical constraints like rate limits and truncation behavior, which guide usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pysr_runARead-onlyInspect
Evolutionary Symbolic Regression (PySR).
Discovers algebraic equations y = f(x1, x2, ...) from feature/target
data. Returns a Pareto front ranked by the complexity/accuracy
tradeoff. Slower than SINDy (10-60s); searches often terminate early
on convergence. For differential equations from time series, use
sindy_run instead.
Pricing: free tier up to 100 rows × 8 features, 60s timeout. Beyond
that, $0.25 + $0.03 per 100 extra rows + $0.01 per extra feature
squared, timeout up to 300s (5 min), via x402 (USDC on Base) or
MPP/Stripe. MPP/Stripe adds a flat $0.35 per-transaction fee (Stripe
processing), so the MPP challenge amount in a `payment_required`
response is $0.35 higher than the x402 amount for the same base
price; x402 gets the lower rate. Omit `payment` for free-tier
requests; paid requests without a valid credential receive a
`payment_required` result with pricing and accepted schemes. Full
pricing: occam://pricing
Advisory limits: jobs over 50,000 rows or 20 features are accepted
but may not converge; response carries a top-level `warning`.
Operators: fixed supported set only — custom operators (e.g.
'inv(x) = 1/x') are rejected. Unary: sin, cos, tan, exp, log, log2,
log10, sqrt, abs, sinh, cosh, tanh. Binary: +, -, *, /, ^.
See also prompt `supported_operators`.
Loss metric: `loss` (in `pareto_front[].loss` and `best_loss`) is
mean squared error between model prediction and `y` on the full
training set — not RMSE, and not normalized by Var(y). A threshold
appropriate for one dataset scales with y's magnitude, so set
`loss_threshold` with that in mind (e.g. for y values near 1.0,
1e-6 is a tight fit; for y near 1000, the equivalent is 1.0).
Early termination: set `loss_threshold` to stop at your noise floor.
The server also stops when the search stalls (<1% improvement in the
last third of the budget); disable with `stall_detection=false`.
Response `stop_reason` is one of: loss_threshold, stall, timeout,
natural.
If `feature_names` is supplied, its length must equal the number of
columns in `X`; a mismatch is rejected with a validation error.
Follow-up: call `pysr_uncertainty` with a chosen expression and the
same dataset for bootstrap confidence intervals on its fit constants
and optional prediction bands.
Rate limit: 10 requests/hour per IP, 200/hour global, max queue
depth 20 (shared with sindy_run and pysr_uncertainty).
Response (success) includes `pareto_front[]` (each with `complexity`,
`loss`, `expression`, `expression_latex`), `best_expression`,
`best_expression_latex`, `best_loss`, `best_complexity`, `stop_reason`,
`elapsed_seconds`, `queue_seconds` (>0 = server saturated; use as
backoff signal), optional `warning`, optional `_meta` (MPP receipt).
Full response and payment-required schemas: occam://tool-schemas
Example request:
X=[[0.0], [1.0], [2.0], [3.0]], y=[1.0, 3.0, 5.0, 7.0],
feature_names=["x"], max_complexity=10, timeout_seconds=15
Policy: occam://privacy-policy — Citation: occam://citation-info
| Name | Required | Description | Default |
|---|---|---|---|
| X | Yes | 2D array of input features. Each row is an observation, each column is a feature. Free tier: 100 rows, 8 features. Paid tier: up to 50,000 rows, 20 features. | |
| y | Yes | Target values, one per row of X. | |
| payment | No | Payment credential. Accepts either a JSON object or a JSON-encoded string (FastMCP's transport pre-parses strings whose field annotation is non-bare-`str` into objects, so the object form is canonical; the string form is accepted for legacy callers). Required when the dataset exceeds the free tier (100 rows, 8 variables). Omit for free-tier requests. For x402: {"transaction":"0x...","network":"...","priceToken":"..."}. For MPP/Stripe: {"challenge":{...},"payload":"..."}. For prepaid API key: {"scheme":"prepaid","api_key":"occ_live_...","request_id":"<optional uuid>"}. | |
| populations | No | Number of evolutionary populations for the search. Default 15, max 20. | |
| feature_names | No | Names for each variable/feature column. Defaults to x0, x1, ... | |
| loss_threshold | No | Optional early-stop threshold on the best loss found. If set, the search terminates as soon as any Pareto-front member reaches a loss at or below this value, even if the timeout has not been reached. Useful when you know your noise floor. Default: None (no user threshold; the search runs until the stall detector or timeout). | |
| max_complexity | No | Maximum expression tree size. Higher allows more complex expressions. Default 20, max 25. | |
| stall_detection | No | When true (default), the server stops the search early if the best loss has not improved by more than 1% during the last third of the time budget. This reclaims compute once the search has converged. Set to false only if you want the search to run for the full timeout regardless of progress. | |
| timeout_seconds | No | Wall clock time limit in seconds. Free tier: max 60. Paid tier: max 300 (5 minutes). Default 60. | |
| unary_operators | No | Allowed unary operators, drawn from the fixed supported set: sin, cos, tan, exp, log, log2, log10, sqrt, abs, sinh, cosh, tanh. Custom operators (e.g. 'inv(x) = 1/x') are NOT supported — only the names listed are accepted. Default: sin, cos, exp, log, sqrt. Pass [] for none. | |
| binary_operators | No | Allowed binary operators, drawn from the fixed supported set: +, -, *, /, ^. Custom operators are NOT supported. Default: +, -, *, /. Pass [] for none. |
Output Schema
| Name | Required | Description |
|---|---|---|
| warning | No | |
| best_loss | No | |
| stop_reason | No | |
| pareto_front | No | |
| queue_seconds | No | |
| best_complexity | No | |
| best_expression | No | |
| elapsed_seconds | No | |
| best_expression_latex | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true and destructiveHint=false, and the description adds substantial behavioral context beyond that: early-stall termination with stop_reason values, loss metric definition (MSE not RMSE), feature_names length validation, server saturation signals (queue_seconds), and payment-related response behavior. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long but highly structured with clear sections (purpose, pricing, limits, operators, loss, early termination, follow-up, rate limits, response). It opens with the core purpose and front-loads critical constraints. Each paragraph serves a distinct function, and no content is redundant or promotional. For an 11-parameter tool with complex pricing and operational behavior, this length is appropriate.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (11 parameters, multi-tier pricing, payment schemes, rate limits, large-job warnings, output structures), the description is exhaustive. It covers success response fields, payment_required schema references, example request, and points to full schemas. It anticipates edge cases like feature_names length mismatch and non-convergence for large inputs, making it complete for an agent to select and invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Although schema coverage is 100%, the description adds meaningful semantics: explains how to interpret loss_threshold across different y magnitudes, details stall_detection behavior, describes the payment parameter formats and omission for free tier, and clarifies operator restrictions (custom operators rejected). This value exceeds what the schema alone provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Discovers algebraic equations y = f(x1, x2, ...) from feature/target data.' It clearly distinguishes from siblings by explicitly directing differential-equation tasks to sindy_run and mentions pysr_uncertainty as a follow-up. This leaves no ambiguity about what the tool does and how it differs from alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit when-to-use guidance ('for differential equations from time series, use sindy_run instead'), defines free vs paid tier constraints, and states rate limits (10/hour per IP, 200/hour global). It also clarifies when to omit payment and what happens with paid requests without valid credentials, giving the agent full decision support.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pysr_uncertaintyARead-onlyInspect
Bootstrap confidence intervals for the numeric constants of a frozen expression, plus optional prediction bands on an x-grid.
Typical flow: call pysr_run, pick an expression from the response
(best_expression or a pareto_front entry), pass it back here with
the same dataset to get CIs on its fit constants.
Returns frequentist bootstrap confidence intervals, not Bayesian
credible intervals — posterior inference over expression structures
is an open research problem. This tool freezes the expression
chosen by the caller and bootstraps only its numeric constants;
uncertainty about *which* expression is correct is not quantified.
Bootstrap semantics:
- If y_sigma is supplied, uses parametric bootstrap
(y_b = y + Normal(0, y_sigma)). CI reflects user-stated
measurement noise.
- Otherwise uses residual bootstrap: fit once, resample residuals.
CI reflects estimated-from-residuals noise.
Only Float constants in the expression become free parameters.
Integers stay structural (the 2 in x**2 is a function-class choice,
not a fit constant). Expressions with no Float constants
(e.g. "x + y") will be rejected with a validation error.
Expression grammar: the `expression` string is parsed by sympy.
Accepted operators are the same set pysr_run emits: unary `sin`,
`cos`, `tan`, `exp`, `log`, `log2`, `log10`, `sqrt`, `abs`, `sinh`,
`cosh`, `tanh`; binary `+`, `-`, `*`, `/`, `^` (or `**`). Whitespace
and parenthesization are free. Every free symbol in the expression
must correspond to an entry in `feature_names` — an unrecognised
symbol is silently treated as a fresh sympy Symbol and the fit will
fail downstream rather than reject early. Parse failures (syntax
errors, malformed operators) surface as tool errors.
If `feature_names` is supplied, its length must equal the number of
columns in `X`; a mismatch is rejected with a validation error.
Pricing: always free, regardless of dataset size. This tool has no
`payment` parameter and is never subject to the x402/Stripe gate.
Large bootstrap jobs still count against the shared rate limit
below, so budget `n_resamples` accordingly.
Rate limit: 10 requests/hour per IP, 200/hour global, max queue
depth 20 (shared with sindy_run and pysr_run).
| Name | Required | Description | Default |
|---|---|---|---|
| X | Yes | 2D array of input features. Each row is an observation, each column is a feature. Free tier: 100 rows, 8 features. Paid tier: up to 50,000 rows, 20 features. | |
| y | Yes | Target values, one per row of X. | |
| alpha | No | Significance level. 0.05 → 95%% CI. Default 0.05. | |
| x_grid | No | Optional 2D grid of feature values at which to report a prediction band. Must have the same number of columns as X. Omit to skip prediction-band computation. | |
| y_sigma | No | Optional per-point measurement standard deviations, or a single scalar applied to all points. When supplied, the helper uses parametric bootstrap (y_b = y + Normal(0, y_sigma)); otherwise it uses residual bootstrap. Supplying y_sigma also improves the initial weighted fit. | |
| expression | Yes | The expression to bootstrap, as returned by pysr_run (`best_expression` or a `pareto_front[i].expression`). Only numeric Float constants are treated as free parameters — integers in the expression (e.g. the 2 in x**2) stay structural. | |
| n_resamples | No | Number of bootstrap resamples. Higher = tighter CIs, more compute. Default 100. | |
| feature_names | No | Names for each variable/feature column. Defaults to x0, x1, ... |
Output Schema
| Name | Required | Description |
|---|---|---|
| note | Yes | |
| alpha | Yes | |
| coefficients | Yes | |
| prediction_ci | No | |
| bootstrap_method | Yes | |
| n_requested_resamples | Yes | |
| n_successful_resamples | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations only declare readOnlyHint=true and destructiveHint=false, but the description adds extensive behavioral detail: parametric vs residual bootstrap semantics, treatment of Float vs Integer constants, sympy parsing behavior, silent handling of unrecognized symbols, validation rules, and rate limits. This far exceeds what annotations provide and helps the agent predict tool behavior accurately.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is detailed but well-structured with clear sections (Typical flow, Bootstrap semantics, Expression grammar, Pricing, Rate limit). Every sentence provides necessary information without fluff. The front-loaded summary gives immediate clarity, and the logical progression makes it easy for an agent to extract key facts.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 8 parameters, an output schema, and annotations, this description covers all necessary contextual aspects: purpose, usage flow, bootstrap methodology, parameter semantics, edge cases, pricing, and rate limits. It leaves no important gap for an agent deciding whether and how to invoke this tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Although schema coverage is 100%, the description adds critical meaning not present in the schema: y_sigma triggers parametric bootstrap, x_grid is for prediction bands, n_resamples trade-off, and the crucial rule that only Float constants are free parameters while integers stay structural. The expression grammar and parsing details are essential for correct invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a precise verb+resource statement: 'Bootstrap confidence intervals for the numeric constants of a frozen expression, plus optional prediction bands on an x-grid.' It clearly distinguishes from siblings by explaining the typical flow from pysr_run and noting that it does not perform posterior inference over expression structures.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit when-to-use context: 'Typical flow: call pysr_run, pick an expression from the response... pass it back here with the same dataset.' It also states exclusions (expressions with no Float constants are rejected) and clarifies limitations (uncertainty about which expression is correct is not quantified). This gives clear guidance on when this tool is appropriate versus alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sindy_runARead-onlyIdempotentInspect
Sparse Identification of Nonlinear Dynamics (SINDy).
Recovers governing differential equations (dx/dt = f(x)) from time
series data. Returns human-readable sparse expressions. Fast (seconds).
For algebraic y = f(x) relationships without time structure, use
pysr_run instead.
Pricing: free tier up to 100 rows and 8 variables. Beyond that,
$0.05 + $0.01 per 100 extra rows + $0.01 per extra variable squared,
via x402 (USDC on Base) or MPP/Stripe. MPP/Stripe adds a flat $0.35
per-transaction fee (Stripe processing), so the MPP challenge amount
in a `payment_required` response is $0.35 higher than the x402 amount
for the same base price; x402 gets the lower rate. Omit `payment`
for free-tier requests; paid requests without a valid credential
receive a `payment_required` result with pricing and accepted schemes.
Full pricing table as structured JSON: occam://pricing
Advisory limits: jobs over 500,000 rows or 50 variables are accepted
but may not converge within the time budget; the response carries a
top-level `warning` the agent should surface and treat as tentative.
If `feature_names` is supplied, its length must equal the number of
data columns; a mismatch is rejected with a validation error.
Rate limit: 10 requests/hour per IP, 200/hour global, max queue
depth 20 (shared with pysr_run and pysr_uncertainty).
Response (success) includes `equations[]` (each with `variable`,
`equation`, `expression`, `expression_latex`, `r2`), `library_terms`,
`nonzero_terms`, `elapsed_seconds`, `canonical_match` (dict with
`system`, `form`, `variable_map`, `parameter_map`, `confidence` if
the discovered system matches one of Lorenz / Lotka-Volterra /
Van der Pol / Duffing; `null` otherwise), optional `warning`,
optional `_meta` (MPP receipt on paid calls). Full response and
payment-required schemas: occam://tool-schemas
Example request:
data=[[1.0, 0.0], [0.95, -0.31], [0.81, -0.59]], t=[0.0, 0.1, 0.2],
feature_names=["x", "y"], poly_degree=2, threshold=0.1
Policy: occam://privacy-policy — Citation: occam://citation-info
| Name | Required | Description | Default |
|---|---|---|---|
| t | Yes | Timestamps corresponding to each row of data. Length must match row count. | |
| data | Yes | 2D array of time series data. Each row is a timestep, each column is a state variable. Free tier: 100 rows, 8 variables. Paid tier: up to 500,000 rows, 50 variables. | |
| payment | No | Payment credential. Accepts either a JSON object or a JSON-encoded string (FastMCP's transport pre-parses strings whose field annotation is non-bare-`str` into objects, so the object form is canonical; the string form is accepted for legacy callers). Required when the dataset exceeds the free tier (100 rows, 8 variables). Omit for free-tier requests. For x402: {"transaction":"0x...","network":"...","priceToken":"..."}. For MPP/Stripe: {"challenge":{...},"payload":"..."}. For prepaid API key: {"scheme":"prepaid","api_key":"occ_live_...","request_id":"<optional uuid>"}. | |
| max_iter | No | Maximum STLSQ optimizer iterations. Default 20. | |
| threshold | No | STLSQ sparsity threshold. Higher values produce sparser equations. Default 0.1. | |
| poly_degree | No | Polynomial library degree for SINDy candidate functions. Default 2. | |
| feature_names | No | Names for each variable/feature column. Defaults to x0, x1, ... |
Output Schema
| Name | Required | Description |
|---|---|---|
| warning | No | |
| equations | No | |
| library_terms | No | |
| nonzero_terms | No | |
| canonical_match | No | |
| elapsed_seconds | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations (readOnlyHint, idempotentHint), the description discloses significant behavioral traits: convergence warnings for large jobs, feature_names validation, pricing responses, canonical_match behavior, and rate limits. This adds rich context beyond what annotations provide, with no contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long but well-structured, starting with the core purpose and then providing necessary operational details. Every sentence contributes useful information, though the pricing and rate limit details could potentially be condensed or linked out, making it slightly verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (payment, rate limits, response schemas), the description is remarkably complete. It covers purpose, differentiation, pricing, limitations, validation, examples, and points to detailed schemas and policies, leaving little ambiguous for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already has 100% coverage for parameters, so the baseline is 3. The description adds extra value by explaining the feature_names length validation, an example request, and free-tier row/variable limits that directly relate to parameter usage, elevating it above baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Recovers governing differential equations (dx/dt = f(x)) from time series data.' It also distinguishes from siblings by explicitly directing users to pysr_run for algebraic relationships without time structure, which is a specific verb+resource statement.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly provides when-to-use context: 'For algebraic y = f(x) relationships without time structure, use pysr_run instead.' Additionally, it gives clear guidance on free tier limits, payment requirements, and rate limits, which are crucial for correct usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
- Changed
pysr_run2 fields changed- changed
Input schema / properties / payment / anyOfPrevious value: -[ - { - "type": "string" - }, - { - "type": "null" - } -]New value: +[ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "string" + }, + { + "type": "null" + } +] - changed
Input schema / properties / payment / descriptionPrevious value: -"Payment credential as a JSON string. Required when the dataset exceeds the free tier (100 rows, 8 variables). Omit for free-tier requests. For x402: {\"transaction\":\"0x...\",\"network\":\"...\",\"priceToken\":\"...\"}. For MPP/Stripe: {\"challenge\":{...},\"payload\":\"...\"}."New value: +"Payment credential. Accepts either a JSON object or a JSON-encoded string (FastMCP's transport pre-parses strings whose field annotation is non-bare-`str` into objects, so the object form is canonical; the string form is accepted for legacy callers). Required when the dataset exceeds the free tier (100 rows, 8 variables). Omit for free-tier requests. For x402: {\"transaction\":\"0x...\",\"network\":\"...\",\"priceToken\":\"...\"}. For MPP/Stripe: {\"challenge\":{...},\"payload\":\"...\"}. For prepaid API key: {\"scheme\":\"prepaid\",\"api_key\":\"occ_live_...\",\"request_id\":\"<optional uuid>\"}."
- Changed
sindy_run2 fields changed- changed
Input schema / properties / payment / anyOfPrevious value: -[ - { - "type": "string" - }, - { - "type": "null" - } -]New value: +[ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "string" + }, + { + "type": "null" + } +] - changed
Input schema / properties / payment / descriptionPrevious value: -"Payment credential as a JSON string. Required when the dataset exceeds the free tier (100 rows, 8 variables). Omit for free-tier requests. For x402: {\"transaction\":\"0x...\",\"network\":\"...\",\"priceToken\":\"...\"}. For MPP/Stripe: {\"challenge\":{...},\"payload\":\"...\"}."New value: +"Payment credential. Accepts either a JSON object or a JSON-encoded string (FastMCP's transport pre-parses strings whose field annotation is non-bare-`str` into objects, so the object form is canonical; the string form is accepted for legacy callers). Required when the dataset exceeds the free tier (100 rows, 8 variables). Omit for free-tier requests. For x402: {\"transaction\":\"0x...\",\"network\":\"...\",\"priceToken\":\"...\"}. For MPP/Stripe: {\"challenge\":{...},\"payload\":\"...\"}. For prepaid API key: {\"scheme\":\"prepaid\",\"api_key\":\"occ_live_...\",\"request_id\":\"<optional uuid>\"}."
4 tool updates
- Changed
feature_request1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "additionalProperties": false, + "properties": { + "description": { + "title": "Description", + "type": "string" + }, + "message": { + "title": "Message", + "type": "string" + }, + "ok": { + "title": "Ok", + "type": "boolean" + } + }, + "required": [ + "ok", + "message", + "description" + ], + "title": "FeatureRequestResult", + "type": "object" +}
- Changed
pysr_run1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "$defs": { + "PySRParetoEntry": { + "additionalProperties": true, + "properties": { + "complexity": { + "title": "Complexity", + "type": "integer" + }, + "expression": { + "title": "Expression", + "type": "string" + }, + "expression_latex": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Expression Latex" + }, + "loss": { + "title": "Loss", + "type": "number" + } + }, + "required": [ + "complexity", + "loss", + "expression", + "expression_latex" + ], + "title": "PySRParetoEntry", + "type": "object" + } + }, + "additionalProperties": true, + "properties": { + "best_complexity": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Best Complexity" + }, + "best_expression": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Best Expression" + }, + "best_expression_latex": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Best Expression Latex" + }, + "best_loss": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Best Loss" + }, + "elapsed_seconds": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Elapsed Seconds" + }, + "pareto_front": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/PySRParetoEntry" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Pareto Front" + }, + "queue_seconds": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Queue Seconds" + }, + "stop_reason": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Stop Reason" + }, + "warning": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Warning" + } + }, + "title": "PySRRunResult", + "type": "object" +}
- Changed
pysr_uncertainty1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "$defs": { + "UncertaintyCoefficient": { + "additionalProperties": true, + "properties": { + "ci": { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "title": "Ci", + "type": "array" + }, + "estimate": { + "title": "Estimate", + "type": "number" + }, + "initial": { + "title": "Initial", + "type": "number" + }, + "name": { + "title": "Name", + "type": "string" + } + }, + "required": [ + "name", + "initial", + "estimate", + "ci" + ], + "title": "UncertaintyCoefficient", + "type": "object" + }, + "UncertaintyPredictionPoint": { + "additionalProperties": true, + "properties": { + "ci": { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "title": "Ci", + "type": "array" + }, + "estimate": { + "title": "Estimate", + "type": "number" + }, + "x": { + "items": { + "type": "number" + }, + "title": "X", + "type": "array" + } + }, + "required": [ + "x", + "estimate", + "ci" + ], + "title": "UncertaintyPredictionPoint", + "type": "object" + } + }, + "additionalProperties": true, + "description": "Always a success shape — pysr_uncertainty is never paid.", + "properties": { + "alpha": { + "title": "Alpha", + "type": "number" + }, + "bootstrap_method": { + "title": "Bootstrap Method", + "type": "string" + }, + "coefficients": { + "items": { + "$ref": "#/$defs/UncertaintyCoefficient" + }, + "title": "Coefficients", + "type": "array" + }, + "n_requested_resamples": { + "title": "N Requested Resamples", + "type": "integer" + }, + "n_successful_resamples": { + "title": "N Successful Resamples", + "type": "integer" + }, + "note": { + "title": "Note", + "type": "string" + }, + "prediction_ci": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/UncertaintyPredictionPoint" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Prediction Ci" + } + }, + "required": [ + "coefficients", + "n_requested_resamples", + "n_successful_resamples", + "bootstrap_method", + "alpha", + "note" + ], + "title": "PySRUncertaintyResult", + "type": "object" +}
- Changed
sindy_run1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "$defs": { + "CanonicalMatch": { + "additionalProperties": true, + "properties": { + "confidence": { + "title": "Confidence", + "type": "number" + }, + "form": { + "title": "Form", + "type": "string" + }, + "parameter_map": { + "additionalProperties": { + "type": "number" + }, + "title": "Parameter Map", + "type": "object" + }, + "system": { + "title": "System", + "type": "string" + }, + "variable_map": { + "additionalProperties": { + "type": "string" + }, + "title": "Variable Map", + "type": "object" + } + }, + "required": [ + "system", + "form", + "variable_map", + "parameter_map", + "confidence" + ], + "title": "CanonicalMatch", + "type": "object" + }, + "SindyEquation": { + "additionalProperties": true, + "properties": { + "equation": { + "title": "Equation", + "type": "string" + }, + "expression": { + "title": "Expression", + "type": "string" + }, + "expression_latex": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Expression Latex" + }, + "r2": { + "title": "R2", + "type": "number" + }, + "variable": { + "title": "Variable", + "type": "string" + } + }, + "required": [ + "variable", + "equation", + "expression", + "expression_latex", + "r2" + ], + "title": "SindyEquation", + "type": "object" + } + }, + "additionalProperties": true, + "properties": { + "canonical_match": { + "anyOf": [ + { + "$ref": "#/$defs/CanonicalMatch" + }, + { + "type": "null" + } + ], + "default": null + }, + "elapsed_seconds": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Elapsed Seconds" + }, + "equations": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/SindyEquation" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Equations" + }, + "library_terms": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Library Terms" + }, + "nonzero_terms": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Nonzero Terms" + }, + "warning": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Warning" + } + }, + "title": "SindyRunResult", + "type": "object" +}
1 tool update
- Added
pysr_uncertainty
1 tool update
- Changed
pysr_run2 fields changed- changed
Input schema / properties / binary_operators / descriptionPrevious value: -"Allowed binary operators. Options: +, -, *, /, ^. Default: +, -, *, /."New value: +"Allowed binary operators, drawn from the fixed supported set: +, -, *, /, ^. Custom operators are NOT supported. Default: +, -, *, /. Pass [] for none." - changed
Input schema / properties / unary_operators / descriptionPrevious value: -"Allowed unary operators. Options: sin, cos, tan, exp, log, log2, log10, sqrt, abs, sinh, cosh, tanh. Default: sin, cos, exp, log, sqrt."New value: +"Allowed unary operators, drawn from the fixed supported set: sin, cos, tan, exp, log, log2, log10, sqrt, abs, sinh, cosh, tanh. Custom operators (e.g. 'inv(x) = 1/x') are NOT supported — only the names listed are accepted. Default: sin, cos, exp, log, sqrt. Pass [] for none."
2 tool updates
- Changed
pysr_run4 fields changed- changed
Input schema / properties / X / descriptionPrevious value: -"2D array of input features. Each row is an observation, each column is a feature. Max 1,000 rows, 10 features."New value: +"2D array of input features. Each row is an observation, each column is a feature. Free tier: 100 rows, 8 features. Paid tier: up to 50,000 rows, 20 features." - added
Input schema / properties / paymentAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Payment credential as a JSON string. Required when the dataset exceeds the free tier (100 rows, 8 variables). Omit for free-tier requests. For x402: {\"transaction\":\"0x...\",\"network\":\"...\",\"priceToken\":\"...\"}. For MPP/Stripe: {\"challenge\":{...},\"payload\":\"...\"}.", + "title": "Payment" +} - changed
Input schema / properties / timeout_seconds / descriptionPrevious value: -"Wall clock time limit in seconds. Default 60, max 60."New value: +"Wall clock time limit in seconds. Free tier: max 60. Paid tier: max 300 (5 minutes). Default 60." - changed
Input schema / properties / timeout_seconds / maximumPrevious value: -60New value: +300
- Changed
sindy_run2 fields changed- changed
Input schema / properties / data / descriptionPrevious value: -"2D array of time series data. Each row is a timestep, each column is a state variable. Max 10,000 rows, 20 variables."New value: +"2D array of time series data. Each row is a timestep, each column is a state variable. Free tier: 100 rows, 8 variables. Paid tier: up to 500,000 rows, 50 variables." - added
Input schema / properties / paymentAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Payment credential as a JSON string. Required when the dataset exceeds the free tier (100 rows, 8 variables). Omit for free-tier requests. For x402: {\"transaction\":\"0x...\",\"network\":\"...\",\"priceToken\":\"...\"}. For MPP/Stripe: {\"challenge\":{...},\"payload\":\"...\"}.", + "title": "Payment" +}
1 tool update
- Changed
pysr_run2 fields changed- added
Input schema / properties / loss_thresholdAdded value: +{ + "anyOf": [ + { + "exclusiveMinimum": 0, + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Optional early-stop threshold on the best loss found. If set, the search terminates as soon as any Pareto-front member reaches a loss at or below this value, even if the timeout has not been reached. Useful when you know your noise floor. Default: None (no user threshold; the search runs until the stall detector or timeout).", + "title": "Loss Threshold" +} - added
Input schema / properties / stall_detectionAdded value: +{ + "default": true, + "description": "When true (default), the server stops the search early if the best loss has not improved by more than 1% during the last third of the time budget. This reclaims compute once the search has converged. Set to false only if you want the search to run for the full timeout regardless of progress.", + "title": "Stall Detection", + "type": "boolean" +}
6 tool updates
- Added
feature_request - Removed
feature.request - Added
pysr_run - Removed
pysr.run - Added
sindy_run - Removed
sindy.run
6 tool updates
- Added
feature.request - Added
pysr.run - Removed
request_feature - Removed
run_pysr_tool - Removed
run_sindy_tool - Added
sindy.run
3 tool updates
- First observed
request_feature - First observed
run_pysr_tool - First observed
run_sindy_tool
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Find novel, statistically validated patterns in tabular data — hypothesis-free.
Newton MCP — wraps the Newton math solver API (free, no auth)
- chemistryOAuthcom.covasyn
Deterministic MCP for AI agents: drug discovery, ADMET, docking, LNPs, DoE, retrosynthesis, ICH M7
One MCP tool for verified AI-agent outcomes with success-only charging.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceProvides a token-efficient exact math engine for AI agents, enabling computation of derivatives, integrals, equations, and optimized Python/NumPy code via a single MCP tool.4MIT
- AlicenseAqualityDmaintenanceMCP server that gives small LLMs verified symbolic-math & logic tools.61Apache 2.0
- AlicenseAqualityAmaintenanceAirtight math tools an AI uses over MCP — 3.7M-theorem search, PSLQ constant ID, OEIS, real Lean kernel checks, applicability checklists. No LLM inside, no API key.1212Apache 2.0
- AlicenseNot gradedqualityDmaintenanceEconometrics MCP server for regression, causal inference, time series, panel data, machine learning, and broader statistical analysis workflows.10MIT