mcp-creatio 0.6.1 → 0.6.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.
Files changed (2) hide show
  1. package/README.md +19 -1
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -126,6 +126,8 @@ Then connect using URL:
126
126
  | `READONLY_MODE` | Set `true` to disable create/update/delete operations |
127
127
  | `DISABLE_DATAFORGE` | Set `true` to never probe/register DataForge tools (even if available) |
128
128
  | `DISABLE_GLOBAL_SEARCH` | Set `true` to never probe/register the Global Search tool |
129
+ | `MCP_TRANSPORT` | Docker only: `http` (default) or `stdio` — selects the run mode |
130
+ | `PORT` | HTTP mode listen port (default `3000`) |
129
131
  | `MCP_CREATIO_LOG_LEVEL` | Log verbosity: `silent` (default), `error`, `warn`, `info` |
130
132
 
131
133
  > **Disabling optional capabilities.** DataForge and Global Search are auto-detected at
@@ -198,7 +200,12 @@ export CREATIO_PASSWORD="YourPassword"
198
200
  npm start
199
201
  ```
200
202
 
201
- ### Docker (Legacy Auth)
203
+ ### Docker
204
+
205
+ The image supports both transports, selected by `MCP_TRANSPORT` (default `http`).
206
+
207
+ **HTTP web service** (default — for remote/hosted/multi-client; required for the OAuth2
208
+ authorization-code flow):
202
209
 
203
210
  ```bash
204
211
  docker run --rm -p 3000:3000 \
@@ -208,6 +215,17 @@ docker run --rm -p 3000:3000 \
208
215
  crackish/mcp-creatio
209
216
  ```
210
217
 
218
+ **stdio** (for a local client like Claude Desktop that spawns the process — note `-i`):
219
+
220
+ ```bash
221
+ docker run -i --rm \
222
+ -e MCP_TRANSPORT=stdio \
223
+ -e CREATIO_BASE_URL="https://your-creatio.com" \
224
+ -e CREATIO_LOGIN="YourLogin" \
225
+ -e CREATIO_PASSWORD="YourPassword" \
226
+ crackish/mcp-creatio
227
+ ```
228
+
211
229
  ## Available Tools
212
230
 
213
231
  | Tool | Description |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-creatio",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "main": "dist/index.js",
5
5
  "bin": {
6
6
  "mcp-creatio": "dist/cli.js"
@@ -70,7 +70,9 @@
70
70
  "dependencies": {
71
71
  "@modelcontextprotocol/sdk": "^1.29.0",
72
72
  "@types/jsonwebtoken": "^9.0.10",
73
+ "express": "^5.2.1",
73
74
  "fast-xml-parser": "^5.9.3",
74
- "jsonwebtoken": "^9.0.3"
75
+ "jsonwebtoken": "^9.0.3",
76
+ "zod": "^4.4.3"
75
77
  }
76
78
  }