Skip to main content
Glama
vikranthviki

Causal Decision Agent

by vikranthviki

direct_method

Read-only

Estimate a target policy's expected reward by fitting an outcome regression model to logged actions, contexts, and rewards. Use when the outcome model is correctly specified and no unmeasured confounders exist.

Instructions

Direct outcome regression (plug-in Q-model) OPE. Assumptions: Plug-in outcome regression (Q-model) is correctly specified; No unmeasured confounding in the logged data. Pre-conditions: X (context), A (logged action), R (reward) are available to fit the outcome model. Failure modes: Model misspecification bias -- the Q-model extrapolates outside the logged action support -> Prefer the doubly-robust estimator, which is robust to Q-model misspecification. Alternatives: sp.doubly_robust, sp.ips, sp.snips. Typical minimum N: 500.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
AYesA parameter (np.ndarray).
RYesR parameter (np.ndarray).
XYesFeature matrix or covariate DataFrame.
alphaNoSignificance level for confidence intervals and tests.
detailNoPayload depth: 'minimal' (~150 tokens) for sub-step calls where only the point estimate is needed; 'standard' (~1K tokens) for diagnostics + coefficient table; 'agent' (~2K tokens, default) adds violations / next_steps / suggested_functions so the LLM can plan its next call without another round-trip.agent
as_handleNoIf true, cache the fitted result on the server and return result_id + result_uri alongside the JSON payload so a subsequent tools/call can chain without re-running.
data_pathNoAbsolute path or URL to a data file. Supported: .csv / .tsv / .txt (delimited), .parquet / .pq, .feather / .arrow, .xlsx / .xls, .dta (Stata), .json / .jsonl. Schemes: file://, s3://, gs://, https://.
n_actionsNoNumber of actions.
pi_targetYespi_target parameter.
result_idNoOptional handle to a previously-fitted result (returned by an earlier call when as_handle=true). Tools that operate on a fitted object accept this in place of re-supplying data_path + columns.
data_columnsNoOptional column projection. Parquet/Feather/Stata loaders honour this for fast partial reads.
data_sample_nNoOptional uniform random subsample size (seed=0, deterministic) — useful on huge panels.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint=true, so the description does not need to repeat safety. It adds valuable behavioral context: the estimator's dependence on correct Q-model specification, the extrapolation risk outside logged action support, and the recommended alternative under misspecification. It does not contradict the annotations, and the added failure-mode detail goes beyond what structured fields provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear labels (Assumptions, Pre-conditions, Failure modes, Alternatives, Typical minimum N) and is front-loaded with the core purpose. Each section adds useful information, though the density is high and the 'Typical minimum N' could be seen as non-essential. Overall, it is appropriately sized for the tool's complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 12-parameter OPE tool, the description covers the method, assumptions, preconditions, failure modes, alternatives, and sample size guidance. However, it does not explain key parameters like pi_target (the target policy probabilities), n_actions, or how data is mapped to X/A/R, which an agent would need for correct invocation. The output schema exists but is not sufficient to fill these gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, but most parameter descriptions are tautological ('A parameter (np.ndarray).', 'pi_target parameter.'). The tool description compensates by clarifying that X is context, A is logged action, and R is reward, which is meaningful semantic enrichment. However, pi_target and n_actions remain unexplained, so the description does not fully compensate for the weak schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool as 'Direct outcome regression (plug-in Q-model) OPE', which is specific enough for an expert to know it performs off-policy evaluation via a plug-in outcome model. It also names alternatives, distinguishing it from doubly robust, IPS, and SNIPS estimators. However, there is no explicit verb like 'estimate' or 'evaluate', relying on the OPE acronym to convey the action.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states assumptions (correct Q-model specification, no unmeasured confounding), pre-conditions (X, A, R available), and failure modes (model misspecification bias). It directly instructs the agent to prefer the doubly-robust estimator in the failure case and lists alternatives (sp.doubly_robust, sp.ips, sp.snips), giving clear when-to-use and when-not-to-use guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools