forked from itential/itential.mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp_default_passwords.yaml
More file actions
34 lines (30 loc) · 1.29 KB
/
Copy pathmcp_default_passwords.yaml
File metadata and controls
34 lines (30 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
# In this example, the Deployer will install and configure the Itential MCP server
# on a single VM using the SSE transport.
# Default MCP server settings will be used.
# The MCP server will connect to an existing Itential Platform over HTTPS.
all:
children:
mcp:
hosts:
mcp01.example.com:
vars:
# The transport is set to SSE so AI clients can connect over the network.
# - valid values: sse, http
mcp_transport: sse
# The Itential Platform host must be defined.
# This must be the hostname or IP of an existing, running Itential Platform.
mcp_platform_host: <itential-platform-hostname>
# The default platform credentials are overridden.
# NOTE: Using Ansible Vault for these values is highly recommended.
mcp_platform_user: <itential-platform-username>
mcp_platform_password: <itential-platform-password>
# The default server host and port are used.
# mcp_host: "0.0.0.0"
# mcp_port: 8000
# Platform connection defaults to HTTPS (port 3443).
# Override for HTTP: mcp_platform_port: 3000 and mcp_platform_tls: false
# mcp_platform_port: 3443
# mcp_platform_tls: true
# mcp_platform_disable_verify: false
# mcp_platform_timeout: 30