工具 API
stripe_ api_ write
Write data via any Stripe API POST/PATCH/PUT/DELETE operation: 1. Use stripe_api_search to find the operation ID. 2. Use stripe_api_details to understand its parameters (required for operations with nested object fields like address, metadata, or restrictions). 3. Call this tool with the stripe_api_operation_id and a parameters object containing path, query, and body parameters. For read-only lookups (GET), use stripe_api_read instead. All monetary amounts must be in the smallest currency unit (e.g. 1000 = $10.00 USD for most currencies).
调用信息
- 工具标识
- stripe-mcp.stripe_api_write
- 服务提供方
- Stripe
- 平均响应
- 0 ms
- 近 7 天调用
- 0
输入参数
stripe_api_operation_id必填The operation ID to execute
parameters必填Parameters for the API call. Include path parameters (e.g. 'customer' for /v1/customers/{customer}), query parameters, and body parameters. Array fields (e.g. line_items) must be passed as a JSON array value, not as a plain string.
human_confirmationThis tool might require human confirmation. To run it, first invoke it with the desired parameters, ignoring the `approval_token` parameter. If it requires human confirmation, the response will include an approval request ID and a URL to an approval page for the human to approve the tool call. You, as the LLM agent, should: 1. Present this URL to the human as a clickable markdown link. Tell them that they have to approve this tool call at that URL, and that they should tell you when they have approved the operation. 2. The human will approve that call. 3. After the human tells you they have approved the operation, you must call the tool again with the `approval_token` parameter and the exact same parameters. The operation will then go through.
stripe_context必填The account to target for this request. Use the `stripe_context` value returned by list_available_accounts_or_orgs.
livemode必填Whether to operate in livemode (true) or test mode/ sandbox (false). Must match the livemode of the stripe_context account.