{"name":"la.roki/connect","slug":"roki-connect","title":"ROKI Connect","description":"Verified ROKI Connect payments contract for coding agents: operations, schemas, validator.","url":"https://mcp.market/server/roki-connect","rating":null,"grade":"C","score":60,"certified":false,"status":"active","category":"other","tags":[],"presence":{"score":8,"stars":null,"forks":null,"downloads_week":null,"last_push_at":null,"license":null},"uptime":{"percent":100,"checks":19,"ok":19,"last_checked_at":"2026-09-24T04:35:46.213Z","last_ok_at":"2026-09-24T04:35:46.213Z","latency_ms":348},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":null,"website":"https://mcp.roki.la","version":"1.0.0","remotes":[{"type":"streamable-http","url":"https://mcp.roki.la/mcp"}],"packages":[],"tools":[{"name":"roki_audit_integration","description":"Return the checklist to audit existing ROKI code, ordered by how badly each item fails in production. Use it when reviewing an integration you did not write, or before going live.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"focus":{"description":"Optional area: \"webhooks\", \"security\", \"payments\", \"reversals\".","type":"string"}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_check_result","description":"Compare the payment the API returned against the body you sent, and report anything that does not match. Every other check here looks at what you SEND. This one exists for the errors that survive that: the field name was right and the VALUE was wrong. The API answers 201, `warnings` comes back empty because there was nothing to warn about, and the merchant charged something else. Catches the amount off by a factor of 100, fee pass-through asked for and returned as zero, tax that was not applied, `expires_at` already in the past because it was sent as UTC instead of Honduras time, a total that does not add up, and a `transaction_id` parsed as a number. Run it after every createPayment while you are building, and in your own tests afterwards.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"sent":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{},"description":"The JSON request body you sent to POST /payments."},"received":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{},"description":"The payment object the API returned. Paste the response as-is."}},"required":["sent","received"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_choose_integration_mode","description":"Decide how to integrate ROKI Connect for a given project (web checkout, embedded card fields, mobile app, invoices or recurring billing) and get the constraints that apply before writing code. The modes and the endpoints behind them are read from the corpus, so this answer cannot describe a mode the API no longer has - or miss one it gained.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"context":{"type":"string","description":"What the project is: e.g. \"Laravel e-commerce checkout\", \"iOS app\", \"card fields on my own page\", \"invoices from an ERP\", \"monthly subscriptions\"."}},"required":["context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_get_authentication_guide","description":"How authentication works, how the two environments are selected, where credentials come from, and how to store and rotate them safely.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_get_doc_section","description":"Return the complete text of one section of the integration guide, by number (e.g. \"14\"), sub-number (\"12.1\") or title fragment (\"webhook\").","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"ref":{"type":"string","description":"Section number, sub-number, or a fragment of its title."}},"required":["ref"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_get_error","description":"Explain an HTTP status or an error message returned by the ROKI API: what it means, the likely cause and what to do. Use this instead of guessing when an integration fails.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"error":{"type":"string","description":"HTTP status (\"422\"), or a fragment of the message (\"Pago no encontrado\", \"route could not be found\", \"sandbox\")."}},"required":["error"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_get_integration_example","description":"Return a complete, runnable integration example for a stack: configuration, API client, checkout flow, webhook handler with signature verification, and polling fallback.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"stack":{"description":"e.g. \"laravel\", \"php\", \"node\", \"express\", \"python\", \"fastapi\". Omit to list what is available.","type":"string"}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_get_operation","description":"Full detail for one operation: method, path, headers, request schema field table, responses, and worked examples.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"operation":{"type":"string","description":"operationId (e.g. \"createPayment\"), or \"METHOD /path\" (e.g. \"POST /payments\")."}},"required":["operation"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_get_quickstart","description":"The minimum viable integration sequence, end to end, including the manual portal steps a developer cannot skip.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_get_schema","description":"Return a fully dereferenced JSON Schema by name (e.g. \"PaymentCreateRequest\", \"Payment\", \"WebhookEvent\"). Use it to know the exact field names, types and constraints.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"name":{"description":"Schema name. Omit to list all available schemas.","type":"string"}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_get_webhook_guide","description":"Everything about webhooks: portal registration, event types, payload shape, HMAC signature verification over the raw body, idempotent processing, and the polling fallback.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_list_operations","description":"List every operation the API actually exposes, plus the operations that are documented as NOT existing. Call this before writing any integration code so you never invent an endpoint.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_sandbox_info","description":"Whether the sandbox playground is enabled here, which operations it accepts, its limits, and the sandbox test cards.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_sandbox_try","description":"Runs a documented operation against the ROKI sandbox using THIS SERVER'S own test credential, and returns the actual response. Use it to prove an integration works instead of assuming it does - especially after roki_validate_request says a payload is valid.\n\nYou never supply a key: this server holds a sandbox-only credential and refuses to run against production. Amounts are capped and links expire quickly, because the sandbox is shared.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"operation":{"type":"string","description":"operationId to run, e.g. \"createPayment\", \"getPayment\", \"voidTransaction\"."},"payload":{"description":"Request body for POST operations, or path values such as {\"id\": 123} / {\"transaction_id\": \"uuid\"}.","type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}},"required":["operation"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_scaffold_integration","description":"Return the full runnable skeleton for a stack: credential storage, API client, checkout flow, webhook handler with signature verification, and the polling fallback. Use it to start an integration instead of assembling one from memory.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"stack":{"type":"string","description":"e.g. \"laravel\", \"node\", \"express\", \"python\", \"fastapi\", \"php\"."},"mode":{"description":"\"hosted\" (default), \"embedded\" or \"saved-card\".","type":"string"}},"required":["stack"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_search_docs","description":"Search the official ROKI Connect corpus (integration guide, API operations and schemas) and return ranked excerpts. Use this first when you need any ROKI-specific fact. Never answer a ROKI question from memory or from another payment gateway's conventions.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"query":{"type":"string","minLength":2,"description":"What you need to know, e.g. \"webhook signature\", \"tip fields\", \"idempotency\"."},"limit":{"description":"Maximum results (default 6).","type":"integer","minimum":1,"maximum":15}},"required":["query"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_status","description":"Server version, corpus contents and freshness. Safe first call to confirm the connection works. Exposes no credentials and no merchant data.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_validate_request","description":"Validate a payload against the official schema WITHOUT sending it, and check the business rules the API enforces. Critical for this API: it ignores unknown fields and returns 201, so a typo produces a misconfigured payment rather than an error. The response names what it dropped in `warnings`, but by then the payment exists - validating here means it is never created. Always validate before writing or shipping integration code.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"operation":{"type":"string","description":"operationId, e.g. \"createPayment\"."},"payload":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{},"description":"The JSON request body you intend to send."}},"required":["operation","payload"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"roki_verify_webhook_signature","description":"Check a ROKI-Signature header against the raw body and the signing secret. When it fails, this does not just say \"invalid\" - it tries the specific wrong constructions developers actually write and tells you which mistake you made. Use it whenever webhook verification rejects real events. On the signing secret: this is ROKI's own server and ROKI issued that secret, so sending it here discloses nothing new. It is used to recompute the HMAC and is never stored, logged or counted.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"raw_body":{"type":"string","description":"The EXACT raw request body as received, byte for byte, before any JSON parsing."},"signature_header":{"type":"string","description":"The full ROKI-Signature header value, e.g. \"t=1719234300,v1=8f3c...\""},"signing_secret":{"type":"string","description":"The signing secret from the portal, for the same environment as the event. Held in memory for the duration of the call only: this server logs no tool arguments."}},"required":["raw_body","signature_header","signing_secret"],"$schema":"http://json-schema.org/draft-07/schema#"}}],"scan":{"score":60,"grade":"C","scanned_at":"2026-09-23T04:57:32.288Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-23T04:57:32.250Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 1085ms"]},"poisoning":{"score":15,"max":15,"notes":["19 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 1 write-action tools with no auth"]},"maintenance":{"score":3,"max":15,"notes":["no repository listed"]},"identity":{"score":4,"max":10,"notes":["verified namespace with website, no repo"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"},{"id":"maint.no-repo","severity":"low","component":"maintenance","title":"No source repository listed"}],"inputs":{"probes":[{"url":"https://mcp.roki.la/mcp","reachable":true,"authRequired":false,"latencyMs":1085,"serverInfo":{"name":"roki-connect","version":"1.0.0"}}],"packages":[],"repo":{"found":false},"icon":{"url":"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' rx='7' fill='%2308090d'/%3E%3Ctext x='16' y='23' font-family='system-ui,sans-serif' font-size='18' font-weight='800' fill='%2391DDE6' text-anchor='middle'%3ER%3C/text%3E%3Crect x='19' y='6' width='9' height='3' rx='1' fill='%23FF8669'/%3E%3C/svg%3E","source":"site"},"presence":{"stars":null,"forks":null,"downloadsWeek":null,"license":null,"lastPushAt":null,"score":8}}}},"grade_history":[],"reviews":[]}