Remote MCP endpoint exposing EULER partners, deals, referrals, commissions, incentives and onboarding flows to any MCP-compatible AI client.
43 tools · 18 categories · 29 read / 14 write · OAuth 2.1 (PKCE + DCR)
https://mcp.eulerapp.com/mcphttps://mcp.eulerapp.com/.well-known/oauth-protected-resource
https://mcp.eulerapp.com/.well-known/oauth-authorization-server
list_accounts
List Authorized Accounts
Readcustomer + partner
Returns the customer + partner accounts the user approved during the MCP consent screen. Call this first when you need to resolve a partner by name or when the user has multiple roles. Each entry has: id, type ('customer' | 'partner'), name, company_id, partner_id (null for customer), affiliate_company_name (partner only — the customer company hosting the partnership), and dashboard_url (the canonical EULER web-app URL for this account's role — use this when the user needs to do something MCP doesn't expose, like creating an incentive program; customer accounts point to /dashboard, partner accounts to /partners). To resolve a partner by name, match `type === 'partner'` AND `affiliate_company_name === <target>`; use that entry's `partner_id` for referrals / partner_artifacts / performance / commissions. Response also includes `consent_summary` with `hidden_count` — if non-zero, some user accounts were not authorized in this session; ask the user to disconnect/reconnect to include more rather than guessing. Downstream tools auto-resolve partner_id to its company_id, so you only need to pass partner_id. IF the response includes a `backend_data_issue` field (only ever present when the backend returned zero accounts for a provisioned user), this is a backend data anomaly, NOT a consent problem — do NOT suggest disconnect+reconnect; surface the support_email from that field and offer to continue with other tools (partners, performance, commissions) which read directly from the user's company and may still work. When the user asks to do something this MCP doesn't cover (creating incentives, billing/account settings, adding new partners from scratch), surface the matching account's `dashboard_url` instead of guessing a URL.
message_idstringpartner_directory_search
Search Partner Directory
Readcustomer
Searches EULER's Partner Directory — public-facing partner profiles, tiers, status, custom-fields completeness, iframe analytics, saved filters. Returns directory `profile_id` values that are DIFFERENT from the `partner_id` used by referrals / partner_artifacts / performance / commissions; using a profile_id where partner_id is expected produces `partner_not_in_consent`. To resolve a partner_id from a name, prefer `list_accounts` (match by `affiliate_company_name`) or `partners(action: 'list', filter_name: ...)`. entity_key selects mode: 'partner_directory' is THE workhorse search mode — filters by name, status, tier, type, email, featured, and incomplete ONLY (the `language` and `website` params are NOT applied in this mode, and its results do not include language data). 'partner_history' returns a single profile's change history (requires profile_id) — each entry includes that profile's supported languages and website, and this is the ONLY mode where the `language` / `website` filters apply. To answer 'does partner X serve <language>?': first entity_key='partner_directory' with name='X' to get the profile_id, then entity_key='partner_history' with that profile_id + language='<language>' (total_count > 0 means yes). Directory-WIDE language coverage ('which partners serve Spanish?') cannot be answered by a single filtered search — either check the named partners individually via the history recipe, or tell the user the directory can't be filtered by language yet; NEVER present an unfiltered directory listing as a language-filtered answer. 'partner_filter' applies a named saved filter via `version_description` — only used when the user explicitly references a saved filter name. The `status` enum here filters Directory profile status (Active / Under Review / Awaiting Setup / Rejected / Hidden) — that's distinct from the partner roster's active-vs-pending state. Route generic partner-status / partner-count questions ('how many partners are active?', 'how many active partners do we have?', 'partner status breakdown') to `partners(action: 'summary')`; only use this tool's `status` filter when the user is explicitly asking about the Partner Directory. Filterable by name, status, featured, incomplete, tier, profile_id, type, email (directory mode); language, website, version_description (history / saved-filter modes).
entity_keystring requirednamestringstatusstringfeaturedbooleanincompletebooleantierstringprofile_idstringtypestringemailstringdescstringlanguagestringwebsitestringversion_descriptionstringpageintegerlimitintegermessage_idstringpartners
Query Partners
Readcustomer
Query partners of the user's company (customer-admin view). action='list' searches by name (filter_name='<name>') and returns partner_id values usable in referrals / partner_artifacts / performance / commissions. If the user is asking about a partner where they themselves have an account (they are a partner OF that company), prefer `list_accounts` matched by affiliate_company_name. action='pending' returns partners awaiting approval. action='summary' returns company-wide aggregate metrics broken down by partner status — this is the canonical source for company-level partner-status / partner-count questions like 'how many partners are active?', 'how many active partners do we have?', 'partner status breakdown', 'partner totals'. Generic mentions of partner status refer to the company's partner roster and belong here; route to `partner_directory_search` ONLY when the user explicitly mentions the Partner Directory (which uses a separate profile-status concept). The summary result is stable across a conversation, so call it at most once per conversation when needed. action='tags' lists the company's partner tags (partner groupings) as {id, name} records — feed the returned ids into flows_manage(action:'assign', assign_to:'Partners by Tags', tag_ids:[...]) or invite_partners_to_portal(tags:[...]).
listpendingsummarytagsactionstring requiredfilter_namestringpageintegerlimitintegermessage_idstringpartner_artifacts
Get Partner Artifacts
Readcustomer + partner
Returns artifacts linked to a specific partner. All actions require partner_id. To resolve partner_id, prefer (a) `list_accounts` (when the user has an account with that partner, match by `affiliate_company_name`) or (b) `partners(action: 'list', filter_name: ...)` (customer admin querying their company's partners). IDs from `partner_directory_search` are profile_ids and will be rejected as `partner_not_in_consent`. action='agreements' returns signed agreements; 'tracking_links' returns affiliate links; 'deals' returns the partner's deals (paginated); 'charges' returns charges assigned to the partner (paginated); 'invoices' returns the partner's invoices (paginated).
agreementstracking_linksdealschargesinvoicesactionstring requiredpartner_idstring requiredpageintegerlimitintegermessage_idstringreferrals
Query Referrals
Readcustomer + partner
Query existing referrals / deal-registrations. action='search' (requires os_referral_type) returns a filtered search across the company's referrals (optional partner_id filter, date range, status). action='for_partner' returns referrals submitted by a specific partner (paginated). action='get_form_for_partner' returns the referral-form question schema a partner must fill in — call this before `submit_referral` to discover form_id + questions[]. Each question carries an `answer_field` ('answer_text' | 'multiselect_options') telling you exactly which field to put its answer in (only true multi-select uses multiselect_options; everything else, dropdown included, uses answer_text). The response also includes `question_count` and a `presentation_guidance` string with formatting tips for displaying the questions cleanly to the user — follow it, especially for long forms. action='get_answers' returns the form answers submitted with a specific referral (requires approval_id — obtain it from a prior `search` (POPs / customer-side) or `for_partner` (PAM / partner-side) call; each referral record carries the identifier). action='rejection_reasons' lists the valid rejection reasons for a referral; call it before rejecting via resolve_referral. Partner_id sources: `list_accounts` (the user's own partner roles) or `partners(action: 'list', filter_name: ...)` (customer admin querying their company's partners). IDs from `partner_directory_search` are profile_ids and will be rejected. Use `submit_referral` to actually send a new referral after collecting answers.
searchfor_partnerget_form_for_partnerget_answersrejection_reasonsactionstring requiredpartner_idstringapproval_idstringreferral_idstringstart_datestringend_datestringfilter_statusstringos_referral_typestringpageintegerlimitintegermessage_idstringsubmit_referral
Submit Referral
Writecustomer + partner
Submits a new referral or deal registration on behalf of a partner. TWO caller modes: (A) a PARTNER submitting for one of their OWN partner accounts — resolve partner_id from `list_accounts` (match by `affiliate_company_name`, e.g. 'send a referral to <Partner>' means the user has a partner account with that affiliate_company_name); (B) a CUSTOMER admin submitting on behalf of a partner OF THEIR COMPANY — resolve partner_id from `partners(action: 'list', filter_name: ...)`. Required flow: (1) resolve partner_id (mode A via `list_accounts`, mode B via `partners(action: 'list')`). (2) call `referrals(action: 'get_form_for_partner', partner_id)` to fetch form_id + questions[]. (3) have the user fill in every required question. (4) call this tool with partner_id + form_id + answers (a JSON array of {question_id, answer_text, multiselect_options[]} entries) — place each value in the field its question's `answer_field` indicates (almost always `answer_text`; only true multi-select uses `multiselect_options`). A customer admin may only submit for a partner that belongs to their own company — EULER enforces that scoping server-side (a partner outside your company won't resolve). IDs from `partner_directory_search` are profile_ids, NOT partner_ids — they'll be rejected.
partner_idstring requiredform_idstring requiredanswersarray | string requiredmessage_idstringresolve_referral
Approve or Reject Referral
Writecustomer
Approve or reject a referral a partner submitted. action='approve' creates the referral in your CRM; action='reject' marks it rejected. Rejecting requires a rejection reason when reasons are configured — list them first with referrals(action:'rejection_reasons'). Optionally email the partner about the decision via notify_partner + notification_details. A referral can only be resolved once.
approverejectactionstring requiredreferral_idstring requiredinternal_notestringrejection_reason_idstringnotify_partnerbooleannotification_detailsobjectmessage_idstringget_search_deals
Search Deal by Name
Readcustomer + partner
Look up a specific deal by name. Returns deals whose name matches `deal_name`. REQUIRED: deal_name. partner_id behaviour depends on caller role: partner-role callers MUST pass partner_id (the search is scoped to that partner's deals); customer-role callers MAY pass partner_id to narrow the search to one partner — when omitted, the search covers all the company's deals. Use this for questions like 'find the Acme deal' or 'show me deals named *renewal*'; for generic listings or aggregates use `performance(action: 'overall')` instead.
deal_namestring requiredpartner_idstringmessage_idstringcharges_lookup
Charges Lookup
Readcustomer
Inspect specific charges (for partner-scoped charge lists, use `partner_artifacts(action: 'charges')`). action='for_deal' returns all charges linked to a deal_id (e.g. 'show me what was charged on deal X', 'list charges for deal abc'). action='by_id' returns the full detail of a single charge — amount, commission, partner, date, status (e.g. 'inspect charge xyz', 'why was this charge created'). Customer-only.
for_dealby_idactionstring requireddeal_idstringcharge_idstringmessage_idstringmanage_deals
Create & Update Deals
Writecustomer
Create or update deals attributed to your partners. action='create'/'update' handle one deal; action='create_batch'/'update_batch' handle many at once. Batch operations are scheduled and run in the background — the response confirms how many were queued (schedule_amount) and does not return the rows; confirm results later with get_search_deals rather than resubmitting. Every deal validates its partner against your company; amount must be greater than 0; close_date must be after created_date. Dates are YYYY-MM-DD.
createupdatecreate_batchupdate_batchactionstring requireddeal_idstringpartner_idstringdeal_namestringcrm_idstringamountnumberstagestringcreated_datestringclose_datestringdealsarraymessage_idstringlist_partner_contacts
List Partner Contacts
Readcustomer
Returns the contacts (people) associated with a specific partner — the COMPLETE team roster, including people who never logged into the portal (unlike `partner_users` action='list_users', which returns only the subset with an activated login). Customer-admin view only. Resolve `partner_id` via `partners(action: 'list', filter_name: ...)` or `list_accounts` (match by affiliate_company_name); IDs from `partner_directory_search` are profile_ids and will be rejected. Pair with `create_partner_contact` (to add a new person) and `invite_partners_to_portal` (to grant portal access). Returns `contacts_count` (number) plus `contacts` — a comma-separated string of compact JSON objects, one per contact, each with `id`, `email`, `first_name`, `last_name` (e.g. `{"id":"..","email":"..","first_name":"..","last_name":".."},{..}`). Use the `id` values directly as input to `invite_partners_to_portal`. NOTE: the `contacts` string is NOT wrapped in `[ ]` — wrap it yourself if you need a strict JSON array.
partner_idstring requiredmessage_idstringcreate_partner_contact
Create Partner Contact
Writecustomer
Creates a `partner_contact` (a person inside a partner organisation) for a given partner. **Idempotent**: if a contact with the same email already exists for that partner, no duplicate is created — the existing one is returned with `was_created: false`. Use this to add a new person BEFORE granting them portal access with `invite_partners_to_portal` (which takes contact ids, not emails). Returns `{ contact_id, was_created }`. Customer-side only. **Two failure modes** (both safe — nothing created): (1) If `partner_id` doesn't exist at the backend (typo / stale id), rejected upstream with HTTP 400 `dispatch_failed` + a `MISSING_DATA` body — the most common failure for a bad id; ask the user to verify the partner. (2) If `partner_id` exists but belongs to a different company than the caller's, the response is `{status: 'success', response: {}}` (empty body) — the tenant guard terminated. Resolve `partner_id` via `partners(action: 'list', filter_name: ...)` or `list_accounts` (match by affiliate_company_name); IDs from `partner_directory_search` are profile_ids and will be rejected.
partner_idstring requiredemailstring requiredfirst_namestringlast_namestringmessage_idstringinvite_partners_to_portal
Invite Partner Contacts to Portal
Writecustomer
Invites one or more EXISTING partner_contacts (by their contact ids) to a partner's portal in a single call. Get the ids from `list_partner_contacts` (the `id` in each contact object) or by creating them first with `create_partner_contact`. The backend reuses the partner's single `externally_invited_user_mapping` (or creates it on the first invite), then adds a per-contact invitation and sends the invitation email; if a contact's email already corresponds to a Euler account, portal access is granted immediately, otherwise on accept. **Idempotent per contact**: a contact already invited is not duplicated or re-emailed. Optional `agreement_id`, `restrict_access`, and `tags` mirror the in-app bulk-invite. Returns `{ success, invited_count, mapping_existed }` (`invited_count` = number of contact ids submitted; the actual sends happen asynchronously). Customer-side only. **Failure modes** (all safe): (1) invalid `partner_id` → HTTP 400 `dispatch_failed` + `MISSING_DATA` body. (2) `partner_id` of a different company, OR an EMPTY `partner_contacts` list → `{status: 'success', response: {}}` (empty body) — a guard terminated the workflow before anything was created. Resolve `partner_id` via `partners(action: 'list', filter_name: ...)` or `list_accounts`.
partner_idstring requiredpartner_contactsarray requiredagreement_idstringrestrict_accessbooleantagsarraymessage_idstringflows
Flows (read)
Readcustomer + partner
Read Flows (onboarding / training / certification programs), their steps, assignments, and attachable resources. Customer-admin actions: action='list' returns all the company's flows as {id, name, status} records (newest first; no server-side filters — filter the returned list yourself by name/status) — the discovery entry point when you don't have a flow_id yet; drill into one with action='flow_details'. action='list_standard' returns the company's Standard Flows — the default flow set automatically assigned to partners when they join the portal — as {id, flow_id, flow_name, completion_rule, status} records; `id` is the flow_standard_id used by flows_manage(action:'remove_standard'), and `status` distinguishes active from archived (removed) entries. action='flow_details' returns flow/step details — name alone searches flows by title (returns matching flow IDs), flow_id alone returns that flow's details plus its assignments and step IDs, flow_step_id alone returns that step's details; pass at most ONE of name/flow_id/flow_step_id per call (combining them makes it return only the first matching intent and silently drop the rest), so drill down in separate sequential calls (name → flow_id → flow_step_id). The returned can_be_updated_now shows whether the flow's steps/content can be edited ('no' while Active); it does NOT affect assigning. A flow's status is Draft (creation), Active (published), Unpublished (an Active flow taken down to edit — not Draft), or Archived (retired and locked: it can neither be assigned nor edited). action='attachable_resources' lists content/agreement/quiz items embeddable in a step (requires entity_key ∈ content/agreement/quiz — Task/File Upload/SCORM/Text are valid step types but have no attachable-resource pool); returned ids feed flows_manage(action:'create_or_edit_step') via content_id / agreement_term_id / quiz_from_schema_id. action='assignment_candidates' lists partners/users assignable to a flow (requires partner_id; optional email resolves one user's id). action='assignments' returns the company's flow-assignment roster (optional filters: partner_id → that partner's flows, flow_id → that flow's partners); response has results (current page) and grouped_by_partners (same data grouped per partner) as comma-joined text payloads to parse before presenting, plus total_count / total_for_this_page / has_more. action='recipient_count' is a read-only dry-run of an assignment: pass the same audience inputs as flows_manage(action:'assign') (flow_id + assign_to + completion_rule, plus selected_partner_ids / tag_ids / partner_user_pairs as the combo requires) and it returns how many partners/recipients would receive the flow (new_count) WITHOUT assigning — use it to confirm 'N partners will receive this' before calling flows_manage(action:'assign'). Partner actions (partner-role sessions): action='partner_flow_details' returns the calling partner's assigned flows/steps (requires partner_id; optional flow_id / name / flow_step_id drill-down, mutually exclusive); action='partner_flow_progress' returns per-flow completion stats for the partner (requires partner_id + flow_id). Resolve partner_id via list_accounts (partner-role) or partners(action:'list') (customer-admin querying a partner of their company).
listlist_standardflow_detailsattachable_resourcesassignment_candidatesassignmentsrecipient_countpartner_flow_detailspartner_flow_progressactionstring requiredflow_idstringnamestringflow_step_idstringentity_keystringfile_typestringpartner_idstringemailstringpageintegerlimitintegerassign_tostringcompletion_rulestringselected_partner_idsarraytag_idsarraypartner_user_pairsarraymessage_idstringflows_manage
Flows — manage
Write — destructivecustomer
Create, edit, and manage Flows and their steps + assignments (customer-admin only). action='create_flow' creates a flow (requires name, description, type, enable_due_date; optional due_date_days). action='save_flow' saves/activates/publishes/archives a flow (requires flow_id, flow_status; optional name, description, type, enable_due_date, final_order, and certification_badge_b64 — a base64 image required to ACTIVATE a Certification flow: activating a Certification flow without a badge is blocked). action='create_or_edit_step' creates/edits a step (requires flow_id, name, description, os_flow_step_type, order_temp, entity_key='create'|'edit'). action='deactivate_step' enables/disables a step (requires flow_id, flow_step_id, step_status, entity_key='step', and flow_status — the flow's CURRENT status). This is a staged edit: it changes the step on the flow but does NOT update partners already assigned to the flow — that happens only when the flow is saved. After calling it, tell the user the change won't reach existing/in-progress assignments until the flow is saved, and ask whether to save now; call action='save_flow' only once the user confirms (do not save automatically). action='assign' assigns a flow (requires flow_id, assign_to, completion_rule, and confirm=true). assign_to picks which partners receive it: 'All Partners' (whole company), 'Selected Partners' (needs selected_partner_ids), or 'Partners by Tags' (needs tag_ids). completion_rule is how the partner's team completes it; the 'Specific users…' rule works only with assign_to='Selected Partners' and needs partner_user_pairs (each 'partner_id|user_id'). Assigning notifies the targeted partners, so it is confirmation-gated: first call flows(action:'recipient_count') with the SAME inputs to get how many partners/recipients will receive it, tell the user that number, and ask them to confirm; only after the user agrees, call assign with confirm=true. An assign call without confirm=true is rejected with assignment_confirmation_required and does nothing. action='unassign' removes an assignment (requires flow_id, entity_key='all'|'partner'|'user'). assign/unassign are actions you perform (not stored settings), allowed while the flow is Draft, Unpublished, or Active — identical in all three (an Active flow behaves the same whether or not it already has assignments) — and they NEVER require unpublishing. An Archived flow is locked: it can be neither assigned nor edited. A `can_be_updated_now` value of 'no' from flows(action:'flow_details') concerns editing the flow's steps/settings, not its assignments. To edit an Active flow's steps/settings, unpublish it (save_flow flow_status='Unpublished' — it becomes Unpublished, NOT Draft; Draft is only the initial creation state), make the changes, then republish (flow_status='Active') to re-propagate them to existing assignments. action='add_standard' adds a flow to the company's Standard Flows — the default set auto-assigned to every partner when they join the portal (requires flow_id and standard_completion_rule). It is idempotent: re-adding a flow already in the set just re-activates it, so it never creates duplicates. standard_completion_rule offers only two options ('Any user…' or 'All Users…'); the 'Specific users…' rule is not available for standard flows. action='remove_standard' removes a flow from the standard set (requires flow_standard_id — the `id` from flows(action:'list_standard'), not the flow_id); it archives the entry rather than hard-deleting, so re-adding restores it. Read the current standard set with flows(action:'list_standard'). To read flows, steps, assignable candidates, or the assignment roster, use `flows`.
create_flowsave_flowcreate_or_edit_stepdeactivate_stepassignunassignadd_standardremove_standardactionstring requiredflow_idstringnamestringdescriptionstringtypestringenable_due_datebooleandue_date_daysintegerflow_statusstringfinal_orderarraycertification_badge_b64stringflow_step_idstringos_flow_step_typestringaccepted_file_typesstringdue_in_daysintegerorderintegerorder_tempintegeragreement_term_idstringcontent_idstringquiz_from_schema_idstringscorm_pack_idstringstep_statusstringassign_tostringcompletion_rulestringstandard_completion_rulestringflow_standard_idstringselected_partner_idsarraytag_idsarraypartner_user_pairsarrayconfirmbooleanacknowledged_countintegerpartners_idarrayusers_idarrayentity_keystringmessage_idstringflow_lifecycle
Manage Flow Lifecycle
Writecustomer
Deprecated (removed after 2026-07-15): use `flows_manage` (action='create_flow' or 'save_flow') instead. Create or edit Flow containers (onboarding / training / certification programs). action='create' creates a new flow (requires name, description, type, enable_due_date; optional due_date). action='edit' saves/activates/publishes/archives an existing flow (requires flow_id, flow_status; final_order optional). To inspect an existing flow's details, use `flow_details`.
createeditactionstring requiredflow_idstringnamestringdescriptionstringtypestringenable_due_datebooleandue_date_daysintegerflow_statusstringfinal_orderarraymessage_idstringflow_details
Get Flow Details
Readcustomer
Deprecated (removed after 2026-07-15): use `flows` (action='flow_details') instead. Returns Flow or Step details. The three drill-down params `name`, `flow_id`, and `flow_step_id` are **mutually exclusive — pass at most one per call**. Intent selected by which drill-down param is set: (1) `name` alone → searches flows by name (returns matching flow IDs); (2) `flow_id` alone → returns that flow's details + its assignments + step IDs; (3) `flow_step_id` alone → returns that step's details. For drill-down, make **separate sequential calls**: search by `name` → call with a returned `flow_id` → call with a returned `flow_step_id`. Never combine multiple drill-down params in the same call — the workflow returns only the first matching intent and silently drops the rest. The response field `can_be_updated_now` reflects whether a flow's content (steps) can be edited — it is "no" while the flow is published (Active) — and does not affect assigning the flow to partners (done via `flow_assignment`).
flow_idstringnamestringflow_step_idstringmessage_idstringflow_assignments
Flow Assignments
Readcustomer
Deprecated (removed after 2026-07-15): use `flows` (action='assignments') instead. Returns the company's flow-assignment roster — which flows are assigned to which partners. Customer-admin only (partner-role sessions will not see this tool). The filters `partner_id` and `flow_id` are optional; with neither, returns the company's full active-assignment roster (paginated, 50 per page by default). `partner_id` narrows to one partner's flows (pivot partner→flows); `flow_id` narrows to one flow's partners (pivot flow→partners). Response fields: `results` (the current page — a comma-joined text payload of assignment objects carrying partner + flow fields), `grouped_by_partners` (the same data grouped per partner — a comma-joined text payload; parse before presenting), `total_count` (all matching assignments), `total_for_this_page`, and `has_more` (pagination signal). Resolve `partner_id` via `partners(action: 'list', filter_name: ...)`; resolve `flow_id` via `flow_details`. Only active assignments within the caller's own company are returned.
partner_idstringflow_idstringpageintegerlimitintegermessage_idstringflow_steps
Manage Flow Steps
Write — destructivecustomer
Deprecated (removed after 2026-07-15): use `flows_manage` (action='create_or_edit_step' or 'deactivate_step') instead. Create, edit, or deactivate Steps inside a Flow. action='create_or_edit' creates/edits a step (requires flow_id, name, description, os_flow_step_type, order_temp, entity_key='create'|'edit'). action='deactivate' enables/disables an existing step (requires flow_id, flow_step_id, step_status='Active'|'Inactive', entity_key='step'). To list attachable resources (content/agreement/quiz) before creating a step, use `flow_step_attachments`. Note: `entity_key` overloads two distinct discriminators across the two actions — see its field description.
create_or_editdeactivateactionstring requiredflow_idstringflow_step_idstringnamestringdescriptionstringos_flow_step_typestringaccepted_file_typesstringdue_in_daysintegerorderintegerorder_tempintegeragreement_term_idstringcontent_idstringquiz_from_schema_idstringscorm_pack_idstringstep_statusstringflow_statusstringentity_keystringmessage_idstringflow_attachable_resources
List Flow Attachable Resources
Readcustomer
Deprecated (removed after 2026-07-15): use `flows` (action='attachable_resources') instead. Lists attachable resources (content items, agreements, or quizzes) available to embed inside Flow Steps. Pass entity_key='content' | 'agreement' | 'quiz' to scope which resource type to list. Returned ids feed `flow_steps(action: 'create_or_edit')` via content_id / agreement_term_id / quiz_from_schema_id. Note: 'Task', 'File Upload', 'SCORM', and 'Text' are valid Flow step types but NOT valid entity_key values here — those step types don't have an attachable-resource pool.
entity_keystring requiredfile_typestringmessage_idstringflow_assignment
Assign / Unassign Flow
Write — destructivecustomer
Deprecated (removed after 2026-07-15): use `flows_manage` (action='assign' or 'unassign') instead. Assign or unassign Flows to partners/users. action='assign' assigns a flow (requires flow_id and assign_to_option — exact strings; the completion rule decides which id list to pass: the 'Any user…can complete' and 'All Users…need to complete' rules assign at the partner level and require partners_id_list, while the 'Specific users…need to complete' rule assigns to named users and requires users_id plus partners_id_list holding the single partner whose users are assigned). action='unassign' removes an assignment (requires flow_id, entity_key='all'|'partner'|'user'). Assignment works on published (Active) flows and does not require the flow to be editable or unpublished — a `can_be_updated_now` value of "no" returned by flow_details concerns editing a flow's content, not assigning it, and does not block this tool. To list eligible partners/users before assigning, use `flow_assignment_candidates`.
assignunassignactionstring requiredflow_idstringassign_to_optionstringpartners_id_listarraypartners_idarrayusers_idarrayentity_keystringmessage_idstringflow_assignment_candidates
List Flow Assignment Candidates
Readcustomer
Deprecated (removed after 2026-07-15): use `flows` (action='assignment_candidates') instead. Returns the partners that can be assigned to a Flow (paginated; each entry has partner_id + name). Requires partner_id. Optionally pass `email` to resolve a single user: when the email matches a user, the response carries that user's unique_id — pass that id as the `users_id` value for `flow_assignment`'s 'Specific users' rule (end users know emails, not ids). Use the returned ids in `flow_assignment(action: 'assign')`.
partner_idstring requiredemailstringpageintegerlimitintegermessage_idstringquizzes
Quizzes (read)
Readcustomer
Read quizzes and their questions (customer-admin only; a quiz attaches to a Flow step of type 'Quiz'). action='list' returns the company's quizzes as {id, name} records. action='get' returns one quiz's settings and, if quiz_question_id is also passed, that question's details (requires quiz_id). action='all_questions' returns a quiz's question list as {id, name} records (requires quiz_id). action='list_categories' returns the company's quiz-question categories as {id, name} records. action='attempts' returns the quiz's attempt records across the company's partners (requires quiz_id; optional partner_id filter) — each {id, user_id, partner_id, score, status, attempt_number}; use it to answer 'how did partner X score on quiz Y' or 'who is mid-attempt'. There is no stored pass/fail — compare score to the quiz's quiz_passing_score from action='get'. To create or edit quizzes/questions, use `quizzes_manage`.
listgetall_questionslist_categoriesattemptsactionstring requiredquiz_idstringquiz_question_idstringpartner_idstringmessage_idstringquizzes_manage
Quizzes — manage
Write — destructivecustomer
Create, edit, and delete quizzes and their questions (customer-admin only). Quiz questions are multiple-choice only: question_type='single_choice' (exactly one correct answer) or 'multiple_choice' (one or more correct answers). action='create' creates an empty draft quiz and returns its id. action='save' saves quiz-level settings AND propagates all pending question changes to existing/in-progress attempts (requires quiz_id; optional name, quiz_description, quiz_enable_retake, quiz_passing_score) — run it ONLY after the user confirms they want to propagate. action='add_question' adds a question (requires quiz_id, name, question_type, quiz_category_id, order, options, correct_answers). action='update_question' fully replaces a question (requires quiz_question_id — NOT quiz_id — plus name, question_type, quiz_category_id, order, required, options, correct_answers); every field is overwritten, so resend the current values you want to keep. `options` is the list of answer choices; `correct_answers` must be a non-empty subset of `options` (exactly one for single_choice). action='delete_question' soft-deletes a question (requires quiz_id, quiz_question_id). action='delete' deactivates a quiz (requires quiz_id). action='create_category' creates a quiz-question category (requires name) and returns quiz_category_id; action='edit_category' renames one (requires quiz_category_id, name); action='delete_category' soft-deletes one (requires quiz_category_id). Resolve category ids via quizzes(action:'list_categories'). add_question / update_question / delete_question are mutate-only and do NOT reach existing quiz attempts on their own — do NOT save automatically: after any of these, tell the user the change won't propagate to existing/in-progress attempts until the quiz is saved, and ask whether to save now; call action='save' only once the user confirms. To read quizzes, use `quizzes`.
createsavedeleteadd_questionupdate_questiondelete_questioncreate_categoryedit_categorydelete_categoryactionstring requiredquiz_idstringquiz_question_idstringnamestringquiz_descriptionstringquiz_enable_retakebooleanquiz_passing_scorenumberquestion_typestringoptionsarraycorrect_answersarrayquiz_category_idstringorderintegerrequiredbooleanmessage_idstringcompany_invoices
Query Company Invoices
Readcustomer
Query invoices at the company level. action='list' returns invoices with advanced filters (status, currency, date range, sort, descending); 'summary' returns aggregate totals by status (paid/pending/processing) — use for 'how much was invoiced', 'total revenue', invoice aggregate questions.
listsummaryactionstring requiredpartner_idstringstatusstringsort_bystringdescendingstringcurrencystringstart_datestringend_datestringpageintegerlimitintegermessage_idstringcommissions
Commissions Calculation
Readcustomer
Commission payouts and expense calculations over a date range. action='company' returns the third-person aggregate (e.g. 'how much did we pay', 'our commission expense', 'company-wide payout', 'total spent on partner commissions') — customer-only. action='partner' returns first-person or specific-partner queries (e.g. 'how much commission did I earn this month', 'minha comissão', 'commission owed to <Partner X>', 'partner X earnings') — requires partner_id, callable by partner-role tokens. Partner_id sources for action='partner': `list_accounts` (the user's own partner roles, match by `affiliate_company_name`) or `partners(action: 'list', filter_name: ...)` (customer admin querying their company's partners). IDs from `partner_directory_search` are profile_ids and will be rejected as `partner_not_in_consent`. start_date and end_date are required (no defaults).
partnercompanyactionstring requiredpartner_idstringstart_datestring requiredend_datestring requiredpageintegerlimitintegermessage_idstringincentives_summary
Incentives Summary
Readcustomer
Returns the company's incentives and the count of partners associated with each. Use for incentive program reporting.
message_idstringpartner_inc1_incentives
Partner Incentives — Inc 1.0
Readpartner
Get a partner's active Inc 1.0 incentive plan. Requires partner_id — the data is scoped to THAT partner, not the logged-in user. action='status' returns: package name, payout frequency, net days post payment, and the commission tiers as `tiers[]` — each tier has name, min/max revenue range, commission_pct (%), flat_payout (fixed fee), and net_days. Use when a partner asks about their commission structure, tier package, or payout terms. Returns found=false if this partner has no Inc 1.0 plan.
statusactionstring requiredpartner_idstring requiredmessage_idstringpartner_inc2_incentives
Partner Incentives — Inc 2.0
Readpartner
Get a partner's Inc 2.0 incentive program data. Requires partner_id — the data is scoped to THAT partner, not the logged-in user. action='status' returns the current tier (`tier_name`, `tier_badge`, `tier_badge_color`, `tier_order`), `program_name`/`program_status`/`progression_type`, `payout_frequency`, plus three flat lists: `commission_structure[]` — one row per product-group × revenue-range × time-period, each row with `group_name`, `all_products`, `range_min`, `range_max`, `is_max_infinite`, `fixed_payout`, `demo_payout`, `net_days`, `period_months`, `commission_pct`; `benefits[]` — the current tier's non-monetary benefits (`property_name`, `type`, `answer_text`/`answer_bool`/`answer_number`/`answer_select`); and `active_campaign[]` — 0 or 1 active temporary boost/override campaign (`name`, `type`, `date_start`, `date_end`, `boost_pct`, `boost_fixed`, `override_tier_name`). action='progression' returns `current_tier_name`/`current_tier_order`, `program_tiers[]` — every tier in the program (`tier_name`, `tier_order`, `tier_badge`, `badge_color`), `at_highest_tier`, `next_tier_name`/`next_tier_order` (the next tier above the partner's current one), `all_tiers[]` — one row per advancement rule across the program's tiers (`tier_name`, `tier_order`, `logic`, `metric`, `operator`, `value`, `period`) — and `live_metrics[]` — the partner's live progress, EACH ROW already carrying its rule + which tier it belongs to: `tier_name`, `tier_order`, `logic`, `metric`, `operator`, `goal` (the rule's threshold), `calculated` (current value), `passing`, `period`. Returns found=false if no Inc 2.0 assignment exists. To explain what's needed to reach the next tier, filter `live_metrics[]` by `tier_name === next_tier_name` — each row is a requirement with its target (`goal`), current progress (`calculated`), and whether it's met (`passing`). `all_tiers[]` is the full rule catalog per tier (use it for tiers that have no live metric yet); `live_metrics[]` is the one that carries progress.
statusprogressionactionstring requiredpartner_idstring requiredmessage_idstringperformance
Partner Performance
Readcustomer
Partner performance metrics and rankings over a date range. action='overall' ranks all partners (e.g. 'top 5 partners', 'best performing partners', 'leaderboard', 'highest performers', 'partner ranking') and REQUIRES start_date, end_date, page, limit, and entity_key. Dates use YYYY-MM-DD format (e.g. '2024-04-07') — NEVER include a time component; full ISO 8601 datetimes are silently mis-parsed downstream and return corrupted years. When the user doesn't specify a window, default start_date to today − 90 days and end_date to today. Pagination defaults: page=1, limit=10. entity_key selects the ranking metric — pass 'revenue' for closed-won/invoiced revenue ($) questions (top sellers, biggest accounts, highest revenue contributors) and as the default for generic performance questions; pass 'deals' only when the question is specifically about deal COUNT (most deals closed, most wins). 'overall' is terminal — it returns ranking plus aggregate metrics in one call, considering deals only (no commissions data); subsequent partner_artifacts/commissions calls aren't necessary unless the user asks for more depth. action='partner' returns a single partner's metrics — requires partner_id, callable by partner-role tokens. action='company' returns the user's own company aggregate (sales/deals/charges) — customer-only. Disambiguation when the user names an entity: if the name matches the user's own company (`list_accounts` entry where `type==='customer'` AND `name===<asked>`), use action='company'. If it matches an `affiliate_company_name` in `list_accounts` OR a partner of the user's company, use action='partner' with that partner_id. Partner_id sources for action='partner': `list_accounts` (match by `affiliate_company_name`) or `partners(action: 'list', filter_name: ...)`. IDs from `partner_directory_search` are profile_ids and will be rejected as `partner_not_in_consent`.
partnercompanyoverallactionstring requiredpartner_idstringstart_datestringend_datestringstatusstringpageintegerlimitintegerentity_keystringmessage_idstringinfluenced_sourced_deals
Deal Attribution — Influenced & Sourced
Readcustomer
Returns deal attribution data for a date range: counts and totals for sourced deals (partner-originated), influenced deals (partner-touched), and combined sourced-and-influenced deals — with per-partner breakdowns suitable for ranking. Use for deal-source-attribution questions: counts of sourced/influenced deals, total value of sourced/influenced deals, sourced vs influenced comparisons, and partner rankings by sourced/influenced deal performance. Pass `partner_id` to scope the response to a single partner's attribution (sourced/influenced deals owned by that partner only); omit it for the company-wide view across all partners. For generic partner deal lists without sourced/influenced framing, `partner_artifacts(action: 'deals')` is the right tool; for company-wide aggregates use `performance(action: 'overall')`; for looking up a specific deal by name use `get_search_deals`.
partner_idstringstart_datestringend_datestringpageintegerlimitintegermessage_idstringcontent_search
Search Shared Partner Content
Readcustomer + partner
Semantic (vector) search INSIDE a partner's privately-shared content — the documents/decks/files the customer shared with a specific partner — matches on meaning, not filename. Use for 'find content about <topic>' / 'what do my shared docs say about X' scoped to a partner. Partner-scoped: requires `partner_id` (resolve via `list_accounts` for partner-role, or `partners(action: 'list', filter_name: ...)` for customer-admin). For product HELP / how-to questions about EULER itself ('how do I add a user', 'how does EULER work'), use `euler_help` instead. To LIST or browse a partner's files by name, use `content_list`.
querystring requiredpartner_idstring requiredmessage_idstringeuler_help
EULER Help & Support
Readcustomer + partner
EULER product help & support search — THE tool for any question about how EULER itself works or how to do something in the EULER product: 'how do I add a user', 'how do I submit a referral', 'where do I find X in the portal', 'how does EULER work', 'what is <EULER feature>', 'how do I set up Y'. Searches EULER's public help center / support articles (the support.eulerapp.com knowledge base) and returns the matching article text plus a citable `article_url`. ALWAYS call this before telling the user you can't find a procedure or that there's no documentation — do not guess generic SaaS steps. Needs only the question — no partner_id or other context. (To semantically search a partner's privately-shared content instead, use `content_search`; to list a partner's files by name, use `content_list`.)
querystring requiredmessage_idstringcontent_list
List Partner Content
Readcustomer + partner
Lists the actual content/files a partner has access to in their Partner Portal — PDFs, Word docs, images, uploaded videos, and external links (YouTube, Vimeo, Loom, Google Drive), newest first. Use for 'what content/files do I have', 'list my documents', 'show the PDFs shared with me', 'do I have a deck about X'. Returns each item with name, description, file_type, a ready-to-use URL (file_url for uploaded files OR link for external), cover image, size, and a downloadable flag. Pass `partner_id` (resolve via `list_accounts` for partner-role, or `partners(action: 'list', filter_name: ...)` for customer-admin). Optional `query` filters by a case-insensitive substring of the content NAME — omit it (or pass '') to list everything. This is direct catalog retrieval; for conceptual 'how does X work' / documentation lookups that search INSIDE content, use `content_search` (semantic) instead. IDs from `partner_directory_search` are profile_ids and will be rejected.
partner_idstring requiredquerystringmessage_idstringsubmit_feedback
Submit MCP Feedback
Writecustomer + partner
Sends feedback to the EULER engineering team about the MCP itself — tool errors, ambiguous descriptions, missing capabilities. Use proactively when: (a) type='error' — a tool returned an unrecoverable error and the user couldn't get what they asked for; (b) type='improvement' — a tool's description was ambiguous and led down the wrong path before recovering; (c) type='feature_request' — the user asked for something this MCP doesn't support yet; (d) type='recommendation' — a general suggestion (UX, naming, missing context, etc). Feedback is delivered to a Slack channel monitored by EULER engineering. Do NOT use for routine user-fixable errors (wrong input, missing partner_id, malformed deal_id) or to surface successful operations — only when the MCP itself fell short.
typestring requiredsummarystring requireddetailsstring requiredaffected_toolstringuser_intentstringmessage_idstringcommunications
Communications Hub (read)
Readcustomer
Read-only access to the Communications Hub (partner email program). action='list_audiences' lists the company's audiences with name, active flag, and contact count. action='list_templates' lists email templates (name, description, published). action='list_sent_emails' lists individually-sent emails (recipient, subject, status, opens, clicks). action='emails_by_broadcast' lists the emails sent in one broadcast (requires broadcast_id). action='preview_broadcast' returns how many recipients an audience + template would reach plus a sample of eligible contacts (requires audience_id + template_id) — call this before sending. action='preview_template' renders a template with one contact's data substituted so you can show the final email (requires template_id + sample_contact_id). Everything is scoped to the user's company automatically.
list_audienceslist_templateslist_sent_emailsemails_by_broadcastpreview_broadcastpreview_templateactionstring requiredaudience_idstringtemplate_idstringbroadcast_idstringsample_contact_idstringpageintegerlimitintegermessage_idstringcommunications_manage
Communications Hub — manage
Write — destructivecustomer
Create and send within the Communications Hub (partner email program). action='create_audience' creates an empty partner audience (requires name). action='create_template' creates an email template from raw HTML (requires name + html); the ONLY supported merge tokens are [Contact First Name], [Contact Last Name], [Contact Email], and [Company Contact] — any other token (e.g. {{name}}) is rejected before saving. action='add_contacts' adds up to 100 partners to an audience (requires audience_id + partner_ids); idempotent (partners already in the audience are skipped). action='send_broadcast' sends a template to all eligible contacts of an audience (requires audience_id + template_id + subject + confirm) — this emails real partners and cannot be undone, so call communications(action:'preview_broadcast') first and pass confirm=true only after the user explicitly approves. Everything is scoped to the user's company automatically.
create_audiencecreate_templateadd_contactssend_broadcastactionstring requirednamestringhtmlstringdescriptionstringpreview_textstringaudience_idstringpartner_idsarraytemplate_idstringsubjectstringconfirmbooleanmessage_idstringsi_service_projects
SI Service Projects (read)
Readpartner
Reads SI (System Integrator) service projects for the authenticated partner. action='list' returns the projects for one of your partner accounts (requires partner_id, from list_accounts; paginated via offset/limit) as `items[]` — each item has id and name; call action='get' with the id for status, approval, dates, and full detail. action='get' returns one project's detail (requires project_id). action='scope_form' returns the project's scope form AND its current answers (requires project_id): `questions[]` (each with field_id, field_name, a `type` — Short Text, URL, Email, Phone, Long Text, Dropdown, Currency, Percentage, Number, Date, Multi-select, Tags, or Checkbox — required, order, and the field's current answer: `answer_text`, `answer_number` (string), `answer_date` (string), `answers_list` (array of text); the slot that's populated depends on the field's type — PLUS `options` (array of the field's allowed values for Dropdown / Multi-select / Checkbox; empty for free-text types) so you submit only valid values) and `checkboxes[]` (each with checkbox_id, field_id, name, percentage). To read what a partner has filled in, call scope_form; to change an answer, call si_manage_service_project action='submit_answers' with the same field_id (it overwrites). action='list_services' returns the catalog of services the partner can add to a project (requires partner_id; the customer company is resolved server-side from your partner account, NOT passed in). Everything is scoped to the partner by privacy rules; a project the partner cannot see returns found=false. NOTE: SI is an opt-in feature that not every partner has — an empty `list_services` (or empty project list) can mean this partner does not have SI enabled, not necessarily that nothing matches; don't assume the program has no services without considering that.
listgetscope_formlist_servicesactionstring requiredproject_idstringpartner_idstringoffsetintegerlimitintegermessage_idstringsi_manage_service_project
Manage SI Service Project
Write — destructivepartner
Creates and modifies SI service projects for the authenticated partner. action='create' creates a project (requires project_name, start_date, end_date, partner_id, service_type_ids[]; the customer company is resolved server-side from your partner account, NOT passed in); status and approval are derived server-side from the linked deal and the selected services; returns the new project_id. The project's scope-form fields are created asynchronously by a server-side cascade — allow a few seconds after create before calling scope_form (an immediate read may show a partial field set). action='update' edits a project's name/description/dates/deal — only the fields you pass change (requires project_id + partner_id). action='delete' soft-deletes a project (requires project_id + partner_id; optional deletion_note) — it then stops appearing in reads. action='submit_answers' writes scope-form answers (requires project_id + answers[]); each answer has field_id plus ONE value matching the field's `type` from scope_form: Short Text / URL / Email / Phone / Long Text / Dropdown use answer_text; Currency / Percentage / Number use answer_number; Date uses answer_date (ISO 8601); Multi-select / Tags use answers_list. For Dropdown / Multi-select fields the value(s) must be among the field's `options` (from scope_form): a Dropdown or Multi-select answer with any value outside its options is REJECTED with `invalid_option` (the error lists the field_id, the submitted value(s), and the allowed options); always check `options` from scope_form before submitting. Answer writes process asynchronously (the response status is 'scheduled') — allow a moment before re-reading the answers via scope_form. action='set_progress' sets one checkbox sub-item's completion percentage 0–100 (requires checkbox_id + percentage) using checkbox_id values from scope_form — Checkbox-type fields are updated here, not via submit_answers. The partner_id passed to 'create', 'update', and 'delete' must be one of your authorized partner accounts.
createupdatedeletesubmit_answersset_progressactionstring requiredproject_idstringproject_namestringdescriptionstringstart_datestringend_datestringpartner_idstringdeal_idstringservice_type_idsarraydeletion_notestringanswersarraycheckbox_idstringpercentagenumbermessage_idstringsi_customer_service_projects
SI Service Projects (customer admin)
Readcustomer
Reads SI (System Integrator) service projects from the CUSTOMER ADMIN side — service delivery across ALL of the company's partners. The customer company is resolved server-side (NOT an AI input). action='list' returns the company's projects (paginated via offset/limit; optionally filtered to one partner via partner_id) as `items[]` — each item has id, name, partner_id, partner_name, status, service_types[], start_date, end_date, completed_date, created_date — PLUS total_count and has_more. action='scope_form' returns ONE project's full scope form (requires project_id): `questions[]` (each with field_id, field_name, type, required, order, and the current answer in answer_text / answer_number / answer_date / answers_list, plus `options` for Dropdown/Multi-select/Checkbox) and `checkboxes[]`. action='export' is a BATCH for pulling large volumes: it returns a page of projects (offset/limit, max 100) where EACH project is already enriched with its full `scope_form` (+ `checkboxes`) — use it to extract all ~N projects' complete data in pages without calling scope_form one-by-one (a project may carry `scope_form_error` if its form couldn't be fetched; the rest of the batch still returns). Everything is tenant-isolated by privacy rules (a project outside your company is never returned). NOTE: 'In Progress' here is the project lifecycle status; a scope-form field literally named 'Project Status' (e.g. 'Scoping') is a different value that lives inside the scope form.
listscope_formexportactionstring requiredproject_idstringpartner_idstringoffsetintegerlimitintegermessage_idstringpartner_users
Partner Users & Roles (read)
Readcustomer + partner
Reads the users and permission roles of a partner organisation. Works for BOTH a partner-admin reading their OWN team AND a customer-admin reading one of their company's partners. action='list_users' returns ONLY the partner's people who have an activated EULER portal login, as `users[]` (each: id, email, first_name, last_name, roles); requires partner_id. ⚠️ This is NOT the partner's full team — most partner people are contacts who were never invited or never logged in and do NOT appear here, so a partner with hundreds of contacts may legitimately return only a handful of users (or zero); that is correct, not a truncation. For the COMPLETE team roster (everyone, with or without a login) use `list_partner_contacts`. action='list_roles' returns the partner's permission roles as `roles[]` (each: id, role_title, category, have_admin_permissions, all_sections_enabled, default_sections_enabled, custom_sections_enabled, qty_users_assigned); requires partner_id. action='get_default_roles' returns the role(s) auto-assigned to new members (same role shape); requires partner_id. Everything is tenant-isolated by privacy rules — you only ever see your own partner account (partner-admin) or a partner of your own company (customer-admin). partner_id comes from list_accounts. NOTE: `list_roles`'s `qty_users_assigned` counts how many of the partner's CONTACTS hold each role, so its total is typically far larger than `list_users` (which is only logged-in users) — they are different populations and are NOT expected to match.
list_userslist_rolesget_default_rolesactionstring requiredpartner_idstringmessage_idstringmanage_partner_users
Manage Partner Users & Roles
Write — destructivecustomer + partner
Creates and modifies a partner organisation's permission roles, and assigns/removes them for members. Works for BOTH a partner-admin managing their OWN team AND a customer-admin managing a partner of their company. ⚠️ AS A CUSTOMER-ADMIN, these writes change the roles and portal access of users in ANOTHER company (your partner's organisation) — they are your partner, but still a separate company. BE CERTAIN before you create/edit a role or assign/remove roles, and confirm the intent with the user first. action='create_role' creates a role (requires partner_id, role_title, category); optional: have_admin_permissions ('yes'/'no'), enable_all_sections ('yes'/'no'), default_sections[] (portal sections the role may see), custom_sections[] (custom partner-portal section ids). action='edit_role' edits a role — only the fields you pass change (requires role_id; same optional fields as create). action='assign_roles' assigns one or more roles to one or more members BY EMAIL (requires partner_id, emails[], role_ids[]); keep_old_roles (boolean): true ADDS to the members' current roles, false REPLACES them. **The emails must be people already in this partner's team — find them via `list_partner_contacts` (the full team roster), NOT via `partner_users` action='list_users' (which returns only the few people who have an activated portal login). An email that isn't one of the partner's contacts is silently skipped.** action='remove_roles' removes ONE role from ONE member (requires partner_id, email, role_id); remove_all_roles (boolean) strips ALL of that member's roles instead. action='update_default_roles' sets which roles new members are auto-assigned (requires partner_id, role_ids[]). Get role ids from partner_users action='list_roles'; `category` is one of the partner role categories (e.g. Partnerships, Sales, Marketing, Finance, Support). partner_id comes from list_accounts.
create_roleedit_roleassign_rolesremove_rolesupdate_default_rolesactionstring requiredpartner_idstringrole_idstringrole_idsarrayrole_titlestringcategorystringhave_admin_permissionsstringenable_all_sectionsstringdefault_sectionsarraycustom_sectionsarrayemailsarrayemailstringkeep_old_rolesbooleanremove_all_rolesbooleanmessage_idstringget_partner_overall_stats
Partner Program — Overall Stats
Readcustomer
Single-call executive snapshot of the company's partner program. Returns total partner count (all), active partner count, pending partner count, total deal count, won deal count, total revenue (sum), and the top 100 partners ranked by revenue. Use when the user wants a quick at-a-glance picture of the program (e.g. 'give me a program overview', 'how is our partner program doing overall', 'top performers'). Customer-side only; scoped to the caller's company automatically. For ranking by date range / pagination, use `performance(action: 'overall')` instead — this tool is unfiltered and lifetime-to-date.
message_idstringDisconnect the connector in your AI client and reconnect from scratch. The OAuth state is single-use; if the consent callback was interrupted (network hiccup, browser back button, cross-environment URL mix) the state expires and a fresh flow is required.
euler_user_token_missingYour EULER session token has expired or wasn't registered during consent. Disconnect and reconnect — the consent flow re-registers a fresh token. No account data is lost.
partner_not_in_consentThe partner_id the AI is querying wasn't approved during this MCP session. Disconnect, reconnect, and check the partner account on the EULER consent screen — the consent gate blocks any partner access not explicitly approved.
list_accounts returns fewer accounts than expectedCheck the consent_summary.hidden_count field in the response. If it's non-zero, some accounts exist in your EULER workspace but were not approved at consent. Disconnect and reconnect to re-select them.
euler_session_expired mid-sessionYour underlying EULER login expired on the backend. The connector signals this with action_required: "reconnect" — your AI client will prompt you to reconnect. Complete the OAuth flow once and continue.
Each list_accounts entry includes a dashboard_url field (customer → https://eulerapp.com/dashboard, partner → https://eulerapp.com/partners). Ask the AI to use that field rather than guessing.
Email help@eulerapp.com with the affected tool name, approximate timestamp, your account email, and (if returned) the request_id.