Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions .github/dependabot.yml

This file was deleted.

18 changes: 0 additions & 18 deletions .github/workflows/dependabot-auto-merge.yml

This file was deleted.

18 changes: 0 additions & 18 deletions .github/workflows/labels.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/lint.yml

This file was deleted.

77 changes: 0 additions & 77 deletions .github/workflows/release.yml

This file was deleted.

43 changes: 0 additions & 43 deletions .github/workflows/security.yml

This file was deleted.

32 changes: 0 additions & 32 deletions .github/workflows/test.yml

This file was deleted.

37 changes: 12 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Temporal MCP Server
# Temporal MCP Server — LoyaltyLion read-only fork

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Respond to this comment to discuss this review with me


> **This is a fork.** Upstream is [GethosTheWalrus/temporal-mcp](https://github.com/GethosTheWalrus/temporal-mcp). This fork removes every mutating tool (start / signal / cancel / terminate / continue_as_new, the `batch_*` trio, and the schedule mutations) so AI clients can only inspect Temporal — they can't change anything. Only six tools remain: `describe_workflow`, `get_workflow_history`, `get_workflow_result`, `list_schedules`, `list_workflows`, `query_workflow`. See `temporal_mcp/tools/tool_definitions.py` and `temporal_mcp/server.py` for the trimmed surface.
>
> The PyPI / Docker Hub distributions linked below are upstream and have the full tool set — do not use them. Install from this fork (`pip install git+https://github.com/loyaltylion/temporal-mcp@<sha>`).

## Overview

Expand All @@ -12,36 +16,19 @@ Read more on the [Temporal Code Exchange](https://temporal.io/code-exchange/temp

## Tools

### Workflow Execution
This fork exposes six read-only tools. Every other tool from upstream has been removed at the source level.

### Workflow Inspection

- **`start_workflow`** - Start a new Temporal workflow execution with specified parameters, workflow ID, and task queue
- **`get_workflow_result`** - Retrieve the result of a completed workflow execution
- **`describe_workflow`** - Get detailed information about a workflow execution including status, timing, and metadata
- **`list_workflows`** - List workflow executions based on a query filter with pagination support (limit/skip)
- **`get_workflow_result`** - Retrieve the result of a completed workflow execution
- **`get_workflow_history`** - Retrieve the complete event history of a workflow execution
- **`list_workflows`** - List workflow executions based on a query filter with pagination support (limit/skip)
- **`query_workflow`** - Query a running workflow for its current state. Read-only by Temporal contract — queries don't append history events or fire activities, though a buggy workflow-side query handler could mutate in-memory state.

### Workflow Control

- **`query_workflow`** - Query a running workflow for its current state without affecting execution
- **`signal_workflow`** - Send a signal to a running workflow to change its behavior or provide data
- **`cancel_workflow`** - Request cancellation of a running workflow execution
- **`terminate_workflow`** - Forcefully terminate a workflow execution with a reason
- **`continue_as_new`** - Signal a workflow to continue as new (restart with new inputs while preserving history link)

### Batch Operations

- **`batch_signal`** - Send a signal to multiple workflows matching a query (configurable batch size)
- **`batch_cancel`** - Cancel multiple workflows matching a query (configurable batch size)
- **`batch_terminate`** - Terminate multiple workflows matching a query with a specified reason (configurable batch size)

### Schedule Management
### Schedule Inspection

- **`create_schedule`** - Create a new schedule for periodic workflow execution using cron expressions
- **`list_schedules`** - List all schedules with pagination support (limit/skip)
- **`pause_schedule`** - Pause a schedule to temporarily stop workflow executions
- **`unpause_schedule`** - Resume a paused schedule
- **`delete_schedule`** - Permanently delete a schedule
- **`trigger_schedule`** - Manually trigger a scheduled workflow immediately

## Temporal Documentation

Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[project]
name = "temporal-mcp-server"
version = "1.1.1"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fork ships as version = "1.1.1" — identical to upstream's last release. Consumers pin by SHA per the PR description so this is mostly cosmetic, but it can create confusion if anything ever surfaces the version (e.g. pip show, --version output). Consider a fork-distinguishing form like 1.1.1+loyaltylion.1 (PEP 440 local version segment) so the lineage stays legible without affecting install ordering.

description = "MCP server for Temporal workflow orchestration"
description = "MCP server for Temporal workflow orchestration (LoyaltyLion read-only fork)"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
authors = [
{name = "Mike Toscano", email = "mike@miketoscano.com"},
]
keywords = ["temporal", "mcp", "model-context-protocol", "workflow", "orchestration"]
keywords = ["temporal", "mcp", "model-context-protocol", "workflow", "orchestration", "read-only"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand All @@ -27,9 +27,9 @@ dependencies = [
]

[project.urls]
Homepage = "https://github.com/GethosTheWalrus/temporal-mcp"
Repository = "https://github.com/GethosTheWalrus/temporal-mcp"
Issues = "https://github.com/GethosTheWalrus/temporal-mcp/issues"
Homepage = "https://github.com/loyaltylion/temporal-mcp"
Repository = "https://github.com/loyaltylion/temporal-mcp"
Upstream = "https://github.com/GethosTheWalrus/temporal-mcp"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Issues = "https://github.com/GethosTheWalrus/temporal-mcp/issues" was dropped from [project.urls]. Given the fork lives at loyaltylion/temporal-mcp, consider re-adding Issues = "https://github.com/loyaltylion/temporal-mcp/issues" so downstream consumers (or a future Slack-found PyPI lookup) have a canonical place to file bugs against the fork rather than against upstream.


[project.scripts]
temporal-mcp-server = "temporal_mcp.__main__:main"
Expand Down
Loading