mifactory-payments
Server Details
Stripe payments for AI agents. Create links, verify, manage customers.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mifactory-bot/mifactory-payments
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.6/5 across 4 of 4 tools scored.
Each tool has a clearly distinct purpose: customer creation, payment link creation, payment listing, and payment verification. There is no overlap or ambiguity between them.
All tools follow the consistent verb_noun snake_case pattern (create_customer, create_payment_link, list_payments, verify_payment). This is predictable and easy to remember.
With 4 tools, the server is well-scoped for a focused payment processing workflow. Each tool is essential and covers the core lifecycle without unnecessary bulk.
The tool set covers the essential flow: create customer, generate payment link, list payments, and verify status. Minor gaps exist (e.g., no refund or customer update), but the core payment workflow is complete.
Available Tools
4 toolscreate_customerBInspect
Crea un cliente en Stripe. Cuesta 5 créditos.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Nombre del cliente | |
| Yes | Email del cliente | ||
| metadata | No | Metadata adicional | |
| stripe_key | Yes | Tu Stripe secret key |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the cost (5 créditos), which is useful, but otherwise only states the action 'create'. It does not explain side effects, error conditions, or the need for a valid Stripe key, making the behavioral picture quite thin for a mutating operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: two short sentences, front-loaded with the primary purpose and then the cost. There is no redundancy or fluff, and each sentence provides distinct value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple create tool with full schema coverage, the description gives the essential purpose and cost, but lacks usage context, behavioral details (like idempotency or potential failures), and does not compensate for the absence of an output schema. It is minimally viable but leaves several operational questions unanswered.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with all four parameters having descriptive names and descriptions. The tool description adds no additional meaning about parameters, so the baseline of 3 applies as the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states 'Crea un cliente en Stripe' (Creates a customer in Stripe), which is a specific verb+resource. It clearly distinguishes the tool from siblings like create_payment_link, list_payments, and verify_payment, as it focuses on customer creation rather than payments or links.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not mention any prerequisites, exclusions, or situations where another tool would be preferred. The only additional info is the cost, which is not a usage guideline.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_payment_linkBInspect
Crea un link de pago de Stripe. Cuesta 10 créditos.
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | Monto en USD (ej: 19.99) | |
| currency | No | Moneda (default: usd) | |
| cancel_url | No | URL de redirección al cancelar | |
| stripe_key | Yes | Tu Stripe secret key (sk_live_... o sk_test_...) | |
| description | Yes | Nombre del producto o servicio | |
| success_url | No | URL de redirección al pagar |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It discloses the cost of 10 credits, which is useful, but omits side effects, authentication requirements, success/failure behavior, or return value. As a mutation tool, this is insufficient transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is exceptionally concise, using two short sentences to convey the primary purpose and the key constraint of cost. Every word serves a function with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 6 parameters, no output schema, and no annotations, the description is too minimal. It does not mention what the tool returns (e.g., the generated payment link URL) or any operational context beyond creation. The cost mention helps but leaves significant gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides 100% coverage with detailed descriptions for all 6 parameters, so the schema does the heavy lifting. The tool description adds no parameter-specific semantics, matching the baseline of 3 for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Crea un link de pago') on a specific resource (Stripe payment link), making its purpose unambiguous. This distinguishes it from sibling tools like create_customer, list_payments, and verify_payment.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when a Stripe payment link needs to be created, but it does not explicitly state when to use this tool versus alternatives or provide exclusion criteria. The sibling tools are distinct, but the description offers no direct guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_paymentsAInspect
Lista los pagos recientes de tu cuenta Stripe. Cuesta 3 créditos.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Número de pagos a listar (default: 10) | |
| stripe_key | Yes | Tu Stripe secret key |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It adds valuable behavioral context by disclosing the credit cost ('Cuesta 3 créditos') and the read-only nature implied by 'Lista'. However, it does not mention failure modes, rate limits, or return format details.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences, front-loaded with the core purpose and followed by the cost note. Every word earns its place, with no unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list operation with fully documented schema parameters and no output schema, the description covers purpose and a key operational constraint (credit cost). It could mention the return format more explicitly, but the description is adequate for the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% coverage with descriptions for both parameters (limit and stripe_key). The description adds no parameter-specific meaning beyond 'recent payments', so it does not exceed the baseline set by the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Lista' (lists) and the resource 'pagos recientes de tu cuenta Stripe' (recent payments of your Stripe account). It distinguishes from sibling tools like create_customer, create_payment_link, and verify_payment by focusing on reading existing payment data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for viewing recent Stripe payments but provides no explicit guidance on when to choose this tool over siblings. There is no mention of exclusions or alternatives, but the straightforward purpose makes the context reasonably clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verify_paymentAInspect
Verifica si un pago fue completado. Cuesta 5 créditos.
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | ID de la sesión de Stripe (cs_...) | |
| stripe_key | Yes | Tu Stripe secret key |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the full burden of behavioral disclosure. It adds the cost ('Cuesta 5 créditos') but does not describe return values, error behavior, or whether the operation is purely read-only. The verification nature implies read-only, but that is not explicit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: two short sentences that front-load the primary action and include the important cost detail. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has no output schema, so the description should explain what the agent can expect as a result. It does not mention the return format (e.g., boolean, status object), leaving a critical gap for correct invocation and interpretation. The cost detail is useful but not sufficient for full completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with clear definitions for both session_id and stripe_key. The description adds no additional parameter-specific information, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function with a specific verb ('Verifica') and resource ('si un pago fue completado'). This distinguises it from sibling tools like create_customer or list_payments, which perform different actions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The purpose implies when to use the tool (to verify payment completion), but there is no explicit guidance on when to choose it over alternatives like list_payments, nor any exclusions or prerequisites mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityBmaintenanceLets AI agents accept US payments (cards, Apple Pay, Google Pay) via Stripe hosted checkout. Includes tools to create payment links and query payment status.MIT
- Flicense-quality-maintenanceEnables AI agents to interact with multiple payment providers (Stripe, Paystack) through a unified API. Supports payment initialization, verification, refunds, customer management, and invoicing without requiring knowledge of specific provider implementations.2
- Alicense-qualityBmaintenanceLets any AI agent accept payments in Ireland via Stripe's hosted checkout.MIT
- Alicense-qualityBmaintenanceLets AI agents accept payments in Australia via Stripe hosted checkout by creating payment links and checking payment status.MIT