@carrierllc/mcp 0.2.20 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-NHQDO2E7.js → chunk-ZII4CD4U.js} +2 -2
- package/dist/chunk-ZII4CD4U.js.map +1 -0
- package/dist/cli.js +475 -3
- package/dist/cli.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-NHQDO2E7.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
networkEventsOverPeriodParams,
|
|
11
11
|
subscriberIdParams,
|
|
12
12
|
usageOverPeriodParams
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-ZII4CD4U.js";
|
|
14
14
|
|
|
15
15
|
// src/index.ts
|
|
16
16
|
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
@@ -9652,7 +9652,7 @@ function registerStripeConnectTools(server2, ctx) {
|
|
|
9652
9652
|
);
|
|
9653
9653
|
server2.tool(
|
|
9654
9654
|
"stripe_connect_payouts",
|
|
9655
|
-
"List money Stripe has already sent from the operator's connected account to their bank, newest first. Read-only. Params: `limit` (1-50, default 10). Returns: payouts
|
|
9655
|
+
"List money Stripe has already sent from the operator's connected account to their bank, newest first. Read-only. Params: `limit` (1-50, default 10), `status` (optional Stripe payout status, e.g. 'paid', 'pending', 'failed'). Returns: { payouts: [{ id, amount, currency, status, arrival_date, automatic, created }], has_more } \u2014 amount in the currency's smallest unit. Do NOT use this for money still sitting at Stripe and not yet paid out \u2014 use `stripe_connect_balance`.",
|
|
9656
9656
|
{
|
|
9657
9657
|
limit: z17.number().int().min(1).max(50).default(10).describe("Number of payouts to return."),
|
|
9658
9658
|
status: z17.enum(["pending", "paid", "failed", "canceled", "in_transit"]).optional().describe("Filter by payout status.")
|
|
@@ -9769,7 +9769,7 @@ Call again with confirm_token="${token2}" to execute. Token expires in 5 minutes
|
|
|
9769
9769
|
);
|
|
9770
9770
|
server2.tool(
|
|
9771
9771
|
"stripe_connect_dispute_list",
|
|
9772
|
-
"List chargebacks customers have raised with their bank against the operator's connected Stripe account. Read-only \u2014 responding to one is Dashboard work. Params: `limit` (1-50, default 10), `status` (optional Stripe dispute status, e.g. 'needs_response', 'under_review'). Returns: disputes
|
|
9772
|
+
"List chargebacks customers have raised with their bank against the operator's connected Stripe account. Read-only \u2014 responding to one is Dashboard work. Params: `limit` (1-50, default 10), `status` (optional Stripe dispute status, e.g. 'needs_response', 'under_review'). Returns: { disputes: [{ id, charge, amount, currency, status, reason, evidence_details.due_by }], has_more } \u2014 amount in the currency's smallest unit, `due_by` a Unix timestamp or null. Do NOT use this for charges Stripe is holding for fraud review before they settle \u2014 those are `radar_review_list`. Check this before refunding: refunding a disputed charge can cost the operator the amount twice.",
|
|
9773
9773
|
{
|
|
9774
9774
|
limit: z17.number().int().min(1).max(50).default(10),
|
|
9775
9775
|
status: z17.string().optional().describe("Filter by dispute status (e.g. needs_response, under_review).")
|