Temporal (uvx) MCP Server
CommunityContributed by Michael Toscano
Manage Temporal workflows through natural language. Start, query, signal, cancel and inspect workflow executions, run batch operations, and manage schedules on a self-hosted Temporal cluster or Temporal Cloud.
About the Temporal (uvx) MCP Server
The Temporal (uvx) MCP server is a local (stdio) Model Context Protocol server available in the McpMux registry. Manage Temporal workflows through natural language. Start, query, signal, cancel and inspect workflow executions, run batch operations, and manage schedules on a self-hosted Temporal cluster or Temporal Cloud. This is a community-contributed MCP server by Michael Toscano.
Install the Temporal (uvx) MCP server with one click using McpMux. It works with Cursor, Claude Desktop, Claude Code, VS Code, ChatGPT, Windsurf, JetBrains, and any MCP-compatible AI client. This server requires authentication — McpMux securely stores your credentials with AES-256-GCM encryption.
Transport Configuration
{
"type": "stdio",
"command": "uvx",
"args": [
"temporal-mcp-server"
],
"env": {
"TEMPORAL_HOST": "${input:TEMPORAL_HOST}",
"TEMPORAL_NAMESPACE": "${input:TEMPORAL_NAMESPACE}",
"TEMPORAL_API_KEY": "${input:TEMPORAL_API_KEY}",
"TEMPORAL_TLS_ENABLED": "${input:TEMPORAL_TLS_ENABLED}",
"TEMPORAL_TLS_CLIENT_CERT_PATH": "${input:TEMPORAL_TLS_CLIENT_CERT_PATH}",
"TEMPORAL_TLS_CLIENT_KEY_PATH": "${input:TEMPORAL_TLS_CLIENT_KEY_PATH}"
},
"metadata": {
"inputs": [
{
"id": "TEMPORAL_HOST",
"label": "Temporal Host",
"description": "Temporal frontend address as host:port. Use localhost:7233 for a local cluster, or your Temporal Cloud gRPC endpoint such as <namespace>.<account>.tmprl.cloud:7233.",
"type": "text",
"required": true,
"secret": false,
"placeholder": "localhost:7233",
"default": "localhost:7233"
},
{
"id": "TEMPORAL_NAMESPACE",
"label": "Temporal Namespace",
"description": "Namespace to connect to. Defaults to 'default' for local clusters; on Temporal Cloud use your namespace id (e.g. my-namespace.a1b2c).",
"type": "text",
"required": true,
"secret": false,
"placeholder": "default",
"default": "default"
},
{
"id": "TEMPORAL_API_KEY",
"label": "Temporal Cloud API Key",
"description": "Temporal Cloud API key. Leave empty for a local/self-hosted cluster without auth. When set, TLS is enabled automatically.",
"type": "text",
"required": false,
"secret": true,
"placeholder": "tmprl_*********************************",
"obtain": {
"url": "https://cloud.temporal.io/settings/api-keys",
"instructions": "1. Sign in to Temporal Cloud\n2. Go to Settings > API Keys\n3. Generate a new API key\n4. Copy the key value (shown only once)",
"button_label": "Create API Key"
}
},
{
"id": "TEMPORAL_TLS_ENABLED",
"label": "Enable TLS",
"description": "Set to true to force TLS. Leave empty to auto-detect (TLS turns on automatically when an API key or mTLS cert/key is provided).",
"type": "boolean",
"required": false,
"secret": false,
"placeholder": "false"
},
{
"id": "TEMPORAL_TLS_CLIENT_CERT_PATH",
"label": "mTLS Client Certificate Path",
"description": "Path to the client certificate (PEM) for mTLS authentication. Use this instead of an API key when connecting with client certificates. Leave empty if not using mTLS.",
"type": "file_path",
"required": false,
"secret": false,
"placeholder": "/path/to/client.pem"
},
{
"id": "TEMPORAL_TLS_CLIENT_KEY_PATH",
"label": "mTLS Client Key Path",
"description": "Path to the client private key (PEM) for mTLS authentication. Pair with the client certificate. Leave empty if not using mTLS.",
"type": "file_path",
"required": false,
"secret": false,
"placeholder": "/path/to/client.key"
}
]
}
}Categories
Tags
Supported AI Clients
The Temporal (uvx) MCP server works with all MCP-compatible AI clients through McpMux:
Related MCP Servers
GitHub (Docker)
Interact with GitHub repositories, issues, pull requests, and code security via Docker container. Supports both github.com and GitHub Enterprise instances. Requires Docker installed.
GitHub (Remote PAT)
Interact with GitHub repositories, issues, pull requests, actions, and code security through GitHub's hosted remote MCP server. Authenticates with a Personal Access Token.
Atlassian (Jira & Confluence)
Interact with Jira issues, Confluence pages, and Compass components through Atlassian's official remote MCP server.
Figma
Generate code from Figma designs, extract design context, variables, and components through Figma's official hosted MCP server. Supports Code Connect for design system consistency, FigJam content, and browser-to-Figma live capture.
Figma (npx)
Read and inspect Figma designs, components, and styles. Extract layout details, design tokens, and asset metadata from any Figma file. Translates auto-layout to CSS flexbox. Supports image downloads.
GitLab
GitLab's built-in MCP server for managing issues, merge requests, pipelines, and semantic code search. Requires GitLab 18.6+ with Duo enabled. Connects directly to any GitLab instance via OAuth.
Install Temporal (uvx) with McpMux
One-click install from the McpMux desktop app. Auto-configures for Cursor, Claude, VS Code, ChatGPT, Windsurf, JetBrains, and any MCP-compatible client.