collection-api-refacil-mcp 1.0.6 → 1.0.7

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
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: 'collection-api-refacil-mcp',
14
- version: '1.0.6'
14
+ version: '1.0.7'
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: 'collection-api-refacil-mcp',
147
147
  description: 'MCP API for Collection API Refacil',
148
- version: '1.0.6',
148
+ version: '1.0.7',
149
149
  tools: tools.map(tool => ({
150
150
  name: tool.name,
151
151
  description: tool.description
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "collection-api-refacil-mcp",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "MCP Server para la API collection-api-refacil",
5
5
  "main": "dist/index.js",
6
6
  "bin": "dist/index.js",