refacil-pay-mcp 1.1.19 → 1.1.21

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/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.1.19'
14
+ version: '1.1.21'
15
15
  });
16
16
  // Nota para LLMs: 🔐 Autenticación automática y configuración de servidor
17
17
  // - Todas las credenciales (secretId, apiToken, tokens) se manejan automáticamente desde la configuración del servidor.
@@ -145,7 +145,7 @@ else if (mode === 'http') {
145
145
  return {
146
146
  name: 'refacil-pay-mcp',
147
147
  description: 'MCP para Refacil Pay API - Gestión de pagos y transacciones',
148
- version: '1.1.19',
148
+ version: '1.1.21',
149
149
  tools: tools.map(tool => ({
150
150
  name: tool.name,
151
151
  description: tool.description
package/package.json CHANGED
@@ -1,64 +1,64 @@
1
- {
2
- "name": "refacil-pay-mcp",
3
- "version": "1.1.19",
4
- "description": "MCP Server para la API refacil-pay",
5
- "main": "dist/index.js",
6
- "bin": "dist/index.js",
7
- "type": "module",
8
- "scripts": {
9
- "build": "tsc",
10
- "start": "node dist/index.js",
11
- "start:http": "node dist/index.js --http",
12
- "dev": "tsx watch src/index.ts",
13
- "dev:http": "tsx watch src/index.ts --http",
14
- "clean": "rimraf dist",
15
- "prepublishOnly": "npm run clean && npm run build",
16
- "preversion": "npm run build",
17
- "postversion": "git push && git push --tags"
18
- },
19
- "dependencies": {
20
- "@modelcontextprotocol/sdk": "^1.17.3",
21
- "fastify": "^5.7.4",
22
- "axios": "^1.6.2",
23
- "zod": "^3.22.4",
24
- "dotenv": "^16.3.1"
25
- },
26
- "devDependencies": {
27
- "@types/node": "^20.10.0",
28
- "typescript": "^5.3.2",
29
- "tsx": "^4.6.2",
30
- "rimraf": "^5.0.5",
31
- "pino-pretty": "^10.2.0"
32
- },
33
- "engines": {
34
- "node": ">=20.0.0"
35
- },
36
- "overrides": {
37
- "glob": "^13.0.0"
38
- },
39
- "keywords": [
40
- "mcp",
41
- "model-context-protocol",
42
- "mcp-server",
43
- "refacil-pay",
44
- "api",
45
- "anthropic",
46
- "claude",
47
- "cursor"
48
- ],
49
- "author": "Refacil Team",
50
- "license": "MIT",
51
- "homepage": "https://github.com/refacil/refacil-pay-mcp#readme",
52
- "repository": {
53
- "type": "git",
54
- "url": "git+https://github.com/refacil/refacil-pay-mcp.git"
55
- },
56
- "bugs": {
57
- "url": "https://github.com/refacil/refacil-pay-mcp/issues"
58
- },
59
- "files": [
60
- "dist",
61
- "README.md",
62
- "LICENSE"
63
- ]
1
+ {
2
+ "name": "refacil-pay-mcp",
3
+ "version": "1.1.21",
4
+ "description": "MCP Server para la API refacil-pay",
5
+ "main": "dist/index.js",
6
+ "bin": "dist/index.js",
7
+ "type": "module",
8
+ "scripts": {
9
+ "build": "tsc",
10
+ "start": "node dist/index.js",
11
+ "start:http": "node dist/index.js --http",
12
+ "dev": "tsx watch src/index.ts",
13
+ "dev:http": "tsx watch src/index.ts --http",
14
+ "clean": "rimraf dist",
15
+ "prepublishOnly": "npm run clean && npm run build",
16
+ "preversion": "npm run build",
17
+ "postversion": "git push && git push --tags"
18
+ },
19
+ "dependencies": {
20
+ "@modelcontextprotocol/sdk": "^1.17.3",
21
+ "fastify": "^5.7.4",
22
+ "axios": "^1.6.2",
23
+ "zod": "^3.22.4",
24
+ "dotenv": "^16.3.1"
25
+ },
26
+ "devDependencies": {
27
+ "@types/node": "^20.10.0",
28
+ "typescript": "^5.3.2",
29
+ "tsx": "^4.6.2",
30
+ "rimraf": "^5.0.5",
31
+ "pino-pretty": "^10.2.0"
32
+ },
33
+ "engines": {
34
+ "node": ">=20.0.0"
35
+ },
36
+ "overrides": {
37
+ "glob": "^13.0.0"
38
+ },
39
+ "keywords": [
40
+ "mcp",
41
+ "model-context-protocol",
42
+ "mcp-server",
43
+ "refacil-pay",
44
+ "api",
45
+ "anthropic",
46
+ "claude",
47
+ "cursor"
48
+ ],
49
+ "author": "Refacil Team",
50
+ "license": "MIT",
51
+ "homepage": "https://github.com/refacil/refacil-pay-mcp#readme",
52
+ "repository": {
53
+ "type": "git",
54
+ "url": "git+https://github.com/refacil/refacil-pay-mcp.git"
55
+ },
56
+ "bugs": {
57
+ "url": "https://github.com/refacil/refacil-pay-mcp/issues"
58
+ },
59
+ "files": [
60
+ "dist",
61
+ "README.md",
62
+ "LICENSE"
63
+ ]
64
64
  }