pinelabs-mcp 1.0.1 → 1.0.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/README.md CHANGED
@@ -102,7 +102,7 @@ See the [complete tools reference](https://developer.pinelabsonline.com/docs/mcp
102
102
  |-------|-----|
103
103
  | Missing credentials | Run `npx pinelabs-mcp configure` or set `PINELABS_CLIENT_ID` / `PINELABS_CLIENT_SECRET` in your MCP client's `env` block |
104
104
  | Tools not appearing | Restart your AI assistant; verify Node.js 18+ (`node --version`); set `"DEBUG": "true"` in `env` |
105
- | Connection issues | Verify credentials; check network access to `pinelabs-online-mcp-server.pluralpay.in`; allow HTTPS if behind a proxy |
105
+ | Connection issues | Verify credentials; check network access to `mcp.pluralpay.in`; allow HTTPS if behind a proxy |
106
106
 
107
107
  ## License
108
108
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinelabs-mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "MCP client for Pine Labs payment gateway — connect Claude Desktop, Cursor, and VS Code to Pine Labs payment APIs using your client credentials.",
5
5
  "main": "src/config.js",
6
6
  "bin": {
package/src/config.js CHANGED
@@ -9,7 +9,7 @@
9
9
  */
10
10
 
11
11
  const ENDPOINTS = {
12
- prod: "https://pinelabs-online-mcp-server.pluralpay.in/mcp",
12
+ prod: "https://mcp.pluralpay.in/mcp",
13
13
  uat: "https://pluralai.v2.pinepg.in/mcp",
14
14
  };
15
15