Skip to content

Commit fea80f5

Browse files
authored
Improve Prompts (#6)
1 parent 3c9ade3 commit fea80f5

2 files changed

Lines changed: 13 additions & 5 deletions

File tree

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,16 @@ To use this server, your application should be connected to [Conductor](https://
66

77
You may want to use this alongside a DBOS prompt ([Python](https://docs.dbos.dev/python/prompting), [TypeScript](https://docs.dbos.dev/typescript/prompting), [Go](https://docs.dbos.dev/golang/prompting), [Java](https://docs.dbos.dev/java/prompting)) so your model has the most up-to-date information on DBOS.
88

9-
## Setup With Claude Code
9+
## Setup
1010

11-
First, install this MCP server:
11+
### Install `uv`
12+
13+
Before using this MCP server, you must install `uv`.
14+
For installation instructions, see the [`uv` installation docs](https://docs.astral.sh/uv/getting-started/installation/).
15+
16+
### Setup with Claude Code
17+
18+
To use this MCP server with Claude Code, first install it:
1219

1320
```bash
1421
claude mcp add dbos-conductor -- uvx dbos-mcp

dbos_mcp/server.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -309,10 +309,11 @@ async def resume_workflow(
309309
application_name: str,
310310
workflow_id: str,
311311
) -> dict[str, Any]:
312-
"""Resume a pending or failed workflow.
312+
"""Resume a workflow.
313313
314-
Resumes execution of a workflow that is in PENDING status or that previously
315-
failed with an error.
314+
Resumes execution of a workflow that is in CANCELLED state.
315+
You can also use this on a workflow in the ENQUEUED state to immediately start it, bypassing its queue.
316+
You cannot resume a workflow in any other state.
316317
317318
Args:
318319
application_name (string, required): Name of the DBOS application

0 commit comments

Comments
 (0)