CLI Referencevalqore mcp
valqore mcp
Start the MCP server for AI agent integration.
valqore mcp
Start the Model Context Protocol (MCP) server, exposing 78 tools for infrastructure governance via AI agents.
Usage
valqore mcp [OPTIONS]Options
| Flag | Default | Description |
|---|---|---|
--transport <type> | stdio | Transport protocol: stdio, sse, or http. |
--host <addr> | 127.0.0.1 | Bind address for SSE/HTTP transports. |
--port <port> | 3100 | Port for SSE/HTTP transports. |
Claude Desktop Setup
Add Valqore to your claude_desktop_config.json:
{
"mcpServers": {
"valqore": {
"command": "valqore",
"args": ["mcp"],
"env": {
"KUBECONFIG": "/home/user/.kube/config",
"AWS_PROFILE": "production"
}
}
}
}SSE / HTTP Transport
# Start with SSE transport on a custom port
valqore mcp --transport sse --port 8080
# Start with HTTP transport for remote access
valqore mcp --transport http --host 0.0.0.0 --port 3100Was this helpful?
Prev