Skip to main content
Glama

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 3.6/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness4/5

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 tools
create_customerBInspect

Crea un cliente en Stripe. Cuesta 5 créditos.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoNombre del cliente
emailYesEmail del cliente
metadataNoMetadata adicional
stripe_keyYesTu Stripe secret key
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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.

list_paymentsAInspect

Lista los pagos recientes de tu cuenta Stripe. Cuesta 3 créditos.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoNúmero de pagos a listar (default: 10)
stripe_keyYesTu Stripe secret key
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
session_idYesID de la sesión de Stripe (cs_...)
stripe_keyYesTu Stripe secret key
Behavior3/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.