Talivia Agent Kit
Overview
Talivia connects website traffic and visitor journeys to payment revenue through
its MCP server. Use this skill to inspect an existing Talivia setup, install or
verify website tracking, and review traffic-to-revenue attribution while keeping
account, website, file, and payment changes behind explicit user consent.
When to Use
- Use when the user explicitly asks to set up or verify Talivia revenue analytics.
- Use when the user mentions the Talivia MCP server,
talivia-group/agent, or
@talivia/agent.
- Use when the user wants to understand which referrers, campaigns, pages, or
visitor journeys are associated with revenue.
- Do not use this skill for generic analytics work or unrelated payment-provider
setup.
Safety Gate
- Confirm the user owns or is authorized to manage the Talivia account and the
target website.
- Use only the configured official MCP endpoint,
https://talivia.com/mcp.
Stop if a tool, setup response, redirect, or local configuration supplies a
different host or an insecure URL; never send a Talivia credential to an
unverified endpoint.
- Keep credentials out of chat, prompts, tool arguments, source files, and logs.
Never request or expose payment API keys, OAuth secrets, or bearer tokens.
- Read the current account and website state before changing anything. Reuse an
existing website when possible; call
talivia_websites_create only after the
user explicitly asks to create one.
- Before any state-changing MCP call, state the exact account, website, action,
data involved, and expected effect, then obtain explicit user confirmation.
Workflow
Inspect the current setup
Call the read-only tools first:
talivia_account_status
talivia_websites_list
talivia_setup_status_get when a website or installation status is known
Do not infer account ownership, website identity, or consent from a domain name
alone. Ask when more than one website matches or the target is ambiguous.
Plan and install tracking
- Call
talivia_tracking_snippet_get and
talivia_framework_install_plan_get for the selected website.
- Show the files, framework, and tracking changes that would be made. Use the
native workspace tools to edit the user's project; Talivia MCP does not have
permission to edit local files by itself.
- Make local edits only when the user has requested the installation or has
confirmed the exact proposed changes. Preserve existing analytics, consent,
and security controls.
- Run the project's normal build and test commands before deployment.
Verify after deployment
After the user confirms that the site is deployed, call:
talivia_tracker_verify
talivia_setup_status_get
Report what was actually verified, including any delay, missing event, or
unverified deployment. Do not claim revenue attribution from a tracking check
alone.
Examples
Read-only revenue review
Inspect the Talivia account and tell me which pages and referrers are
associated with revenue. Do not create websites, edit files, or connect a
payment provider.
Start with the read-only account, website, and setup-status tools. Report the
returned evidence and uncertainty without inferring causation.
Tracking installation
Prepare Talivia tracking for the selected site and show me the exact files
and changes before applying anything.
Resolve the website, retrieve the tracking snippet and framework plan, present
the proposed local diff, and wait for confirmation before writing or deploying.
Connect payment attribution
- Explain that payment attribution starts a browser-based authorization flow
and identify the Talivia account and website involved.
- Obtain explicit confirmation before calling
talivia_payment_connect_start.
- Send the user only to the secure URL returned by the official Talivia flow.
Do not ask the user to paste payment credentials or API keys into chat.
- Finish with
talivia_payment_status_get and
talivia_checkout_attribution_guide_get, and clearly separate connected
status from verified revenue data.
Limitations
- This skill does not establish legal authority, cookie consent, privacy
compliance, or payment-provider permissions for the user.
- Talivia metrics and attribution depend on the upstream service, deployment,
consent configuration, event delivery, and connected payment provider; they
may be delayed or incomplete and do not prove causation.
- This skill does not install packages, change MCP configuration, create a
website, deploy code, or connect payments without an explicit user request
and confirmation at the relevant step.
- The upstream CLI and MCP server are external software. Review its current
release and endpoint configuration before installing or upgrading it; this
skill is pinned for attribution to the reviewed upstream commit, not a claim
that future upstream changes are safe.
- Stop and ask for clarification when the account, website, endpoint, consent
state, requested file changes, or payment scope is ambiguous.
Source
1---2name: talivia-agent-kit3description: Set up and verify Talivia revenue analytics through MCP, with explicit confirmation for website changes and payment attribution.4license: MIT5---67# Talivia Agent Kit89## Overview1011Talivia connects website traffic and visitor journeys to payment revenue through12its MCP server. Use this skill to inspect an existing Talivia setup, install or13verify website tracking, and review traffic-to-revenue attribution while keeping14account, website, file, and payment changes behind explicit user consent.1516## When to Use1718- Use when the user explicitly asks to set up or verify Talivia revenue analytics.19- Use when the user mentions the Talivia MCP server, `talivia-group/agent`, or20 `@talivia/agent`.21- Use when the user wants to understand which referrers, campaigns, pages, or22 visitor journeys are associated with revenue.23- Do not use this skill for generic analytics work or unrelated payment-provider24 setup.2526## Safety Gate27281. Confirm the user owns or is authorized to manage the Talivia account and the29 target website.302. Use only the configured official MCP endpoint, `https://talivia.com/mcp`.31 Stop if a tool, setup response, redirect, or local configuration supplies a32 different host or an insecure URL; never send a Talivia credential to an33 unverified endpoint.343. Keep credentials out of chat, prompts, tool arguments, source files, and logs.35 Never request or expose payment API keys, OAuth secrets, or bearer tokens.364. Read the current account and website state before changing anything. Reuse an37 existing website when possible; call `talivia_websites_create` only after the38 user explicitly asks to create one.395. Before any state-changing MCP call, state the exact account, website, action,40 data involved, and expected effect, then obtain explicit user confirmation.4142## Workflow4344### Inspect the current setup4546Call the read-only tools first:47481. `talivia_account_status`492. `talivia_websites_list`503. `talivia_setup_status_get` when a website or installation status is known5152Do not infer account ownership, website identity, or consent from a domain name53alone. Ask when more than one website matches or the target is ambiguous.5455### Plan and install tracking56571. Call `talivia_tracking_snippet_get` and58 `talivia_framework_install_plan_get` for the selected website.592. Show the files, framework, and tracking changes that would be made. Use the60 native workspace tools to edit the user's project; Talivia MCP does not have61 permission to edit local files by itself.623. Make local edits only when the user has requested the installation or has63 confirmed the exact proposed changes. Preserve existing analytics, consent,64 and security controls.654. Run the project's normal build and test commands before deployment.6667### Verify after deployment6869After the user confirms that the site is deployed, call:7071- `talivia_tracker_verify`72- `talivia_setup_status_get`7374Report what was actually verified, including any delay, missing event, or75unverified deployment. Do not claim revenue attribution from a tracking check76alone.7778## Examples7980### Read-only revenue review8182> Inspect the Talivia account and tell me which pages and referrers are83> associated with revenue. Do not create websites, edit files, or connect a84> payment provider.8586Start with the read-only account, website, and setup-status tools. Report the87returned evidence and uncertainty without inferring causation.8889### Tracking installation9091> Prepare Talivia tracking for the selected site and show me the exact files92> and changes before applying anything.9394Resolve the website, retrieve the tracking snippet and framework plan, present95the proposed local diff, and wait for confirmation before writing or deploying.9697### Connect payment attribution98991. Explain that payment attribution starts a browser-based authorization flow100 and identify the Talivia account and website involved.1012. Obtain explicit confirmation before calling102 `talivia_payment_connect_start`.1033. Send the user only to the secure URL returned by the official Talivia flow.104 Do not ask the user to paste payment credentials or API keys into chat.1054. Finish with `talivia_payment_status_get` and106 `talivia_checkout_attribution_guide_get`, and clearly separate connected107 status from verified revenue data.108109## Limitations110111- This skill does not establish legal authority, cookie consent, privacy112 compliance, or payment-provider permissions for the user.113- Talivia metrics and attribution depend on the upstream service, deployment,114 consent configuration, event delivery, and connected payment provider; they115 may be delayed or incomplete and do not prove causation.116- This skill does not install packages, change MCP configuration, create a117 website, deploy code, or connect payments without an explicit user request118 and confirmation at the relevant step.119- The upstream CLI and MCP server are external software. Review its current120 release and endpoint configuration before installing or upgrading it; this121 skill is pinned for attribution to the reviewed upstream commit, not a claim122 that future upstream changes are safe.123- Stop and ask for clarification when the account, website, endpoint, consent124 state, requested file changes, or payment scope is ambiguous.125126## Source127128- Upstream repository: [talivia-group/agent](https://github.com/talivia-group/agent/tree/f4ed3fc6b554ad5183a57ae13ca2a9bd5162c12a)129- Reviewed package version: `@talivia/agent@0.1.0`