refacil-pay-mcp 1.0.1 → 1.0.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 +1 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -151,14 +151,13 @@ nano .env
|
|
|
151
151
|
| `PORT` | Puerto del servidor | `3009` |
|
|
152
152
|
| `ENVIRONMENT` | Entorno de ejecución | `development` |
|
|
153
153
|
| `BASE_URL` | URL base de la API | `https://pay-api.qa.refacil.co` |
|
|
154
|
-
|
|
155
|
-
|
|
156
154
|
| `USERNAME` | Usuario para autenticación | `your_username_here` |
|
|
157
155
|
| `PASSWORD` | Contraseña para autenticación | `your_password_here` |
|
|
158
156
|
| `AUTH_ENDPOINT` | Endpoint de autenticación | `/auth/login` |
|
|
159
157
|
| `TOKEN_CACHE_TTL` | TTL del caché de tokens (segundos) | `3600` |
|
|
160
158
|
| `MCP_TOKEN` | Token de autenticación del MCP | `mcp-secret-token-refacil-pay` |
|
|
161
159
|
|
|
160
|
+
|
|
162
161
|
## 🐳 Docker
|
|
163
162
|
|
|
164
163
|
```bash
|
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import { appConfig as config } from './config.js';
|
|
|
11
11
|
const mode = process.argv.includes('--http') || process.env.MCP_MODE === 'http' ? 'http' : 'stdio';
|
|
12
12
|
const server = new McpServer({
|
|
13
13
|
name: 'refacil-pay-mcp',
|
|
14
|
-
version: '1.0.
|
|
14
|
+
version: '1.0.3'
|
|
15
15
|
});
|
|
16
16
|
// Registrar herramientas MCP
|
|
17
17
|
for (const tool of tools) {
|