Connect MCP clients to Thalovant control-plane and hub runtime APIs over stdio or Streamable HTTP.
Runs locally over stdio
This server isn't hosted — your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).
Run
npx -y @thalovant/mcp-server
MCP client config
{
"mcpServers": {
"thalovant-mcp": {
"command": "npx",
"args": [
"-y",
"@thalovant/mcp-server"
]
}
}
}Run
docker run -i --rm ghcr.io/thalovant/thalovant-mcp:0.1.16
MCP client config
{
"mcpServers": {
"thalovant-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/thalovant/thalovant-mcp:0.1.16"
]
}
}
}