Odel
Thalovant MCP

Thalovant MCP

Local
@thalovantTypeScriptMITUpdated 3 days ago

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).

npm@thalovant/mcp-serverv0.1.16

Run

npx -y @thalovant/mcp-server

MCP client config

{
  "mcpServers": {
    "thalovant-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@thalovant/mcp-server"
      ]
    }
  }
}
Dockerghcr.io/thalovant/thalovant-mcp:0.1.16

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"
      ]
    }
  }
}