View as Markdown
Eppo icon

Eppo ACTION

Get Experiment Results

Retrieve full details and analysis results for a single experiment, including outcome, winning variant key, key takeaways, and per-metric results. Use this when the user asks about experiment performance, results, or analysis for a specific experiment. Use List Experiments first to find the numeric experimentId — Eppo uses integer IDs for experiment lookups. Set allowDeleted to true to include soft-deleted experiments in the response. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Eppo account once, then configure and run Get Experiment Results from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "eppo-get-experiment-results",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    eppo: { authProvisionId: "apn_xxxxxxx" },
    experimentId: 10,
    withCalculatedMetrics: true,
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Get Experiment Results inputs
Property Type Description
experimentId Experiment ID integer
The numeric ID of the experiment. Use List Experiments to discover experiment IDs.
Required
withCalculatedMetrics With Calculated Metrics boolean
Whether to include calculated metrics in the response
Optional
withFullCupedData With Full Cuped Data boolean
Whether to include full Cuped data in the response
Optional
allowDeleted Allow Deleted boolean
Set to true to include soft-deleted experiments in the response.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
eppo-get-experiment-results
Version
0.0.2
App
Eppo
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes