You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: hardcode port 8443, remove CUCM_PORT env var
CUCM HTTPS port is always 8443 — not configurable.
Removed CUCM_PORT env var, cucm_port tool parameter, and port
from CucmCredentials interface. Port is now a constant.
Standard env vars: CUCM_HOST, CUCM_USERNAME, CUCM_PASSWORD.
Same as cisco-axl-mcp. Set once in ~/.zshrc, all MCPs use them.
|`CUCM_HOST`| Yes | — | CUCM publisher hostname or IP |
92
-
|`CUCM_USERNAME`| Yes | — | CUCM admin username |
93
-
|`CUCM_PASSWORD`| Yes | — | CUCM admin password |
94
-
|`CUCM_PORT`| No |`8443`| CUCM HTTPS port |
95
-
|`RIS_MCP_LOG_LEVEL`| No |`warn`| Log level: `debug`, `info`, `warn`, `error`|
96
-
|`RIS_MCP_TLS_MODE`| No |`permissive`| Set to `strict` to reject self-signed certs |
97
-
98
-
All credentials can also be passed per-tool-call via `cucm_host`, `cucm_username`, `cucm_password`, `cucm_port` parameters — useful for querying multiple clusters in a single session.
89
+
| Variable | Required | Description |
90
+
|----------|----------|-------------|
91
+
|`CUCM_HOST`| Yes | CUCM publisher hostname or IP |
|`RIS_MCP_TLS_MODE`| No | Set to `strict` to reject self-signed certs (default: permissive) |
96
+
97
+
These are the same env vars used by [`@calltelemetry/cisco-axl-mcp`](https://github.com/calltelemetry/cisco-axl-mcp). Set them once in `~/.zshrc` and all CallTelemetry MCP servers use them. Port is always 8443.
98
+
99
+
Per-tool-call overrides (`cucm_host`, `cucm_username`, `cucm_password`) are available for querying multiple clusters in a single session.
0 commit comments