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
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.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
United States payments for AI agents — Stripe checkout via Stripe. Never holds funds.
Estonia payments for AI agents — cards / Apple Pay via Stripe. Never holds funds.
Cyprus payments for AI agents — cards / Apple Pay via Stripe. Never holds funds.
Ireland payments for AI agents — cards / Apple Pay via Stripe. Never holds funds.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceLets 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
- FlicenseNot gradedqualityNot gradedmaintenanceEnables 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
- AlicenseNot gradedqualityBmaintenanceLets any AI agent accept payments in Ireland via Stripe's hosted checkout.MIT
- AlicenseNot gradedqualityBmaintenanceLets AI agents accept payments in Australia via Stripe hosted checkout by creating payment links and checking payment status.MIT