paygate-mcp 0.1.2 → 0.1.3
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/README.md +9 -0
- package/dist/cli.js +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -155,6 +155,15 @@ const { port, adminKey } = await server.start();
|
|
|
155
155
|
- Admin key never exposed in responses
|
|
156
156
|
- Rate limiting is per-key, concurrent-safe
|
|
157
157
|
|
|
158
|
+
## Current Limitations
|
|
159
|
+
|
|
160
|
+
- **In-memory storage** — All API keys, credits, and usage data live in memory. Restarting the server resets everything. This is fine for development and testing.
|
|
161
|
+
- **Credits are not real money** — Credits are just integers. There is no payment processor integration yet.
|
|
162
|
+
- **Single process** — No clustering or horizontal scaling.
|
|
163
|
+
- **Stdio transport only** — The wrapped MCP server must use stdio (most do).
|
|
164
|
+
|
|
165
|
+
Persistent storage and Stripe integration are on the roadmap.
|
|
166
|
+
|
|
158
167
|
## Requirements
|
|
159
168
|
|
|
160
169
|
- Node.js >= 18.0.0
|
package/dist/cli.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "paygate-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Pay-per-tool-call gating proxy for MCP servers. Wrap any MCP server with API key auth, per-tool pricing, rate limiting, and usage metering.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,6 @@
|
|
|
25
25
|
},
|
|
26
26
|
"keywords": ["mcp", "paygate", "monetize", "pay-per-call", "api-key", "rate-limit", "model-context-protocol", "ai-agent", "billing"],
|
|
27
27
|
"license": "MIT",
|
|
28
|
+
"homepage": "https://paygated.dev",
|
|
28
29
|
"engines": { "node": ">=18.0.0" }
|
|
29
30
|
}
|