@rapay/mcp-server 1.3.1 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/handlers.js CHANGED
@@ -36,7 +36,7 @@ const CLI_PATH = (() => {
36
36
  */
37
37
  const MAX_OUTPUT_SIZE = 1024 * 1024; // 1MB
38
38
  const RATE_LIMITS = {
39
- ra_send: { windowMs: 60000, maxCalls: 1 },
39
+ ra_send: { windowMs: 60000, maxCalls: 3 },
40
40
  ra_refund: { windowMs: 60000, maxCalls: 5 },
41
41
  ra_add_card: { windowMs: 60000, maxCalls: 5 },
42
42
  ra_balance: { windowMs: 60000, maxCalls: 10 },
package/dist/index.d.ts CHANGED
@@ -13,5 +13,5 @@
13
13
  * - Privacy preserved (dumb pipe model intact)
14
14
  * - No blockers
15
15
  */
16
- export declare const SERVER_VERSION = "1.3.1";
16
+ export declare const SERVER_VERSION = "1.3.2";
17
17
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -23,7 +23,7 @@ import { checkForUpdates } from "./version-check.js";
23
23
  * Server metadata
24
24
  */
25
25
  const SERVER_NAME = "rapay-mcp";
26
- export const SERVER_VERSION = "1.3.1";
26
+ export const SERVER_VERSION = "1.3.2";
27
27
  /**
28
28
  * Initialize MCP server
29
29
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rapay/mcp-server",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "mcpName": "ai.rapay/mcp-server",
5
5
  "description": "Ra Pay MCP Server for Claude Desktop and Claude Code - AI Agent Payment Infrastructure",
6
6
  "type": "module",