Whatever message this page gives is out now! Go check it out!
| Control | Description |
|---|---|
| Add Server | Starts the flow to create a new MCP server configuration (typically opens the edit experience where JSON is defined). |
| Clear Tools Cache | Refreshes cached tool, prompt, and resource metadata retrieved from configured servers. Use after server-side changes or when diagnostics suggest stale registrations. |
| Column | Description |
|---|---|
| Actions | Per-row operations such as edit or delete for a configured server entry. |
| Name | Human-readable identifier for the MCP server configuration. |
| Transport | Mechanism used to reach the MCP server (for example HTTP or STDIO), derived from the JSON definition. |
| Connection | Summary of how the server is reached (for example URL for HTTP, or command line for STDIO). |
| Status | Indicates whether the server is currently reachable or active from the Administrator perspective. |
headers object for custom HTTP headers (for example Authorization or API keys).mcpServers. Each named entry under mcpServers defines one MCP server.{
"mcpServers": {
"my-http-server": {
"url": "http://localhost:8500/mcp/your-server.cfm",
"headers": {
"Authorization": "Bearer token",
"X-API-Key": "optional"
}
},
"my-stdio-server": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/dir"]
}
}
}| Transport | Keys | Description |
|---|---|---|
| HTTP | url, optional headers | url is the MCP endpoint. Optional headers is an object of string header names to string values (for example bearer tokens or API keys). Do not commit real secrets to source control; use Administrator or secure deployment practices. |
| STDIO | command, args | command is the executable to launch (for example npx). args is an array of command-line arguments passed to that executable. |
{
"mcpServers": {
"serverName": {
"url": "http://localhost:8500/mcp/your-server.cfm",
"headers": {
"Authorization": "Bearer token",
"X-API-Key": "optional"
}
}
}
}npx):{
"mcpServers": {
"serverName": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/dir"]
}
}
}serverName, URLs, paths, and tokens with your deployment values.mcpServers must be unique.url is reachable from the ColdFusion server host and that TLS certificates are trusted when using HTTPS.PATH or use absolute paths where supported; confirm arguments match the MCP package documentation.