@smsmasivos/mcp-server 0.3.1 → 0.3.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 +67 -20
- package/dist/stdio.js +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,21 +18,71 @@ Conecta tu asistente de IA con SMS Masivos para enviar mensajes, gestionar conta
|
|
|
18
18
|
|
|
19
19
|
## Quick Start
|
|
20
20
|
|
|
21
|
+
Necesitas una API key de SMS Masivos. Obtenla en [tu panel](https://app.smsmasivos.com.mx).
|
|
22
|
+
|
|
23
|
+
### Opcion 1: Remoto (recomendado — sin instalar nada)
|
|
24
|
+
|
|
25
|
+
Agrega esta configuracion a tu herramienta de IA y listo:
|
|
26
|
+
|
|
27
|
+
```json
|
|
28
|
+
{
|
|
29
|
+
"mcpServers": {
|
|
30
|
+
"smsmasivos": {
|
|
31
|
+
"type": "http",
|
|
32
|
+
"url": "https://mcp.smsmasivos.com.mx/mcp",
|
|
33
|
+
"headers": {
|
|
34
|
+
"Authorization": "Bearer tu-api-key"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Opcion 2: Local (requiere Node.js)
|
|
42
|
+
|
|
21
43
|
```bash
|
|
22
44
|
npx @smsmasivos/mcp-server
|
|
23
45
|
```
|
|
24
46
|
|
|
25
|
-
|
|
47
|
+
```json
|
|
48
|
+
{
|
|
49
|
+
"mcpServers": {
|
|
50
|
+
"smsmasivos": {
|
|
51
|
+
"command": "npx",
|
|
52
|
+
"args": ["-y", "@smsmasivos/mcp-server"],
|
|
53
|
+
"env": {
|
|
54
|
+
"SMSMASIVOS_API_KEY": "tu-api-key"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
```
|
|
26
60
|
|
|
27
|
-
## Configuracion
|
|
61
|
+
## Configuracion por herramienta
|
|
28
62
|
|
|
29
63
|
### Claude Desktop
|
|
30
64
|
|
|
31
|
-
Agrega
|
|
65
|
+
Agrega a tu archivo de configuracion:
|
|
32
66
|
|
|
33
67
|
- **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
34
68
|
- **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
|
|
35
69
|
|
|
70
|
+
**Remoto (recomendado):**
|
|
71
|
+
```json
|
|
72
|
+
{
|
|
73
|
+
"mcpServers": {
|
|
74
|
+
"smsmasivos": {
|
|
75
|
+
"type": "http",
|
|
76
|
+
"url": "https://mcp.smsmasivos.com.mx/mcp",
|
|
77
|
+
"headers": {
|
|
78
|
+
"Authorization": "Bearer tu-api-key"
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
**Local:**
|
|
36
86
|
```json
|
|
37
87
|
{
|
|
38
88
|
"mcpServers": {
|
|
@@ -49,6 +99,12 @@ Agrega esto a tu archivo de configuracion:
|
|
|
49
99
|
|
|
50
100
|
### Claude Code
|
|
51
101
|
|
|
102
|
+
**Remoto (recomendado):**
|
|
103
|
+
```bash
|
|
104
|
+
claude mcp add smsmasivos --transport http https://mcp.smsmasivos.com.mx/mcp -H "Authorization: Bearer tu-api-key"
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
**Local:**
|
|
52
108
|
```bash
|
|
53
109
|
claude mcp add smsmasivos -e SMSMASIVOS_API_KEY=tu-api-key -- npx -y @smsmasivos/mcp-server
|
|
54
110
|
```
|
|
@@ -57,24 +113,22 @@ claude mcp add smsmasivos -e SMSMASIVOS_API_KEY=tu-api-key -- npx -y @smsmasivos
|
|
|
57
113
|
|
|
58
114
|
Agrega a `.cursor/mcp.json` en tu proyecto:
|
|
59
115
|
|
|
116
|
+
**Remoto (recomendado):**
|
|
60
117
|
```json
|
|
61
118
|
{
|
|
62
119
|
"mcpServers": {
|
|
63
120
|
"smsmasivos": {
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
121
|
+
"type": "http",
|
|
122
|
+
"url": "https://mcp.smsmasivos.com.mx/mcp",
|
|
123
|
+
"headers": {
|
|
124
|
+
"Authorization": "Bearer tu-api-key"
|
|
68
125
|
}
|
|
69
126
|
}
|
|
70
127
|
}
|
|
71
128
|
}
|
|
72
129
|
```
|
|
73
130
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
Agrega a `~/.codeium/windsurf/mcp_config.json`:
|
|
77
|
-
|
|
131
|
+
**Local:**
|
|
78
132
|
```json
|
|
79
133
|
{
|
|
80
134
|
"mcpServers": {
|
|
@@ -89,16 +143,9 @@ Agrega a `~/.codeium/windsurf/mcp_config.json`:
|
|
|
89
143
|
}
|
|
90
144
|
```
|
|
91
145
|
|
|
92
|
-
###
|
|
93
|
-
|
|
94
|
-
Si tienes [Bun](https://bun.sh) instalado, reemplaza `npx` por `bunx` en cualquier configuracion:
|
|
146
|
+
### Windsurf
|
|
95
147
|
|
|
96
|
-
|
|
97
|
-
{
|
|
98
|
-
"command": "bunx",
|
|
99
|
-
"args": ["-y", "@smsmasivos/mcp-server"]
|
|
100
|
-
}
|
|
101
|
-
```
|
|
148
|
+
Agrega a `~/.codeium/windsurf/mcp_config.json` — misma configuracion que Cursor (remoto o local).
|
|
102
149
|
|
|
103
150
|
## Tools disponibles
|
|
104
151
|
|
package/dist/stdio.js
CHANGED
|
File without changes
|