Connect any MCP-compatible AI assistant to CAST Highlight. Ask CAST about software health, cloud maturity, open source risks, and AI acceleration insights of your application portfolio — conversationally.
Stop switching contexts. Your AI assistant can now query CAST Highlight directly — surfacing the signals that matter, when they matter.
Are any applications still using the log4j component?
Drill into Adempiere. Give me a 30-second executive diagnosis: what are its three biggest risks, what evidence supports them?
Looking at our portfolio in Highlight, which applications should we consider moving to cloud first and why?
Which applications are likely costing me most to operate on the cloud?
Which applications are the best candidates for retirement or replacement?
Three steps. No infrastructure. Just your CAST Highlight credentials and an MCP-compatible client.
HIGHLIGHT_API_KEY=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
HIGHLIGHT_DOMAIN=123456
MCP_URL=https://demo.casthighlight.com/mcp
YOU'RE ALL SET UP!
Copy the configuration for your tool, drop it in the right file, and you're connected. No guesswork on syntax or file paths.
"mcpServers": {
"AskCAST": {
"command": "npx",
"args": [
"mcp-remote@latest",
"[SERVER_URL]/mcp",
"--header",
"highlight_api_key:${HIGHLIGHT_API_KEY}",
"--header",
"highlight_domain:${HIGHLIGHT_DOMAIN}"
],
"env": {
"HIGHLIGHT_API_KEY": "[USER_TOKEN]",
"HIGHLIGHT_DOMAIN": "[DOMAIN_ID]"
}
}
}
{
"mcpServers": {
"AskCAST": {
"type": "http",
"url": "[SERVER_URL]/mcp",
"headers": {
"highlight_domain": "[DOMAIN_ID]",
"highlight_api_key": "[USER_TOKEN]"
}
}
}
}
{
"mcpServers": {
"AskCAST": {
"url": "https://rpa.casthighlight.com/mcp/sse",
"headers": {
"Authorization": "Bearer hl_live_7f3a91bc2e084d6f_Kx9mTqVpNzR2wYsL4uJhDcBgAeF8iO"
}
}
}
}
{
"inputs": [
{
"type": "promptString",
"id": "highlight-domain",
"description": "CAST Highlight domain/company ID"
},
{
"type": "promptString",
"id": "highlight-api-token",
"description": "CAST Highlight user token",
"password": true
}
],
"servers": {
"AskCAST": {
"type": "http",
"url": "[SERVER_URL]/mcp",
"headers": {
"Accept": "application/json, text/event-stream",
"highlight_domain": "${input:highlight-domain}",
"highlight_api_key": "${input:highlight-api-token}"
}
}
}
}
[mcp_servers."AskCAST"]
url = "[SERVER_URL]/mcp"
trust = true
startup_timeout_sec = 30
tool_timeout_sec = 300
http_headers = {
Accept = "application/json, */*;q=0.1",
highlight_domain = "[DOMAIN_ID]",
highlight_api_key = "[USER_TOKEN]"
}
"mcpServers": {
"AskCAST": {
"httpUrl": "[SERVER_URL]/mcp",
"headers": {
"Accept": "application/json, */*;q=0.1",
"highlight_api_key": "[USER_TOKEN]",
"highlight_domain": "[DOMAIN_ID]"
},
"trust": true,
"timeout": 30000
}
}