Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoSign in
Socket

@rapay/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rapay/mcp-server - npm Package Compare versions

Comparing version
1.2.1
to
1.2.2
+3
-3
dist/handlers.js

@@ -501,5 +501,5 @@ /**

const amountDollars = args.amount / 100;
// Calculate fee breakdown using integer math to avoid floating point errors
// 2% Ra Pay application fee: fee_cents = amount_cents * 2 / 100
const rapayFeeCents = Math.round(args.amount * 0.02);
// Calculate fee breakdown using true integer math to avoid floating point errors
// 2% Ra Pay application fee: integer ceiling of (amount_cents * 2 / 100)
const rapayFeeCents = Math.floor((args.amount * 2 + 99) / 100);
const recipientReceivesCents = args.amount - rapayFeeCents;

@@ -506,0 +506,0 @@ // Convert to dollars for display (after integer calculation)

@@ -16,3 +16,3 @@ #!/usr/bin/env node

*/
export declare const SERVER_VERSION = "1.2.1";
export declare const SERVER_VERSION = "1.2.2";
//# sourceMappingURL=index.d.ts.map

@@ -26,3 +26,3 @@ #!/usr/bin/env node

const SERVER_NAME = "rapay-mcp";
export const SERVER_VERSION = "1.2.1";
export const SERVER_VERSION = "1.2.2";
/**

@@ -29,0 +29,0 @@ * Initialize MCP server

{
"name": "@rapay/mcp-server",
"version": "1.2.1",
"version": "1.2.2",
"description": "Ra Pay MCP Server for Claude Desktop and Claude Code - AI Agent Payment Infrastructure",

@@ -5,0 +5,0 @@ "type": "module",